Skip to main content
Glama

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_mcp tool with the full tool set below, including a renamed submit_mcp_server (previously submit_mcp). If you depend on the old tool name, pin allmcps-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                 # usage

Each 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_mcp_servers

Search the directory by keyword and/or category.

get_mcp_install_config

id

Get the install config snippet and docs for a server by ID.

list_mcp_categories

List all categories with server counts.

get_boost_pricing

Get pricing and features for boosting/featuring a listing.

boost_mcp_server

id

Start a sponsorship/boost order — returns a Stripe checkout URL and x402 invoice.

get_boost_status

id

Check boost and verified-badge status for a listing.

submit_mcp_server

name, url, email

Submit a new MCP server to the directory.

verify_mcp_claim

id

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

ALLMCPS_MCP_URL

https://allmcps.com/api/mcp

Override the remote endpoint this package bridges to.

License

MIT © Jackalope Digital — see LICENSE.

Available Tools

9 tools
boost_mcp_serverA

Initiate a sponsorship / boost order for an MCP server by ID, returning a Stripe checkout session URL and x402 invoice.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe server ID to boost (e.g. "github-mcp")
skuNoSponsorship tier (default: featured_7d)
emailNoOptional contact/billing email

TDQS

A4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe server ID to check

TDQS

A3.9/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe server ID (e.g. "github-mcp", "sqlite-mcp")

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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").

ParametersJSON Schema
NameRequiredDescriptionDefault
roleYesDeveloper role or task (e.g. "fullstack", "data", "devops", "browser")

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax number of results to return (default: 10)
queryNoSearch term (e.g., "github", "postgres", "slack", "database")
categoryNoOptional category name to filter by

TDQS

A3.7/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesGitHub repository or website URL
nameYesServer name (e.g., "PostgreSQL MCP")
tagsNoUp to 5 short lowercase keywords describing the server (e.g. ["postgres", "sql", "database"]).
emailYesContact email for listing verification & status updates
licenseNoSPDX license identifier or name, e.g. "MIT", "Apache-2.0".
authTypeNoWhat authentication the server requires to connect.
categoryNoBest-matching category from the AllMCPs directory. Must be one of the exact enum values.
supportUrlNoOptional issues/discussions/docs URL for getting help.
websiteUrlNoOptional official website URL
descriptionNoShort summary of what this MCP server does
pricingModelNoHow this server is priced/licensed to use.
pricingNotesNoShort free-text pricing detail, e.g. "Free tier up to 1k requests/mo".
compatibleClientsNoMCP clients this server is confirmed to work with, from the fixed client slug list.
maintenanceStatusNoRepository maintenance status, inferred from recent commit/release activity.
suggestedInstallArgsNoArgs for the install command, e.g. ["-y", "@scope/mcp-server-name"].
suggestedInstallCommandNoCommand to run the server, e.g. "npx".

TDQS

A4.4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe server ID to claim & verify (e.g. "github-mcp")
methodNoVerification method (default: github)
websiteUrlNoOptional website URL for website/dns verification

TDQS

A3.7/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

  1. 2 tool updatesv2.0.3
    • Addedrecommend_mcp_stack
    • Changedsubmit_mcp_server12 fields changed
      • addedInput schema / properties / authType
        Added value: +{
        +  "description": "What authentication the server requires to connect.",
        +  "enum": [
        +    "none",
        +    "api_key",
        +    "oauth",
        +    "other"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / category / description
        Previous value: -"Category (e.g., \"Databases\", \"Developer Tools\")"New value: +"Best-matching category from the AllMCPs directory. Must be one of the exact enum values."
      • addedInput schema / properties / category / enum
        Added 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"
        +]
      • addedInput schema / properties / compatibleClients
        Added 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"
        +}
      • addedInput schema / properties / license
        Added value: +{
        +  "description": "SPDX license identifier or name, e.g. \"MIT\", \"Apache-2.0\".",
        +  "type": "string"
        +}
      • addedInput schema / properties / maintenanceStatus
        Added value: +{
        +  "description": "Repository maintenance status, inferred from recent commit/release activity.",
        +  "enum": [
        +    "active",
        +    "stable",
        +    "experimental",
        +    "archived"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / pricingModel
        Added value: +{
        +  "description": "How this server is priced/licensed to use.",
        +  "enum": [
        +    "free",
        +    "freemium",
        +    "paid",
        +    "byok"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / pricingNotes
        Added value: +{
        +  "description": "Short free-text pricing detail, e.g. \"Free tier up to 1k requests/mo\".",
        +  "type": "string"
        +}
      • addedInput schema / properties / suggestedInstallArgs
        Added value: +{
        +  "description": "Args for the install command, e.g. [\"-y\", \"@scope/mcp-server-name\"].",
        +  "items": {
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • addedInput schema / properties / suggestedInstallCommand
        Added value: +{
        +  "description": "Command to run the server, e.g. \"npx\".",
        +  "type": "string"
        +}
      • addedInput schema / properties / supportUrl
        Added value: +{
        +  "description": "Optional issues/discussions/docs URL for getting help.",
        +  "type": "string"
        +}
      • addedInput schema / properties / tags
        Added value: +{
        +  "description": "Up to 5 short lowercase keywords describing the server (e.g. [\"postgres\", \"sql\", \"database\"]).",
        +  "items": {
        +    "type": "string"
        +  },
        +  "maxItems": 5,
        +  "type": "array"
        +}
  2. 9 tool updatesv2.0.1
    • Addedboost_mcp_server
    • Addedget_boost_pricing
    • Addedget_boost_status
    • Addedget_mcp_install_config
    • Addedlist_mcp_categories
    • Addedsearch_mcp_servers
    • Removedsubmit_mcp
    • Addedsubmit_mcp_server
    • Addedverify_mcp_claim
  3. 1 tool updatev1.0.1
    • First observedsubmit_mcp

TDQS

A4.1/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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

ActivityMaintained
ResponsivenessResponsive

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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