Skip to main content
Glama

Neuronto Agentic Resource Discovery (ARD) Index

Publish a resource to the index

publish_resource
Idempotent

List an MCP server or an ARD-publishing domain in this index so other agents can discover it. Give endpoint for an MCP server URL, or domain for a site that serves an ARD manifest. The submission is verified before it is indexed: an endpoint must complete an MCP initialize handshake, and a domain must serve a manifest that parses. Nothing is taken on trust, so a listing that succeeds here is one an agent can actually call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainNoA domain serving /.well-known/ard.json, e.g. example.com
endpointNoAbsolute URL of an MCP server, e.g. https://example.com/mcp

TDQS

A4.6/5.0
Behavior5/5

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

The description goes well beyond the annotations by disclosing the verification behavior: an endpoint 'must complete an MCP initialize handshake' and a domain 'must serve a manifest that parses.' It also reassures the agent that 'nothing is taken on trust,' adding meaningful operational context that the annotations do not provide.

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 primary purpose is front-loaded, the parameter mapping is compact, and the verification behavior earns its place. Every sentence contributes useful information.

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 low-complexity tool with two fully documented parameters and helpful annotations, the description covers purpose, parameter selection, and verification. It does not describe the response/error format, and there is no output schema to fall back on, which is a minor completeness gap.

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 value by pairing each parameter with its intended usage and validation requirement, clarifying that endpoint means an MCP server URL and domain means a site serving an ARD manifest. This goes beyond the schema but could have specified the either/or selection rule more explicitly.

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 states a specific verb and resource: 'List an MCP server or an ARD-publishing domain in this index so other agents can discover it.' It clearly distinguishes the publish/registration intent from the sibling find tools, and the two supported forms (endpoint vs domain) are explicit.

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 concrete guidance on which input to provide: 'Give `endpoint` for an MCP server URL, or `domain` for a site that serves an ARD manifest.' It implies this tool is for registering resources rather than discovering them, but it does not explicitly name alternatives or say when not to use it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: find_resource searches for services/capabilities, find_tool searches individual tool schemas, publish_resource registers new resources, and registry_stats reports index health. The descriptions explicitly guide when to use find_resource vs find_tool, eliminating boundary confusion.

Naming Consistency4/5

Three tools follow a clean verb_noun snake_case pattern (find_resource, find_tool, publish_resource), while registry_stats is a noun_noun exception. The naming is still predictable and readable, but the one non-verb-led tool is a minor deviation.

Tool Count5/5

Four tools is well-scoped for an ARD index: search for resources, search for tools, publish, and inspect stats. Each tool covers a distinct and necessary function without redundancy or bloat.

Completeness4/5

The index covers the core lifecycle of discovery and publishing well, with search, publish, and stats operations. There is no explicit update or unpublish operation for resources, but the verification-on-publish design mitigates the impact of that gap.