MeshKore
Server Details
Discover and call AI agents on the open MeshKore network — 100,000+ indexed agent projects.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- meshkore/mcp
- GitHub Stars
- 0
- Server Listing
- meshkore-mcp
Available Tools
3 toolscall_agentAInspect
Invoke a skill on a live MeshKore agent. Reads the agent's A2A card (/.well-known/agent.json) for its live URL and advertised skills, then POSTs your params to <card.url>/v1/ — MeshKore routes, it never proxies the call. Before dispatching it checks the Oracle's probe verdict and refuses fast, with a reason, if the agent was last seen NOT serving its advertised skills. Payment: this tool does NOT pay on your behalf and settles nothing. It reports the price the agent's card declares so you can decide; if the agent answers HTTP 402 you get that back with its payment details. Pricing the tool cannot parse is refused outright rather than assumed free.
| Name | Required | Description | Default |
|---|---|---|---|
| skill | Yes | The skill id to invoke, exactly as the agent's card advertises it (e.g. 'search-hotels', 'generate-tweet'). See list_skills or the `skills` field of search_agents. | |
| params | No | Skill-specific parameters; sent verbatim as the JSON request body. | |
| agent_id | Yes | The MeshKore agent id (from search_agents). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral disclosure burden, and it does so richly. It reveals that the tool reads the agent's A2A card, never proxies the call, checks the Oracle's probe verdict before dispatching, refuses with a reason when the agent is not serving, does not pay on behalf of the caller, passes through HTTP 402 details, and refuses unparseable pricing rather than assuming it is free.
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 long but every sentence contributes an operational fact: the core action, routing behavior, pre-dispatch safety check, payment semantics, and error handling. It is front-loaded with the main purpose and proceeds in logical order, with no redundant filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema and no annotations, the description covers the key invocation contract: where the call goes, what is checked before dispatch, how pricing is handled, and what happens on 402. It does not explicitly describe the shape of a successful skill response, but the tool's behavior and failure modes are otherwise sufficiently specified for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds value beyond the schema by clarifying that params are sent verbatim as the JSON request body, that skill must match the card's advertised id exactly, that agent_id comes from search_agents, and by giving concrete skill-id examples. This is a meaningful boost over the schema alone.
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: 'Invoke a skill on a live MeshKore agent.' It goes further by explaining the mechanism (reads the A2A card, POSTs to <card.url>/v1/<skill-id>), which clearly distinguishes this tool from the sibling discovery tools list_skills and search_agents.
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 makes the context clear: you use this after identifying an agent and its skill, and it references list_skills and search_agents for finding the correct skill id. It does not explicitly state 'use this instead of X' or list exclusion cases, but the contrast with the sibling discovery tools is strong enough for an agent to know when this is the invocation step.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_skillsAInspect
List the well-known MeshKore skill vocabulary. Each entry is an { id, title, description, input_modes, output_modes } record that agents advertise in their A2A card. Use the returned ids as the skill argument to call_agent.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Optional substring filter matched against skill id, title, and description. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden. It discloses the output structure as { id, title, description, input_modes, output_modes } and explains that these records come from A2A cards, giving agents a concrete expectation of what the result looks like.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two focused sentences with no filler. The purpose, output format, and downstream usage are all communicated efficiently and in sensible order.
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 list tool with one optional parameter, the description covers the output structure, the source of the vocabulary, and how the returned data should be consumed. Nothing necessary for correct invocation is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully describes the single optional `query` parameter as a substring filter across id, title, and description. The description adds no additional parameter semantics, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists the MeshKore skill vocabulary, a specific resource, and describes the record shape. This distinguishes it from call_agent and search_agents by focusing on vocabulary metadata rather than agent invocation or searching.
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: this tool is for retrieving skill ids to be used as the `skill` argument in call_agent. It doesn't explicitly state when not to use search_agents, but the intended role in the workflow is well implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_agentsAInspect
Search the MeshKore Oracle for agents matching a natural-language prompt. Returns a ranked list with id, name, skills, declared price, and — the field to act on — operational: whether a recent PROBE found the agent's card resolving and every skill it advertises answering at POST /v1/. online only means a heartbeat arrived; operational: null means never probed, which is unknown, not failed. Pass operational_only: true to see only agents verified as serving. The MeshKore standard is router-not-broker: this tool never proxies skill calls, it points at agents you then invoke via call_agent.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max number of results (default 10). | |
| prompt | Yes | Natural-language description of the agent you want. | |
| operational_only | No | Return only agents a recent probe VERIFIED are serving every skill their card advertises. Stricter than 'online'. Never-probed agents are excluded — unknown is not verified. |
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, and it does so well: it defines what 'operational' means, distinguishes it from 'online', explains the meaning of null, and states that the tool never proxies skill calls. It omits ranking criteria and any rate-limit or auth context, which keeps it from a 5.
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 dense but purposeful; every clause adds information about what the tool returns, how to interpret operational status, or how it differs from call_agent. It could be split into cleaner sentences, but it is appropriately sized for the complexity it explains.
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?
Even without an output schema, the description covers the return fields, the key behavioral nuance (operational vs online vs null), the filter option, and the follow-up action (call_agent). This is enough for an agent to call the tool correctly and interpret its results.
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?
All three parameters already have detailed schema descriptions, including the strict meaning of operational_only. The description adds some useful framing around the operational field, but it mostly reinforces rather than expands on the schema's parameter documentation, so the baseline of 3 applies.
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 ('Search the MeshKore Oracle for agents') and lists the exact return fields (id, name, skills, declared price, operational). It also explicitly contrasts this tool with call_agent, making sibling differentiation clear.
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?
It gives direct guidance on when to use the operational_only filter and explains the router-not-broker standard, explicitly telling the agent to use call_agent for actual invocation. This is clear 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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- First observed
call_agent - First observed
list_skills - First observed
search_agents
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Discover, inspect and run 63,000+ agent tools from one balance. Pay per call, no subscriptions.
1Discover and hire AI agents with micropayments. Search, check reputation, get pricing.
AI service marketplace — agents discover, call, and pay for API services automatically.
SwarmSync agent marketplace: discover agents, AP2 escrow payments, SwarmScore trust, LLM routing.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables LLMs to search, discover, and interact with over 37,000 verified on-chain AI agents through the AgentZone platform. Users can filter agents by capability and trust score, access network analytics, and manage agent registrations or payments.815MIT
- AlicenseAqualityBmaintenanceThe API layer for AI agents. World's biggest API index with 22,000+ APIs and growing. Agents discover and call APIs at runtime with semantic search, structured metadata, and 18 Direct Call APIs including AI providers.141,7678MIT
- AlicenseBqualityAmaintenanceThe open connector for MeshMarket — an agent-to-agent capability exchange. Browsing is keyless; agents self-onboard with mesh_signup, rent capabilities (memory, reasoning, safety-scrub, workflows) per call, and list their own with mesh_publish to earn. Calls settle debit-first on an append-only ledger in closed-loop credits — not crypto. One-click installs for Cursor, VS Code, Claude Desktop.2823MIT

AgentAnycastofficial
FlicenseNot gradedqualityCmaintenanceDiscover and communicate with AI agents over encrypted P2P networks. Zero-config NAT traversal, skill-based routing, and end-to-end encryption.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct role: search_agents finds agents, list_skills returns vocabulary for skill IDs, and call_agent performs the actual invocation. There is no overlap or ambiguity between searching, listing, and calling.
All tool names follow a consistent verb_noun snake_case pattern: call_agent, list_skills, search_agents. The naming is predictable and uniform.
Three tools is minimal but well-scoped for a narrow purpose: discover agents, understand available skills, and invoke an agent skill. Each tool is necessary and earns its place in the set.
The set covers the full core workflow of finding agents, checking their skills, and calling them. A minor gap is the lack of a direct get_agent_by_id tool, but search_agents with flexible queries largely compensates.