allmcps-server
This server is a bridge to the AllMCPs.com directory, enabling you to interact with MCP servers directly from an MCP client. You can:
Search & browse: Search servers by keyword or category, and list all categories with their server counts.
Get install configurations: Retrieve the exact
claude_desktop_config.jsonsetup snippet and documentation for any server.Boost & sponsor: View pricing tiers (e.g., featured, category sponsor, premium monthly, priority review), initiate a sponsorship order via Stripe checkout, and check boost/verification status.
Submit new servers: Add new MCP server repositories to the directory for indexing.
Verify ownership: Claim and verify a listing using GitHub README badges, website badges, or DNS TXT records.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@allmcps-serverSubmit my new MCP server https://github.com/foo/bar named Foo with test@example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
The official local MCP server and CLI for AllMCPs.com — search, browse, get install configs for, and submit Model Context Protocol (MCP) servers directly from Claude, Cursor, any MCP-compatible agent, or a plain shell script.
This package is a thin stdio bridge to the AllMCPs remote MCP endpoint. Tool behavior lives server-side, so this package always exposes the current live tool set with no need to upgrade the package when a tool is added or changed.
v2.0.0 replaces the single
submit_mcptool with the full tool set below, including a renamedsubmit_mcp_server(previouslysubmit_mcp). If you depend on the old tool name, pinallmcps-server@1.
Install
Requires Node.js 18+. Add to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"allmcps": {
"command": "npx",
"args": ["-y", "allmcps-server"]
}
}
}Related MCP server: Glama MCP Server Search
CLI mode
Run with a subcommand instead of a bare npx allmcps-server and it becomes a plain scriptable CLI
over the public REST API — no MCP client needed:
npx allmcps-server search postgres # search the directory
npx allmcps-server categories # list every category
npx allmcps-server server <id> # full detail for one listing
npx allmcps-server help # usageEach prints JSON to stdout, so it composes with jq and other Unix tools. With no subcommand it
runs as the MCP stdio server described below (the default npx allmcps-server behavior).
Tools
Tool | Required arguments | Description |
| — | Search the directory by keyword and/or category. |
|
| Get the install config snippet and docs for a server by ID. |
| — | List all categories with server counts. |
| — | Get pricing and features for boosting/featuring a listing. |
|
| Start a sponsorship/boost order — returns a Stripe checkout URL and x402 invoice. |
|
| Check boost and verified-badge status for a listing. |
|
| Submit a new MCP server to the directory. |
|
| Verify ownership and claim a listing via GitHub README, site badge, or DNS. |
submit_mcp_server submissions land in the pending review queue at allmcps.com.
The response includes a claim_url and a ready-to-paste badge_markdown snippet — adding that badge to
your repo's README verifies the listing instantly instead of waiting on manual review.
Every tool's full input schema (including optional arguments like category, description, sku, and
method) is available at runtime via the standard MCP tools/list call, or by inspecting
/api/mcp directly.
Configuration
Environment variable | Default | Purpose |
|
| Override the remote endpoint this package bridges to. |
Related
Directory API docs: https://allmcps.com/docs/api
Remote MCP server (same tools, called directly over HTTP): https://allmcps.com/api/mcp
Also listed on the official MCP Registry as
io.github.Jackalope-Dev/allmcps-server, Glama, and the LobeHub Marketplace
License
MIT © Jackalope Digital — see LICENSE.
Available Tools
9 toolsboost_mcp_serverA
Initiate a sponsorship / boost order for an MCP server by ID, returning a Stripe checkout session URL and x402 invoice.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The server ID to boost (e.g. "github-mcp") | |
| sku | No | Sponsorship tier (default: featured_7d) | |
| No | Optional contact/billing email |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It does mention the output (checkout URL and invoice), which is useful, but it does not disclose side effects such as whether the order is immediately charged, whether it modifies the server's listing, or any prerequisite state. This is a minor gap, making it adequate but not comprehensive.
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, well-structured sentence that front-loads the action and resource, then specifies the return values. It contains zero redundant words and is easy to scan.
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 and only three parameters (fully documented in the schema), the description provides enough to understand the core behavior and return type. However, it lacks details about the ordering flow and potential failure modes, which would be useful for a transaction-like operation. Still, for a simple initiate-order tool, it is largely 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 description coverage is 100% (all three parameters have descriptions). The description adds no additional meaning beyond restating 'by ID', which is already in the schema. Per the guidelines, with full schema coverage, a baseline of 3 is warranted.
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 'Initiate' and clearly states the resource ('sponsorship / boost order for an MCP server by ID') and the return value ('Stripe checkout session URL and x402 invoice'). This distinguishes it from sibling tools like get_boost_pricing and get_boost_status, which are query-only.
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 the tool: to start a boost order for a given server ID. However, it does not explicitly mention alternatives or exclusions (e.g., 'for pricing, see get_boost_pricing'). Since the context is unambiguous, a 4 is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_boost_pricingA
Get pricing and features for boosting / featuring an MCP server on AllMCPs.com.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the tool 'gets' pricing/features and does not disclose whether it is a safe read-only operation, requires authentication, or has any side effects. It also does not hint at the response format or potential caching/rate limits, leaving the agent without critical safety context.
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, well-structured sentence that front-loads the action ('Get') and subject ('pricing and features'), with no redundant words or unnecessary detail. It is concise and immediately understandable.
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 simple no-parameter tool, the description provides the core purpose but lacks details about the return value or any caveats. Since there is no output schema or annotations, the agent does not know whether the response is a list of plans, a single object, or which specific fields are included. This leaves some ambiguity but is acceptable for a lightweight getter.
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, so the description does not need to add parameter semantics. The input schema already encodes an empty object, and the description reinforces the tool's purpose without needing to explain any arguments. The baseline for zero parameters is 4.
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 that the tool retrieves pricing and features for boosting/featuring an MCP server, using a specific verb ('Get') and resource ('pricing and features'). It is distinguishable from sibling tools like boost_mcp_server (which performs the action) and get_boost_status (which likely returns status).
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 the tool is used to fetch pricing information, but it does not explicitly state when to use it versus alternatives, nor does it mention any prerequisites or exclusions. There is no guidance on when not to use it, but the purpose is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_boost_statusA
Check current boost status, verified badge level, and sponsorship expiration for an MCP server by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The server ID to check |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It indicates a read-only operation via 'check,' but it does not explicitly state there are no side effects or disclose the response format or behavior for invalid IDs. The behavior is adequately implied but not thoroughly detailed.
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 main action ('Check') and includes all relevant details (what is checked, for which server). It is efficient with 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?
For a simple status check tool with one parameter and no output schema, the description is complete. It specifies the input (server ID) and explicitly lists the output components (boost status, verified badge level, sponsorship expiration), leaving no major 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?
The input schema already covers the single parameter 'id' with a clear description, and the tool description repeats the 'by ID' context. No additional meaning is added beyond the schema, so a baseline score 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 tool checks boost status, verified badge level, and sponsorship expiration for a specific MCP server by ID. This uses a specific verb ('check') and resource, and is distinct from sibling tools like boost_mcp_server (action) and get_boost_pricing (pricing).
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 the tool is used to check current boost status, verified badge level, and sponsorship expiration. However, it does not explicitly mention when to use it versus alternatives, such as when checking before boosting or comparing with get_boost_pricing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_mcp_install_configA
Get the exact claude_desktop_config.json setup snippet and documentation for a specific MCP server by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The server ID (e.g. "github-mcp", "sqlite-mcp") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It explicitly states it 'gets' (read operation) and describes the exact content returned. However, it does not disclose potential error conditions, permissions, or rate limits. For a simple read operation, the description is honest but not exhaustive.
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 directly states the tool's action and output, with no filler or unnecessary words. It is front-loaded and easy to parse.
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 tool is simple (one parameter, no output schema), and the description adequately explains that it returns a config snippet and documentation. It could add details about return format or error behavior, but this is not essential given the low complexity. The description is complete enough for typical use.
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%, with the 'id' parameter well-described by its own schema entry. The description's 'by ID' adds no new meaning beyond the schema, so it correctly falls at the baseline of 3.
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 function: retrieving the exact claude_desktop_config.json setup snippet and documentation for a given MCP server ID. It uses a specific verb ('get') and resource ('setup snippet and documentation'), and distinguishes itself from sibling tools like search_mcp_servers or get_boost_status.
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 usage context is implied: when the agent needs the installation configuration for a specific MCP server with a known ID. It does not explicitly mention alternatives or exclusions, so it falls short of a 4 or 5, but the purpose itself implies when to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_mcp_categoriesA
List all categories available in the AllMCPs directory along with server counts.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It implies a read-only list operation and states the output includes server counts, but it does not explicitly confirm safety, mention rate limits, or describe the response structure in detail. This is acceptable for a simple listing tool but not fully transparent.
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, focused sentence that front-loads the key information: what is listed (categories) and what is included (server counts). There is no fluff or repetition.
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 no parameters and no output schema, the description covers the essential facts: it lists categories with server counts. It could be even more complete by stating the return format or pagination behavior, but those are not critical for such a simple 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 zero parameters, so the description needs to explain nothing about them. The baseline score for 0-parameter tools is 4, and the description appropriately does not waste space on parameters. It focuses on the output content instead.
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 function with a specific verb ('List') and resource ('categories'), and adds useful context ('AllMCPs directory', 'server counts'). It distinguishes itself from siblings like search_mcp_servers by focusing on categories rather than servers themselves.
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 no guidance on when to use this tool versus alternatives, no prerequisites, and no caveats. It simply describes what it does without contextualizing its use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommend_mcp_stackB
Recommend a curated multi-tool MCP server stack for a specific developer role or workflow (e.g. "fullstack", "data science", "devops").
| Name | Required | Description | Default |
|---|---|---|---|
| role | Yes | Developer role or task (e.g. "fullstack", "data", "devops", "browser") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It does not mention read-only vs. write behavior, whether it involves external calls, or execution time expectations. It only states the high-level outcome without any side effects or prerequisites.
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, focused sentence that clearly states the purpose and provides examples. It is front-loaded with the core action and avoids fluff, making it easy to scan quickly.
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 recommendation tool with one parameter and no output schema, the description provides a basic level of completeness. However, it lacks details on the structure of the recommended stack (e.g., what servers are included, how many, or how recommendations are generated). Given the context signals, it is minimally adequate but could be enriched.
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 only one parameter 'role' and a description of example values. The description reinforces that the role should be a developer role or workflow and provides examples, adding value beyond the schema. However, it doesn't elaborate on allowed values or expected format beyond examples.
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 purpose with a specific verb 'Recommend' and resource 'curated multi-tool MCP server stack'. It specifies the target input (developer role or workflow) and provides examples. It distinguishes from siblings like search_mcp_servers by focusing on curated recommendations rather than search results.
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 context ('for a specific developer role or workflow') but does not explicitly state when to use this over alternatives like search_mcp_servers or list_mcp_categories. It lacks exclusions or guidance on when not to use it. The role examples provide some clarity on applicable inputs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_mcp_serversA
Search the AllMCPs directory for Model Context Protocol (MCP) servers by keyword or category.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max number of results to return (default: 10) | |
| query | No | Search term (e.g., "github", "postgres", "slack", "database") | |
| category | No | Optional category name to filter by |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only restates the search functionality without disclosing whether the operation is read-only, what the result format looks like, or any side effects. This is a significant gap for a search tool that presumably returns data.
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 sentence with no filler words. It is front-loaded with the action and resource, making it easy to parse.
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 simple search tool with optional params and no output schema, the description provides the minimum viable context. However, it lacks details about result format, default behavior, or how it differentiates from list_mcp_categories. The absence of annotations increases the need for such context, making this adequate but not 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 schema descriptions cover 100% of parameters, so the baseline is 3. The description adds no new meaning beyond echoing 'keyword or category', which is already in the schema. The limit parameter is not mentioned in the description, so no additional value is provided.
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 function: 'Search the AllMCPs directory for Model Context Protocol (MCP) servers by keyword or category.' This uses a specific verb ('Search') and resource ('AllMCPs directory for MCP servers'), and distinguishes from siblings like list_mcp_categories by focusing on keyword/category search.
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 clear context for when to use the tool (searching by keyword or category), but it does not explicitly mention alternatives or exclusions. Sibling tools like list_mcp_categories are not referenced, so the guidance is clear but incomplete.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_mcp_serverA
Programmatically submit a new MCP server repository to AllMCPs.com for indexing and review. Supports the same optional enrichment fields as the human submission form — fill in whichever you can confidently determine from the repository (README, package.json, code) to produce a fully flushed-out listing. Omit anything you are not confident about rather than guessing; all enrichment fields are optional and unrecognized enum values are simply dropped, not rejected.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | GitHub repository or website URL | |
| name | Yes | Server name (e.g., "PostgreSQL MCP") | |
| tags | No | Up to 5 short lowercase keywords describing the server (e.g. ["postgres", "sql", "database"]). | |
| Yes | Contact email for listing verification & status updates | ||
| license | No | SPDX license identifier or name, e.g. "MIT", "Apache-2.0". | |
| authType | No | What authentication the server requires to connect. | |
| category | No | Best-matching category from the AllMCPs directory. Must be one of the exact enum values. | |
| supportUrl | No | Optional issues/discussions/docs URL for getting help. | |
| websiteUrl | No | Optional official website URL | |
| description | No | Short summary of what this MCP server does | |
| pricingModel | No | How this server is priced/licensed to use. | |
| pricingNotes | No | Short free-text pricing detail, e.g. "Free tier up to 1k requests/mo". | |
| compatibleClients | No | MCP clients this server is confirmed to work with, from the fixed client slug list. | |
| maintenanceStatus | No | Repository maintenance status, inferred from recent commit/release activity. | |
| suggestedInstallArgs | No | Args for the install command, e.g. ["-y", "@scope/mcp-server-name"]. | |
| suggestedInstallCommand | No | Command to run the server, e.g. "npx". |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It discloses that submissions are sent for 'indexing and review,' that enrichment fields are optional, and importantly that 'unrecognized enum values are simply dropped, not rejected.' It does not mention duplicate handling, verification flow, or side effects, but the provided details are meaningful and non-obvious.
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 with no filler. The first sentence states purpose, the second explains enrichment strategy with concrete source examples, and the third provides the safety policy for uncertain values. 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 a 16-parameter tool with no output schema and no annotations, the description provides a strong conceptual model of the submission action and the tolerance for incomplete or unrecognized data. It does not describe the post-submission response, but the combination of schema descriptions and the confidence-policy guidance makes the tool adequately usable.
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%, so baseline is 3. The description adds value beyond schema by explaining that all enrichment fields are optional and that unrecognized enum values are dropped rather than causing errors. This directly affects how the agent should populate enum parameters like category and authType.
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 a specific verb and resource: 'Programmatically submit a new MCP server repository to AllMCPs.com for indexing and review.' This clearly distinguishes it from sibling tools like search_mcp_servers or verify_mcp_claim, which involve searching or verification rather than submission.
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 gives clear context for how to use the tool: fill in enrichment fields only when confidently determined from the repository, and omit uncertain values. It does not explicitly contrast with sibling tools or state when not to use it, but the enrichment guidance is actionable and practical.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_mcp_claimA
Verify ownership and claim an MCP server listing by checking GitHub README badge, website badge, or DNS TXT record.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The server ID to claim & verify (e.g. "github-mcp") | |
| method | No | Verification method (default: github) | |
| websiteUrl | No | Optional website URL for website/dns verification |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It mentions the verification methods, but it does not disclose whether claiming is irreversible, requires authentication, or has any side effects on the listing. The 'claim' action likely mutates state, but the description leaves this ambiguous.
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, front-loaded with the primary action, and contains no fluff or redundancy. Every word contributes to the tool's purpose.
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 tool has no output schema, and the description does not explain what the result looks like (e.g., success/failure, proof of ownership). Given the moderate complexity and the absence of behavioral details, the description is minimally adequate but lacks important context about outcomes and side effects.
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%, so the baseline is 3. The description adds meaningful context by mapping the enums (github, website_badge, dns) to the actual verification steps (checking GitHub README badge, website badge, DNS TXT record), which the schema's short descriptions do not provide. This enriches the parameter understanding beyond basic types.
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 action ('Verify ownership and claim') and resource ('MCP server listing'), and specifies the verification methods (GitHub README badge, website badge, DNS TXT record). This distinguishes it from sibling tools like search, submit, or boost, which have different actions.
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 the tool is used to verify and claim a listing after it has been submitted, but it does not explicitly state when to use it versus alternatives, nor does it mention any prerequisites or exclusion cases. The context is clear but not fully developed.
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.
2 tool updates
v2.0.3- Added
recommend_mcp_stack - Changed
submit_mcp_server12 fields changed- added
Input schema / properties / authTypeAdded value: +{ + "description": "What authentication the server requires to connect.", + "enum": [ + "none", + "api_key", + "oauth", + "other" + ], + "type": "string" +} - changed
Input schema / properties / category / descriptionPrevious value: -"Category (e.g., \"Databases\", \"Developer Tools\")"New value: +"Best-matching category from the AllMCPs directory. Must be one of the exact enum values." - added
Input schema / properties / category / enumAdded value: +[ + "☁️ Cloud Platforms", + "⚖️ Legal", + "🌎 Translation Services", + "🌐 Social Media", + "🌳 Environment & Nature", + "🎓 Education", + "🎙️ Podcasts", + "🎙️ Speech-to-Text", + "🎥 Multimedia Process", + "🎧 Support & Service Management", + "🎧 Text-to-Speech", + "🎨 Art & Culture", + "🎮 Gaming", + "🎯 Marketing", + "🏃 Sports", + "🏠 Home Automation", + "🏠 Real Estate", + "🏢 Workplace & Productivity", + "🏭 Industrial & IoT", + "👤 Customer Data Platforms", + "👨💻 Code Execution", + "💬 Communication", + "💰 Finance & Fintech", + "💻 Developer Tools", + "📂 Browser Automation", + "📂 File Systems", + "📊 Data Platforms", + "📊 Data Visualization", + "📊 Monitoring", + "📋 Product Management", + "📐 Architecture & Design", + "📟 Embedded System", + "🔄 Version Control", + "🔎 end to end RAG platforms", + "🔎 Search & Data Extraction", + "🔑 Cryptography", + "🔒 Delivery", + "🔒 Security", + "🔗 Aggregators", + "🔬 Research", + "🔮 Spirituality & Esoterica", + "🖥️ Command Line", + "🖥️ OS Automation", + "🗄️ Databases", + "🗣️ Conversational AI", + "🗺️ Location Services", + "🤖 Coding Agents", + "🤝 Agreements & Coordination", + "🧠 Knowledge & Memory", + "🧬 Biology & Bioinformatics", + "🧮 Data Science Tools", + "🚀 Aerospace & Astrodynamics", + "🚆 Travel & Transportation", + "🛒 E-Commerce", + "🛠️ Other Tools and Integrations", + "Biology, Medicine and Bioinformatics" +] - added
Input schema / properties / compatibleClientsAdded value: +{ + "description": "MCP clients this server is confirmed to work with, from the fixed client slug list.", + "items": { + "enum": [ + "claude-desktop", + "cursor", + "cline", + "windsurf", + "claude-code", + "vs-code" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / licenseAdded value: +{ + "description": "SPDX license identifier or name, e.g. \"MIT\", \"Apache-2.0\".", + "type": "string" +} - added
Input schema / properties / maintenanceStatusAdded value: +{ + "description": "Repository maintenance status, inferred from recent commit/release activity.", + "enum": [ + "active", + "stable", + "experimental", + "archived" + ], + "type": "string" +} - added
Input schema / properties / pricingModelAdded value: +{ + "description": "How this server is priced/licensed to use.", + "enum": [ + "free", + "freemium", + "paid", + "byok" + ], + "type": "string" +} - added
Input schema / properties / pricingNotesAdded value: +{ + "description": "Short free-text pricing detail, e.g. \"Free tier up to 1k requests/mo\".", + "type": "string" +} - added
Input schema / properties / suggestedInstallArgsAdded value: +{ + "description": "Args for the install command, e.g. [\"-y\", \"@scope/mcp-server-name\"].", + "items": { + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / suggestedInstallCommandAdded value: +{ + "description": "Command to run the server, e.g. \"npx\".", + "type": "string" +} - added
Input schema / properties / supportUrlAdded value: +{ + "description": "Optional issues/discussions/docs URL for getting help.", + "type": "string" +} - added
Input schema / properties / tagsAdded value: +{ + "description": "Up to 5 short lowercase keywords describing the server (e.g. [\"postgres\", \"sql\", \"database\"]).", + "items": { + "type": "string" + }, + "maxItems": 5, + "type": "array" +}
9 tool updates
v2.0.1- Added
boost_mcp_server - Added
get_boost_pricing - Added
get_boost_status - Added
get_mcp_install_config - Added
list_mcp_categories - Added
search_mcp_servers - Removed
submit_mcp - Added
submit_mcp_server - Added
verify_mcp_claim
1 tool update
v1.0.1- First observed
submit_mcp
TDQS
Each tool targets a distinct resource and action: search, get config, list categories, get pricing, initiate boost, check boost status, submit server, verify claim. No two tools have overlapping purposes that would confuse an agent.
All tool names follow a consistent verb_noun pattern (search_mcp_servers, get_mcp_install_config, list_mcp_categories, get_boost_pricing, boost_mcp_server, get_boost_status, submit_mcp_server, verify_mcp_claim). The naming is uniform and predictable.
8 tools is well within the ideal range for a directory/management server. Each tool provides a distinct function, and the count is neither sparse nor bloated for the domain.
The tool surface covers the main workflows: searching/listing, retrieving install configs, submitting servers, verifying claims, and managing boosts. A minor gap is the absence of a general 'get server details' tool, but this is not a critical dead-end since search and install config cover most needs.
Maintenance
Related MCP Connectors
Publish and discover MCP servers via the official MCP Registry. Powered by HAPI MCP server.
The official e18e MCP server keeping your agent in check from installing bloated dependencies.
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
Related MCP Servers
- MIT
- AlicenseAqualityDmaintenanceAn MCP server for searching and exploring MCP servers from the Glama MCP directory. This server provides tools to search for MCP servers, get detailed information about specific servers, and explore available server attributes using the Glama MCP API.33MIT
- AlicenseAqualityAmaintenanceOfficial MCP server for Rendobar. Lets AI agents run serverless media processing and upload local files.71801MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for BrewPage, a free no-signup hosting service. Lets AI agents publish HTML, Markdown, JSON, files, or a full multi-file static site and get a public URL instantly via a REST API.2Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jackalope-Dev/allmcps-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server