Anthropic Billing
Server Details
Anthropic organization usage and cost reporting through an admin API key connected by the user.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/anthropic_billing-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 9 of 9 tools scored. Lowest: 3.2/5.
Most tools have distinct purposes: billing cost/usage/accounts are clearly separate, and connect, authenticate, marketplace, report_bug, show_version, toolkit_info each serve different functions. However, some overlap exists between connect and authenticate (both handle connection setup), and the marketplace tool is overloaded with many sub-functions, but it's still a single tool. Overall, an agent can likely distinguish them without confusion.
Naming is inconsistent. Three tools follow the `anthropic_billing_*` pattern, but the remaining tools use bare verbs (connect, authenticate), nouns (marketplace, toolkit_info), or verb_noun (report_bug, show_version). There's no consistent verb_noun or method_noun convention across the set, and the prefix is only on one group, making it unpredictable.
9 tools is within the typical range, but the server is named 'Anthropic Billing' yet only 3 tools relate to billing. The other 6 tools are generic platform utilities (connect, authenticate, report_bug, show_version, toolkit_info, marketplace) that don't belong to a billing server. The count is fine but the scope is muddled, so it's borderline.
For a billing server, the surface is incomplete: there is cost/usage/accounts listing but no update, delete, or billing settings management. While the marketplace tool is comprehensive for MCP discovery, unrelated to billing. The lack of any invoice/payment or account management operations creates significant gaps for the stated purpose.
Available Tools
9 toolsanthropic_billing_costBRead-onlyIdempotentInspect
Get normalized Anthropic cost report for a date range. Returns compact totals and daily costs.
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | ||
| end_date | No | ||
| group_by | No | ||
| days_back | No | ||
| start_date | No | ||
| bucket_width | No | 1d |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey readOnly, idempotent, and non-destructive behavior. The description adds some return-shape context ('compact totals and daily costs') and normalization, but doesn't disclose aggregation details, date handling, or error behavior. No contradiction with 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 two short sentences with no filler. The main action and return type are front-loaded, making it highly scannable.
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?
With 6 optional parameters, 0% schema description coverage, and no output schema, the description is too thin to fully support correct invocation. It omits parameter semantics, default behaviors, and output details, leaving significant gaps.
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 0%, and the description only hints at 'date range' (covering start_date/end_date/days_back). Parameters like account, group_by, and bucket_width are completely unexplained, leaving the agent without enough information to set them correctly.
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 uses a specific verb ('Get') and resource ('normalized Anthropic cost report') with date-range scope. It clearly states what the tool does, but doesn't explicitly distinguish it from the sibling tool anthropic_billing_usage, so it misses full sibling differentiation.
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 implies when to use the tool—when a normalized cost report over a date range is needed—but provides no explicit exclusions or alternatives. It doesn't mention why to choose this over anthropic_billing_usage or list_accounts.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
anthropic_billing_list_accountsBRead-onlyIdempotentInspect
List Anthropic Billing admin API connections linked to this install.
| Name | Required | Description | Default |
|---|---|---|---|
| account | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the agent knows this is a safe read operation. The description adds the scope ('linked to this install') but does not disclose additional behavioral traits such as whether it returns connection status, whether it requires prior authentication, or any rate limits. With annotations covering the safety profile, a 3 is appropriate.
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 a single, concise sentence that front-loads the purpose. It contains no fluff and is appropriately sized for a simple listing tool.
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 simplicity (one optional param, no output schema), the description is mostly adequate, but the lack of parameter semantics and any mention of return format or filtering behavior leaves gaps. The annotations cover safety, but the description does not fully compensate for the undocumented parameter.
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 has one optional parameter 'account' with no description, and the description does not explain what 'account' means or how it filters results. Schema description coverage is 0%, so the description must compensate, but it does not. The parameter semantics are entirely unclear, leaving the agent to guess whether 'account' is an ID, name, or filter.
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 lists Anthropic Billing admin API connections linked to the install. It uses a specific verb ('List') and resource ('Anthropic Billing admin API connections'), and it distinguishes from siblings like anthropic_billing_cost and anthropic_billing_usage, which are about data retrieval rather than connection listing.
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 implies usage for viewing existing billing connections, but it does not explicitly state when to use this tool versus alternatives. It does not mention prerequisites like authentication or whether it should be used before other billing tools. The context is clear but lacks explicit guidance on when not to use it or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
anthropic_billing_usageARead-onlyIdempotentInspect
Get normalized Anthropic Messages API usage for a date range. The adapter drains report pagination internally.
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | ||
| end_date | No | ||
| group_by | No | ||
| days_back | No | ||
| start_date | No | ||
| bucket_width | No | 1d |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool read-only and idempotent, so safety details are covered. The description adds behavioral context beyond annotations by explaining that the output is normalized and that pagination is automatically drained, which is not visible from annotations or the schema.
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 concise and front-loaded with the primary purpose. The second sentence about pagination is valuable, though slightly jargon-heavy, but it still earns its place by letting the caller know pagination is handled internally.
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?
With six parameters, no output schema, and no per-parameter documentation, the description is too sparse to be fully actionable. It omits the output shape, what 'normalized' means, and how the date parameters relate, so an agent would likely need additional context to call the tool correctly.
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 has six parameters with zero description coverage, and the description does not explain the meaning or interaction of start_date, end_date, days_back, group_by, bucket_width, or account. It only mentions 'date range,' leaving most parameter semantics uninferred.
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 retrieves normalized Anthropic Messages API usage for a date range. It specifies an action (get), a resource (usage), and a distinguishing qualifier (normalized, Messages API), which separates it from the sibling billing cost and account list tools.
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 implies usage is appropriate for date-bounded Messages API usage queries, but it gives no explicit guidance on when to choose this tool over the similar anthropic_billing_cost or anthropic_billing_list_accounts siblings. There are no stated exclusions or alternative recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
authenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already include idempotentHint=true and destructiveHint=false. The description adds context by explaining the permanent vs session-only login behaviors and the need for browser login. It does not mention error handling or side effects like overwriting previous tokens, but the core behavior is disclosed.
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 packed with essential information and each sentence contributes value. It is somewhat lengthy but well-structured with clear alternatives; 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?
Given the tool's purpose and lack of output schema, the description covers the main usage modes and config options. It could mention the actual return value (e.g., the link or success message) when a token is passed, but it is sufficiently complete for most agents.
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 has 0% description coverage, but the description fully explains the 'token' parameter as a JWT for session login, and clarifies that calling with no args produces a link. This adds meaningful semantics beyond the bare schema.
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 is for authentication, explaining the browser login flow and token usage. It distinguishes from siblings (billing, marketplace, etc.) by focusing on IDE agent authentication.
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?
Provides explicit usage instructions: best to add token to server config for permanent connection, or pass token for session-only login, or call with no args to get the link. It doesn't explicitly say when not to use it, but the context is clear and alternatives are not needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description does not need to restate safety. It adds value by disclosing the exact return structure (authenticated, pending, connect_url) and the conditional behavior. This goes beyond annotations and provides useful behavioral context for a read-only, idempotent tool.
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 two sentences, front-loaded with the main purpose, and every word serves a function. It introduces the two possible states without redundancy. Excellent conciseness and structure.
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?
For a zero-parameter, read-only tool with strong annotations, the description fully explains the return values (authenticated, pending, connect_url) and the two scenarios. There is no output schema, so the description carries the burden of return-format clarity, and it meets that directly. Given the low complexity, this is 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?
The tool has 0 parameters, so the baseline for parameter semantics is 4. The description adds no parameter-specific meaning because there are none, but it does indirectly clarify the output semantics, which is sufficient. No deficiency here.
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 uses a specific verb ('Returns') and resource ('connection status and URLs'), and it distinguishes from sibling tools like 'authenticate' (which performs auth) by clarifying it reports status rather than establishing a connection. The conditional outcomes (connected vs missing credentials) add specificity.
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 clearly implies when to use this tool: to check connection status and obtain URLs, particularly when credentials are missing. It explains the two states, which gives context, but it does not explicitly name alternatives or exclusions (e.g., 'use authenticate to actually connect'). That would have earned a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses behavior beyond annotations: invoke returns connect/checkout links on credential/payment gaps, writes require workspace owner/admin, and invoke runs one-off without adding to toolkit. This adds context not present in the annotations (readOnlyHint=false, etc.), with no contradiction.
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 a single dense paragraph without structural breaks. While every sentence adds information, the lack of formatting reduces scannability. It is front-loaded with the core purpose but quickly becomes a wall of text.
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?
For a tool with 23 parameters and 14 actions, the description covers the main workflow, auth/payment scenarios, and the prompt library. It omits some parameter-specific details but overall provides a comprehensive understanding of how to use the marketplace, especially given the sparse annotations and no output schema.
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 0%, so the description must compensate. It explains the key parameters like action (with its enumerated values), mcp_id, tool_id, arguments, and prompt-related parameters. However, it does not detail all 23 parameters (e.g., immediate, tier_slug, conversation) or map each parameter to its relevant action, leaving some ambiguity.
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's role: 'the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It explains the core flow (search→describe→invoke) and distinguishes itself from sibling tools like billing, auth, and reporting by covering the full catalog and runtime capabilities.
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 provides explicit guidance: 'prefer invoke for a single/occasional use' vs 'use install only to make an MCP PERMANENT', and explains when to use list_tools, subscribe/cancel, report_bug, and request_mcp. It also clarifies when to use the prompt library functions (search_prompts, get_prompt, publish_prompt).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugAIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already state readOnlyHint=false and idempotentHint=true, and the description does not contradict them. The description adds no deeper behavioral context such as what happens after submission, rate limits, or authorization needs. It gives only a telegraphed side-effect report-like action, which is consistent but not more informative.
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 one clean sentence, front-loads the purpose, and includes the crucial reproduction tip. There is no filler or repetition, so every word 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?
Although annotations are provided and the tool is simple, the description omits explaining the 'context' parameter and fails to describe what response the agent can expect. The only example of 'conversation' as a 'array' overstrings conflicts with the schema type. Combined with a low schema_description_coverage, the current description leaves gaps 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 0%, so the description must carry parameter meanings. It only mentions the 'conversation' variable, instructing to 'include the conversation array', but does not explain that it is a string field (likely JSON) nor mentions the 'context' parameter at all. This leaves the agent without full guidance for all three input fields.
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 opens with 'Report a bug, missing feature, or send feedback', which clearly states the tool's action and resource using a specific verb and scope. It is fully distinct from sibling tools like billing, marketplace, or authentication tools, so no confusion is possible.
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 clearly suggests when to use this tool: for bug reports, missing features, or feedback. It does not explicitly mention alternatives or exclusions, but the sibling tools are semantically so different that the context is sufficiently clear without them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description does not contradict annotations (readOnlyHint=true, idempotentHint=true, destructiveHint=false). Annotations already cover the safety profile, and the description adds no extra behavioral context beyond the purpose. Since the tool is trivial and annotations are sufficient, a 3 is appropriate.
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 a single, concise sentence that front-loads the action and resource. 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?
Given the tool has no parameters, no output schema, and simple functionality, the description fully explains what it does. Annotations handle safety. Nothing is missing for an agent to correctly select and invoke this 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 tool has 0 parameters, and schema description coverage is 100% (empty). Per rubric, baseline for 0 params is 4. The description does not need to elaborate on parameters, and it doesn't.
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 shows current MCP platform and adapter versions, using a specific verb and resource. It distinguishes itself from sibling tools, none of which seem to focus on version information.
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 implies usage (to check versions) but does not explicitly state when to use it versus alternatives or when not to use it. Given the simplicity of the tool and clear differentiation from siblings, implied usage is adequate but not strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the agent knows this is a safe, non-mutating read operation. The description adds useful behavioral context beyond annotations by enumerating the exact categories of state returned (installed MCPs, connection status, accounts, tool counts), which helps set expectations without unnecessary detail.
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 entire description is a single, well-structured sentence that front-loads the purpose ('Returns the current toolkit state') and uses a colon-plus-list format to efficiently enumerate the included information. Every phrase adds value and there is no redundancy or filler.
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?
For a zero-parameter, no-output-schema tool, the description fully answers what the tool does and what information it returns. It specifies the toolkit's current state, installed MCPs, connection statuses, connected accounts, and catalog tool counts—sufficient for an agent to decide when to call it and what outcome to expect.
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 tool has zero parameters, making parameter semantics largely irrelevant. The description adds no parameter details, but none are needed because the input schema is empty. Baseline 4 is appropriate for a zero-parameter tool where all behavior is fully explained in the description.
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 uses a specific verb ('Returns') and clearly identifies the resource ('current toolkit state'), listing concrete contents: installed MCPs, connection status, connected accounts, and catalog tool counts. This distinguishes it from siblings like show_version or marketplace by focusing on aggregate state rather than version details.
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 implies when to use it: whenever an agent needs the overall toolkit state, connection status, or available capabilities. It does not explicitly compare to alternatives or state exclusions, but the zero-parameter scope and self-explanatory purpose provide clear usage context without needing sibling comparisons.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- AlicenseAqualityDmaintenanceFull coverage of Anthropic Admin API to manage organization, workspaces, members, API keys, usage, and costs via natural language from any MCP client.21MIT
- FlicenseNot gradedqualityCmaintenanceDemonstrates agent-native platform onboarding with human-in-the-loop API key provisioning, plus live usage and rate-limit queries via Anthropic Admin APIs.
- FlicenseNot gradedqualityNot gradedmaintenanceEnables retrieval of Anthropic billing and cost report data, with time-based filtering, grouping, and daily cost summaries.2
- AlicenseAqualityAmaintenanceA read-only MCP server for querying AI provider administration APIs, providing normalized usage, cost, and dashboard data for OpenAI and Anthropic.411MIT