Skip to main content
Glama

Find MCP - Agentage MCP Directory

Server Details

Search the official MCP registry: 17,000+ servers with trust grades, stars, tools, install config.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.7/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: mcp_categories lists filter values, mcp_search finds servers, and mcp_get retrieves full details for a single server. There is no overlap or ambiguity in their responsibilities.

Naming Consistency4/5

All tools use the mcp_ prefix, but the pattern is slightly mixed: mcp_search and mcp_get are verb-first, while mcp_categories is a noun. The convention is still predictable and readable, so this is a minor deviation.

Tool Count5/5

Three tools is exactly right for a directory service: one to discover filter options, one to search, and one to fetch details. No tool is redundant or missing.

Completeness5/5

The tools cover the complete read-only workflow for the domain: browse categories, search with filters, and inspect a server's full record. There are no dead ends or obvious gaps; the dependency between mcp_categories and mcp_search is well-documented.

Available Tools

3 tools
mcp_categoriesList directory filter valuesA
Read-only
Inspect

List the directory's available filter values - every category, language, and license, each with how many servers carry it. Call this BEFORE mcp_search when you intend to filter, so you pass exact, existing values for the type/category/language/license arguments instead of guessing. Takes no input. Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
licensesYesLicense names and their server counts
languagesYesRepository languages and their server counts
categoriesYesCategory labels and how many servers carry each
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark the tool as read-only and non-destructive. The description adds context about the return content (every category, language, license with server counts) and confirms it takes no input. This goes beyond annotations, though it omits potential rate limits or pagination behavior.

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 compact and front-loaded: the first sentence states the core purpose, the second gives usage timing, and the final clauses confirm no input and read-only nature. Every sentence earns its place with no filler.

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 no-input, read-only listing tool with an output schema, the description fully covers what is returned, when to call it, and its safety profile. It also addresses the relationship with mcp_search, making it contextually complete.

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 baseline is 4. The description confirms 'Takes no input,' matching the empty schema. No further parameter explanation is necessary or possible.

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 ('List') and resource ('directory's available filter values'), enumerates the exact contents (category, language, license) and includes counts. It clearly distinguishes itself from sibling mcp_search by establishing itself as the precursor for obtaining valid filter values.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance states 'Call this BEFORE mcp_search when you intend to filter' and instructs the agent to pass exact, existing values instead of guessing. This directly tells when to use the tool relative to the alternative sibling.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mcp_getGet one MCP serverA
Read-only
Inspect

Fetch the complete record for ONE MCP server in the agentage directory by its canonical slug: full description, categories, the packages and remote endpoints it ships, the tools it exposes, a ready-to-run install command, and a README excerpt. Use this after mcp_search to get the depth a result card omits - pass a slug exactly as returned by mcp_search. Slugs are canonical and registry-derived ("io-github-github-github-mcp-server"), NOT the plain product name ("github"); if you pass a plain name anyway it is resolved by search as a fallback - a single confident match returns that server (with resolved_from set), anything else returns an error naming the candidate slugs to retry with. No slug yet? call mcp_search first. Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe canonical slug of one server, taken verbatim from a mcp_search result. Catalog slugs are registry-derived and rarely match the plain product name (e.g. "io-github-github-github-mcp-server", not "github"), so prefer a slug from mcp_search. A plain name is accepted as a best-effort fallback: it resolves only when exactly one server matches, otherwise the error lists candidate slugs.

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYes
slugYes
titleYes
toolsYesThe MCP tools this server exposes, from its live tools/list
installNoThe recommended way to run this server, derived from its first package/remote
licenseNo
remotesYes
categoryYes
languageNo
packagesYes
descriptionYes
details_urlYesHuman detail page for this server - open it for more information
is_officialYes
resolved_fromNoPresent only when the requested slug was not canonical and was resolved by name; this is what you asked for - use `slug` from now on
readme_excerptNoFirst ~2000 chars of the README; open details_url for the full document
transport_typesYes
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds valuable behavioral context: slug canonicalization rules, fallback resolution with `resolved_from`, and error listing candidate slugs. This goes well beyond the structured annotations.

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 moderately long but every sentence earns its place: purpose, contents, usage sequence, slug format, fallback behavior, and read-only note. It is front-loaded and well organized with no filler.

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?

With only one parameter, an output schema present, and annotations covering safety, the description covers all needed context: when to use, how to source the slug, fallback behavior, and read-only nature. No significant gaps remain.

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% and the slug parameter's schema description already includes verbatim-from-search guidance, canonical format, and fallback behavior. The tool description adds minimal new meaning beyond this, so baseline 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 fetches one MCP server's complete record by canonical slug, enumerating the contents (description, categories, packages, endpoints, tools, install command, README). It distinguishes itself from mcp_search by noting it provides depth beyond result cards.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to use this after mcp_search and to call mcp_search first if no slug is available. It also explains the fallback resolution for plain names and error behavior, giving unambiguous when-to-use and when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables searching and retrieving detailed information about MCP servers from the official MCP registry. Provides tools to list servers with filtering options and get comprehensive details about specific servers.
    46
    3
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Search and evaluate MCP servers from your AI agent: quality grades, live verification status, install commands and client compatibility for 5,000+ servers.
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Provides intelligent recommendations for MCP servers based on development needs using natural language queries. Searches through 874+ curated MCP servers across 36+ categories with advanced matching algorithms.
    3
    5
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources