Start Companies LLC Formation
Server Details
US LLC formation for non-residents: no SSN, plus EIN, banking, ITIN and annual renewals.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool targets a distinct action: registration, payment, package info, status lookup, renewal info, package recommendation, and ITIN application. There is no overlap in purpose, so an agent can clearly distinguish which tool to use.
All tool names follow a consistent verb_noun pattern with underscores (e.g., get_llc_options, create_llc_lead). The verbs are descriptive and the nouns clearly indicate the resource or action, making the naming predictable and easy to understand.
Seven tools cover the essential interactions for an LLC formation service: information, recommendation, creation, payment, order tracking, renewal details, and ITIN application. This is well-scoped and not excessive or insufficient for the domain.
The tool set covers the full lifecycle from discovery (get_llc_options, recommend_llc_package) through lead creation and payment (create_llc_lead, get_checkout_link) to post-creation support (get_order_status, get_renewal_info, start_itin_application). No obvious gaps exist for the intended purpose.
Available Tools
7 toolscreate_llc_leadSubmit an LLC formation requestAInspect
Registers the LLC formation request, emails the user a confirmation with their reference number, and returns the payment link. The user does not need to fill in any web form afterwards: everything was captured here. If they are not ready to pay, hand them off to a person, not to a form. Call this ONLY after the user has explicitly confirmed the package. Start Companies replies by email within 24 hours.
| Name | Required | Description | Default |
|---|---|---|---|
| pais | Yes | Country of residence of the owner. | |
| Yes | Contact email. | ||
| estado | No | US state where the LLC will be formed. | |
| nombre | Yes | Full name of the owner. | |
| socios | Yes | Total number of members, including the owner. | |
| paquete | Yes | The package the user confirmed. | |
| Yes | WhatsApp number including country code. E.g. +54 9 11 5555 5555. | ||
| actividad | Yes | What the business does. E.g. "marketing agency". | |
| nombre_empresa | No | Desired LLC name, without the "LLC" suffix. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are minimal (readOnlyHint false, etc.), so description carries the burden. It discloses that the tool registers the request, sends an email with reference, returns a payment link, and that Start Companies replies within 24 hours. It does not discuss idempotency or error states, but covers core behavior well.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences with no fluff. The first sentence encapsulates the main purpose and outputs. Subsequent sentences add precise usage constraints and post-call expectations. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 9 parameters (7 required) and no output schema, the description covers the key actions, preconditions, and a downstream expectation. It lacks details on return value format or error cases, but for a form submission tool it is substantially complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with individual parameter descriptions, so baseline is 3. The description adds meta-context that 'everything was captured here' (reassuring completeness) and links 'paquete' to package confirmation, but does not explain individual parameters beyond schema. Adequate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool registers an LLC formation request, sends a confirmation email, and returns a payment link. It distinguishes from sibling tools (all read/info tools except start_itin_application) as the creation action, and specifies the prerequisite of explicit package confirmation, differentiating from recommend_llc_package.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states 'Call this ONLY after the user has explicitly confirmed the package.' Also advises handing off to a person if not ready to pay, providing clear when-to-use and when-not-to-use guidance. Though it doesn't name sibling alternatives, the precondition is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_checkout_linkGet the payment link for a packageARead-onlyIdempotentInspect
Returns the Stripe checkout link for one of the three packages. Use it when the user already knows which package they want and wants to pay now, or when they submitted the request earlier and want to pay afterwards. If they already have a reference number, pass it so the payment can be matched to their request.
| Name | Required | Description | Default |
|---|---|---|---|
| paquete | Yes | Which package to get the payment link for. | |
| referencia | No | Reference number from a previous create_llc_lead, e.g. SC-0812-KDJC. Pass it if the user has one. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the agent knows this is a safe, read-only operation. The description adds behavioral context by noting that passing a reference number matches payment to a prior request, which is beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the core purpose, and every sentence adds distinct value: purpose, usage guidance, and reference parameter context. No extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no output schema or nested objects, and schema covers all parameters, the description is mostly complete. Minor gap: it doesn't mention that the user must have an existing lead or request to get a link (implied for the 'referencia' case, but not explicit for initial payment when no reference is passed).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers all parameters with descriptions (100% coverage). The description adds marginal value by explaining that 'referencia' should be a reference from 'create_llc_lead' and describing the enums implicitly, but the schema's enum and property descriptions are sufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as returning a Stripe checkout link for three specific packages, distinguishing it from siblings like 'get_order_status' and 'get_renewal_info'. The verb 'Returns' and resource 'checkout link' are specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use this tool ('user already knows which package they want and wants to pay now' or 'submitted the request earlier and wants to pay afterwards'), and implies when not to use it (e.g., when user needs a recommendation, which would go to 'recommend_llc_package'). It also provides guidance on passing a reference number if available.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_llc_optionsGet LLC packages and pricingARead-onlyIdempotentInspect
Returns the three US LLC formation packages offered by Start Companies, with price, turnaround time and everything each one includes, plus add-on services, annual renewals, tax advisory and how support works. Always call this before discussing prices, renewals, advisory or what is included.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds valuable context: the return contents (three packages, categories) and the prerequisite role. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no wasted words. The first sentence front-loads the return contents, and the second provides a clear usage instruction. Every sentence is necessary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers all relevant aspects: what is returned (packages, pricing, inclusions, add-ons, renewals, advisory, support) and when to use it. No output schema exists, but the description compensates fully. The tool is simple (read-only, zero params), so completeness is high.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters; schema coverage is 100% trivially. The description does not need to explain parameters, and the baseline score of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the three US LLC formation packages with price, turnaround, inclusions, add-ons, renewals, tax advisory, and support. It specifies the source (Start Companies) and distinguishes from siblings like recommend_llc_package by positioning itself as the prerequisite call.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly instructs 'Always call this before discussing prices, renewals, advisory or what is included,' providing clear usage guidance. It does not list alternative tools or when-not-to-use, but the instruction is direct and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_order_statusCheck the status of a requestARead-onlyIdempotentInspect
Looks up a previously submitted LLC formation request and returns its status. Requires BOTH the reference number (format SC-MMDD-XXXX) and the email address used when the request was submitted: the email is a second factor, not a search key. Ask the user for both before calling. Never returns personal data.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The email address used when the request was submitted. Must match the one on file. | ||
| referencia | Yes | Reference number returned by create_llc_lead, e.g. SC-0812-KDJC. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive behavior. The description adds valuable context: 'Never returns personal data' and explains the email's role as a second factor. This goes beyond the structured annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four sentences, each serving a distinct purpose: purpose, input requirements, agent instruction, and output constraint. Front-loaded with the core action. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers what the tool does, required inputs, and a behavioral constraint (no personal data). However, with no output schema, it does not describe the format of the returned status (e.g., possible values, structure). For a simple status check this is adequate but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for both parameters. The description adds extra meaning: the reference number format (SC-MMDD-XXXX) and clarifies that the email is an authentication factor, not a search key. This enriches the schema's baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'looks up a previously submitted LLC formation request and returns its status'. This specific verb+resource combination distinguishes it from sibling tools like create_llc_lead (for creation) and get_llc_options (for options). No ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the agent to ask the user for both the reference number and email before calling, and explains that the email is a second factor, not a search key. It implies usage after a request is submitted. While it does not explicitly mention alternatives or when not to use, the context is clear and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_renewal_infoAnnual LLC renewal pricing and scopeARead-onlyIdempotentInspect
Returns what the annual LLC renewal costs and covers, including the IRS filings that keep the company penalty-free: Form 1120 + 5472 for foreign-owned LLCs, or Form 1065 with its schedules for multimember. Renewals are NOT sold through this server: the client is handed off to a person on the team by WhatsApp, email or the client portal. Use it whenever the user asks about renewing, keeping the LLC active, IRS filings, penalties, the annual report, the state fee, or what happens after the first year.
| Name | Required | Description | Default |
|---|---|---|---|
| estado | No | US state of the existing LLC. Delaware costs more. | |
| multimember | No | true if the LLC has more than one member. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint as false, so no contradiction. The description adds behavioral context beyond annotations by explaining that this tool does not handle purchases and triggers a human handoff, which is critical operational information not captured in annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each serving a distinct purpose: return value, scope details, and usage directive. It is front-loaded with the core purpose. Minor verbosity in the filing forms list but justified for completeness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has a read-only schema and no output schema, the description covers what is returned (cost, coverage, filing types) and the action boundary (no sale). Some detail on when exactly to hand off could be richer, but overall it gives sufficient context for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds value by explaining that 'Delaware costs more' for the 'estado' parameter and defines multimember context, but this contextual pricing is only lightly implied and not fully elaborated.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns renewal costs and covered services, specifies the two main IRS forms by LLC type, and identifies exactly what triggers its use. It distinctly separates itself from sibling tools that handle LLC creation or ordering.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use this tool ('whenever the user asks about renewing, keeping the LLC active, IRS filings, penalties, the annual report...') and also clarifies when not to use it for completing a sale ('Renewals are NOT sold through this server'), directing the agent to hand off via WhatsApp, email, or client portal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommend_llc_packageRecommend the right LLC packageARead-onlyIdempotentInspect
Given the US state, whether the LLC has more than one member, and which services the user needs, returns the appropriate package and explains why. Read-only: it does not create anything.
| Name | Required | Description | Default |
|---|---|---|---|
| estado | No | US state where the LLC will be formed. E.g. "Wyoming", "WY", "Delaware". | |
| multimember | No | true if the LLC has more than one member. | |
| quiere_account_manager | No | true if the user wants a dedicated account manager. | |
| quiere_declaracion_federal | No | true if the user wants the federal tax filing (1120+5472 or 1065) included. | |
| quiere_renovacion_incluida | No | true if the user wants the annual renewal and Annual Report included. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds that the tool returns a package 'and explains why', revealing an explanation behavior not inferred from annotations. The read-only statement reinforces the annotation without contradiction. No additional side effects or constraints are disclosed, but the existing annotation coverage is high.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with inputs and output. The second sentence adds a crucial behavioral caveat (read-only) without redundancy. Every word earns its place; no filler or unnecessary details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite 5 parameters (all optional) and no output schema, the description gives only a vague output description ('returns the appropriate package and explains why'). Missing details: output format, data types, whether partial inputs are valid, error handling, and how this complements sibling tools like get_llc_options. For a tool with this complexity, the description is incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are documented in the schema. The description groups four boolean service parameters as 'which services the user needs', which adds no new meaning beyond the schema. The parameter names are in Spanish, but the schema provides English-like descriptions. The description does not clarify parameter relationships, defaults, or optionality—baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'returns' and the resource 'appropriate package', naming the inputs (state, membership count, services) and output (package with explanation). It is easily distinguishable from sibling tools like create_llc_lead (creation) or get_llc_options (listing options), fulfilling a specific recommendation role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use the tool: when you have state, multi-member flag, and service needs. It adds a clear read-only note. However, it does not explicitly mention when not to use it or suggest alternatives (e.g., get_llc_options for a list of all packages), missing an opportunity to guide agent decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_itin_applicationApply for an ITINARead-onlyIdempotentInspect
Explains what an ITIN is, what it costs, what documents are needed and returns the application form link. An ITIN is the IRS personal tax ID for people without an SSN. Available whether or not the LLC was formed by Start Companies. Use it whenever the user asks about ITIN, tax ID, taxpayer number or filing as a member of a multimember LLC.
| Name | Required | Description | Default |
|---|---|---|---|
| socios | No | How many people need an ITIN. Used to quote the total. Defaults to 1. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explains the tool provides informational content and returns a link, which aligns with the readOnlyHint and idempotentHint annotations. It adds behavioral context beyond annotations by describing what the tool outputs (explanation and link) and the scope of eligibility. No contradictions exist; the description reinforces the safe, read-only nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is relatively concise at 4 sentences, front-loading the core purpose. It could be slightly tighter by merging the ITIN explanation with the usage guidance, but overall every sentence contributes meaning and there is no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 optional parameter, no output schema, read-only), the description is complete. It covers what the tool does, when to use it, and what it returns. The sibling tools list and annotations provide additional context, making this description sufficient for an agent to correctly invoke the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes the sole parameter 'socios' with high coverage. The description adds value by clarifying the parameter's purpose: 'Used to quote the total,' which is not explicitly stated in the schema description. This helps the agent understand how the parameter affects output without duplicating schema details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool explains what an ITIN is, covers cost and document needs, and returns an application form link. It also distinguishes itself by noting it serves users whether or not the LLC was formed by Start Companies, setting it apart from sibling tools like create_llc_lead or recommend_llc_package.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells when to use the tool: 'whenever the user asks about ITIN, tax ID, taxpayer number or filing as a member of a multimember LLC.' This gives clear trigger phrases and constraints, leaving no ambiguity about when the tool is appropriate versus when a sibling might be needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
- First observed
create_llc_lead - First observed
get_checkout_link - First observed
get_llc_options - First observed
get_order_status - First observed
get_renewal_info - First observed
recommend_llc_package - First observed
start_itin_application
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
US small-biz & foreign-LLC filing deadlines: FinCEN BOI, IRS 5472, franchise tax, 1099 (sourced).
A legal home for AI agents: Wyoming $299 or Nevis LLC. Free diagnostic; agents pay in USDC/USDT.
US LLC filing fees, deadlines, and name checks for all 50 states — from official sources.
Verified ITIN lender directory + 290 bilingual guides on US loans, cards & credit without an SSN.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables automated company formation across multiple jurisdictions with REST and MCP interfaces. Supports jurisdiction listing, requirement details, cost estimation, and secure API key management.-
- AlicenseNot gradedqualityDmaintenanceExpert knowledge about forex, IOF tax, US bank accounts, stablecoins, international cards, and B2B payments in Brazil. 15 searchable knowledge categories.871MIT

Corpo MCP Serverofficial
AlicenseNot gradedqualityDmaintenanceEnables AI agents to explore and prototype Wyoming DAO LLC formation workflows in a sandbox environment.1MIT- FlicenseNot gradedqualityBmaintenanceEnables AI agents to autonomously form and govern real legal companies (Wyoming or Nevis LLCs) with agent-specific charters, containing liability and proving authority through MCP tools.1-