AI Codex
Server Details
Neutral W3C DID/VC identity and reputation oracle for AI agents (did:key/did:web, eddsa-jcs-2022).
- 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.
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.
Tool Definition Quality
Average 3.2/5 across 6 of 6 tools scored. Lowest: 2.6/5.
Each tool targets a distinct operation: declaring principals, receipts, succession; registering agents; getting reputation; resolving DIDs. No overlap in functionality.
Tools use mixed patterns: 'declare_*' follows verb_noun, but 'register', 'resolve', and 'get_reputation' follow different conventions (single verb or get_noun). Lacks a uniform pattern.
Six tools cover the core operations for a DID/reputation system without excess. Each tool serves a necessary purpose.
The toolset covers all essential lifecycle operations: registration, binding, receipt submission, succession, and queries. No obvious gaps given the append-only and declarative model.
Available Tools
6 toolsdeclare_principalBInspect
mcp-v2: registers a Principal Binding signed by the principal (SPEC-principal-binding-v1). Binds an agent to an accountable person/organization (did:key/did:web). Append-only, declarative, anti-Sybil.
| Name | Required | Description | Default |
|---|---|---|---|
| binding | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the operation is append-only and declarative, suggesting no destructive side effects. However, it does not explain auth requirements, rate limits, idempotency, or what happens on duplicate calls. Without annotations, more behavioral detail is needed.
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 very concise with one sentence plus a parenthetical spec reference. It conveys key points efficiently, though the spec reference may require external lookup for full clarity.
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 complexity (nested object parameter, no output schema, no annotations), the description lacks detail on return values, behavior on multiple calls, and relationship to sibling tools. More contextual information is needed for complete understanding.
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 0% and the only parameter 'binding' is an opaque object. The description references a specification (SPEC-principal-binding-v1) but does not explain the structure or properties of the binding object. The added meaning is minimal beyond the schema.
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 registers a Principal Binding, binds an agent to an accountable person/organization, and mentions it is append-only and anti-Sybil. It distinguishes from siblings like declare_receipt and declare_succession by specifying the binding action.
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 with terms like 'append-only' and 'anti-Sybil' but lacks explicit guidance on when to use this tool versus siblings or when not to use it. No alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
declare_receiptBInspect
mcp-v2: registers an Interaction Receipt signed by an accountable counterpart (SPEC-reputation-receipt-v1). review/dispute -> feeds the score. Append-only, anti self-attestation, anti-Sybil (bound issuer).
| Name | Required | Description | Default |
|---|---|---|---|
| receipt | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description takes full responsibility. It discloses key behavioral traits: append-only (immutable), anti-self-attestation, and anti-Sybil via bound issuer. This is good, though it omits details like actions taken on receipt validation failure.
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 concise at two sentences, covering purpose and key constraints without excess. However, the dense jargon (e.g., 'anti-Sybil (bound issuer)') may reduce clarity for an AI agent on first read.
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 one parameter, no output schema, and no annotations, the description explains purpose and constraints but leaves gaps: return value, error handling, and prerequisites (e.g., known counterpart). The sibling tool list provides context but doesn't substitute for these details.
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?
With 0% schema description coverage, the description must add meaning for the 'receipt' parameter. It names the spec (SPEC-reputation-receipt-v1) and that it's signed, but it does not explain the object structure or required fields, leaving the agent with insufficient guidance for a free-form object.
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 registers an Interaction Receipt signed by an accountable counterpart, and it includes specific constraints like append-only and anti-Sybil. This distinguishes it from sibling tools like declare_principal and get_reputation, though the differentiation is not explicitly stated.
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 when there is a signed receipt to register, but it does not provide explicit guidance on when not to use or mention alternatives among sibling tools like resolve. The 'review/dispute -> feeds the score' phrase hints at context but lacks clarity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
declare_successionAInspect
mcp-v2: registers a self-signed Succession Statement (SPEC-succession-v1). Append-only, declarative, no transfer.
| Name | Required | Description | Default |
|---|---|---|---|
| statement | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description provides key behavioral traits: append-only, declarative, no transfer. This goes beyond the basic registration action and informs the agent of important safety and usage characteristics.
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, dense sentence that covers purpose and key behaviors. It is well-front-loaded and contains no fluff, earning 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?
The description covers purpose and some behavioral traits, but lacks parameter semantics and output expectations. Given no output schema, the description does not explain what the tool returns, and the complex nested parameter is left underdocumented.
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 only parameter 'statement' is an object with no defined properties (additionalProperties true), and the description provides no structure details. It only references an external spec but does not summarize expected fields, leaving a significant gap in understanding.
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 it registers a self-signed Succession Statement, referencing a spec (SPEC-succession-v1). It distinguishes itself from transfer operations and specifies it is append-only and declarative, making its resource and action unambiguous.
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 this tool is for declarative, append-only registration without transfer, but does not explicitly state when to use it versus sibling tools like declare_principal or declare_receipt. No when/not or alternatives are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_reputationBInspect
Returns the live Reputation VC (public, always present).
| Name | Required | Description | Default |
|---|---|---|---|
| did | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description must disclose behavior. It mentions 'live' and 'always present' but omits error cases, authentication needs, or side effects.
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 with no extraneous words, front-loading the key action and result.
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?
With no output schema, the description should explain the return format or VC structure. It merely states 'Reputation VC' without elaboration.
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 0%, yet the description does not explain the 'did' parameter's format, constraints, or purpose beyond its name.
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 returns a Reputation VC for a DID, which is specific and distinguishes it from sibling tools like resolve or register.
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?
No guidance is provided on when to use this tool vs alternatives like resolve or declare_principal. The description lacks context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
registerCInspect
Register an agent (1 signed call, idempotent).
| Name | Required | Description | Default |
|---|---|---|---|
| proof | Yes | ||
| metadata | No | ||
| public_key_multibase | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds behavioral info (idempotent, requires signed call) beyond schema, but lacks disclosure of destructiveness, permissions, or effects on existing state. With no annotations, more detail would be warranted.
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?
Extremely concise at one sentence, but sacrifices important contextual detail that could be included without losing conciseness.
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?
Severely incomplete: no return value info, no error conditions, no parameter descriptions. For a tool with nested objects and no output schema, this description fails to provide minimal necessary context.
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 0% and description adds no explanation for any of the three parameters (proof, metadata, public_key_multibase). The 'proof' object is complex and remains undocumented.
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?
Description states verb 'register' and resource 'agent', with added nuance of idempotency and signed call requirement. However, it does not differentiate from sibling tools like 'declare_principal' which may have overlapping purpose.
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?
No guidance on when to use this tool versus alternatives such as 'declare_principal', 'declare_receipt', or others. No prerequisites or contextual conditions provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolveBInspect
Resolve a DID -> DID Document + metadata (public).
| Name | Required | Description | Default |
|---|---|---|---|
| did | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the burden but only states it is 'public', which is vague. No disclosure of behavioral traits like read-only nature, rate limits, or error handling.
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, front-loaded sentence that efficiently communicates the core purpose. No unnecessary 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 tool with one parameter and no output schema, the description is minimally adequate. It states the basic transformation but omits details about the output format, potential errors, or additional context that would fully inform an agent.
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 single parameter 'did' has 0% schema description coverage. The description only repeats 'Resolve a DID' without adding format, constraints, or examples. Baseline for low coverage requires compensation, which is lacking.
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 verb 'resolve' and the resource 'DID', and specifies the output 'DID Document + metadata (public)'. It distinctly separates from sibling tools like 'declare_principal' and 'register'.
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?
No guidance is provided on when to use this tool versus alternatives. There is no mention of context, prerequisites, or 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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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!