Skip to main content
Glama

Server Details

Verify a persona's DID-signed identity and query value-based judgment — advisory only, no actions.

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.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: retrieving persona data (get_persona_card), querying persona decisions (query_persona_decision), syncing persona state (sync_persona_card), and verifying authenticity (verify_persona_did). No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (get_, query_, sync_, verify_), making them predictable and easy for an agent to understand.

Tool Count5/5

With 4 tools, the server is well-scoped for a persona runtime service. The count is small enough to avoid confusion but sufficient to cover core operations (read, query, sync, verify) without unnecessary bloat.

Completeness4/5

The tools cover the primary use cases for interacting with a persona runtime (reading, querying decision, syncing, verifying). However, there is no tool for creating or deleting a persona, which might be needed in some workflows, but likely intentional for a runtime context.

Available Tools

4 tools
get_persona_card페르소나 명함 조회A
Read-only
Inspect

DID로 페르소나 명함(공개 범위)을 조회합니다. 이름·소속·전문 분야·공개 의도와 발급자 서명이 포함됩니다. 이 도구는 정보 조회 전용이며 어떤 행동도 수행하지 않습니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
didYes조회할 페르소나 DID (예: did:soma:...)
Behavior4/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 value by listing the specific fields returned (name, affiliation, expertise, public intention, issuer signature) and explicitly stating no actions are performed, which goes beyond the 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 two sentences: the first states the action and contained fields, the second underscores read-only nature. Every sentence is purposeful and information-dense, with no fluff.

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 read-only tool with one parameter, clear annotations, and no output schema, the description adequately covers the return content and behavioral scope. It is complete given the complexity.

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 coverage is 100% and the description adds little beyond the schema's 'did' parameter description. The phrase 'DID로' mirrors the schema, so the description does not significantly enhance parameter understanding beyond what the schema already provides.

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 queries a persona card by DID and lists its contents (name, affiliation, expertise, public intention, issuer signature). It also clarifies it's read-only. However, it does not explicitly differentiate from sibling tools like 'sync_persona_card' or 'verify_persona_did', though the read-only nature implies distinction.

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 explains this tool is for inquiry only and performs no actions, giving context for when to use (read-only lookup). It does not state when not to use or provide explicit alternatives, though sibling names are available.

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

query_persona_decision페르소나 판단 자문A
Read-only
Inspect

"이 사람이라면 어떻게 판단할까?"를 페르소나에게 자문합니다. 응답은 공개 범위의 가치 기준에 따른 권고(자문)일 뿐이며, 이 도구는 결제·전송·기기제어 등 어떤 실제 행동도 절대 수행하지 않습니다(executed:false 고정). 사적·민감 영역 질문은 보류로 응답됩니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
didYes자문 대상 페르소나 DID
questionYes자문할 질문 (예: '이 제휴 제안을 수락할까요?')
Behavior4/5

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

The description adds valuable behavioral context beyond annotations: it never performs actions (executed:false), and sensitive questions are held. This complements the readOnlyHint and destructiveHint 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 two sentences, front-loaded with the primary purpose, and uses efficient language with no redundant 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 query tool with no output schema, the description explains the nature of the response (recommendation) and handles edge cases (sensitive questions). It is fairly complete but could elaborate on the output format.

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 descriptions for both parameters are clear and cover 100% of parameters. The description adds context about the type of question, but does not significantly enhance understanding beyond the schema.

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 purpose: consulting a persona for judgment advice. It explicitly distinguishes itself from sibling tools by detailing what it does not do (no real actions) and mentioning that sensitive questions are held.

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 guidance for when to use the tool (to get persona advice) and when not (private/sensitive questions result in 'hold'). It explains that the tool does not perform actions, but does not name alternative tools for actions.

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

sync_persona_card페르소나 명함 동기화AInspect

해당 DID의 런타임을 최신 상태로 동기화합니다. 명함 수신자가 항상 발급 시점이 아닌 현재의 페르소나와 대화하도록 보장합니다. 페르소나 데이터 갱신 외의 어떤 외부 행동도 수행하지 않습니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
didYes동기화할 페르소나 DID
Behavior4/5

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

Annotations indicate readOnlyHint=false and destructiveHint=false. Description adds that the tool only updates persona data and performs no external actions, providing reassurance about its safety scope. No contradictions with 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?

Three sentences in Korean are concise and front-loaded: first sentence states the core action, second adds the benefit, third states limitations. Every sentence serves a purpose with no redundancy.

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 mutation tool with one parameter and no output schema, the description fully covers what it does, why it is used, and what it does not do. No gaps for an agent to misinterpret.

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 already describes the single parameter 'did' with 100% coverage. Description only references '해당 DID' without adding new parameter semantics. Baseline score of 3 is appropriate since 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?

Description clearly states the verb 'synchronize' and specific resource 'runtime of given DID.' It distinguishes from siblings (get, query, verify) by explaining it updates persona data rather than reading or verifying. The explicit limitation 'does not perform any external actions' further differentiates it.

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?

Description explains the context: ensuring the card receiver gets the current persona. However, it does not explicitly state when to avoid using this tool or alternatives. The benefit is clear, but no exclusion criteria are given.

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

verify_persona_did페르소나 DID 서명 검증A
Read-only
Inspect

제시된 페르소나 명함이 진본인지(발급자 서명이 유효한지) 판정합니다. 명함 내용이 한 글자라도 변조되면 SIGNATURE_MISMATCH를 반환합니다. 에이전트 사칭 여부를 확인할 때 사용하세요. 검증 전용이며 행동을 수행하지 않습니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
didYes검증할 DID
cardPayloadNo검증 대상 명함 전체 JSON(서명 포함). 생략 시 레지스트리 보관본을 자체 검증
Behavior4/5

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

Annotations already declare readOnlyHint=true, indicating no side effects. The description adds valuable behavioral details: it returns SIGNATURE_MISMATCH if the card is tampered, and it is verification-only. It does not contradict annotations. The description could be enhanced by noting any prerequisites (e.g., registry access) but is sufficient given the read-only nature.

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 unnecessary words. Key information is front-loaded: purpose, error condition, and use case. Every sentence adds value.

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 simple verification tool with 2 parameters and no output schema, the description is complete. It covers the purpose, behavior, parameter semantics (including optional fallback), and use case. It does not explicitly state the success return value, but the error case (SIGNATURE_MISMATCH) is described, which is sufficient for understanding.

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?

Both parameters (did, cardPayload) have descriptions in the schema, achieving 100% coverage. The description adds semantic value beyond the schema: it explains that if cardPayload is omitted, the tool uses the registry-stored version for self-verification. This extra context justifies a score above 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 verb (판정합니다 - determines), the resource (페르소나 명함 - persona card), and the specific purpose (validating signature to detect tampering). It differentiates from sibling tools: get_persona_card retrieves cards, query_persona_decision queries decisions, sync_persona_card syncs cards, while this tool is exclusively for verification.

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 explicitly says when to use the tool: '에이전트 사칭 여부를 확인할 때 사용하세요' (use when checking for agent impersonation). It also notes it is verification-only and performs no actions. However, it does not explicitly mention when not to use it or provide direct alternatives, though the sibling context provides implicit differentiation.

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
    -
    quality
    B
    maintenance
    Provides an MCP endpoint for agents to check whether a real-world fact can be verified, covering businesses, listings, objects, and places, while refusing claims about individuals. It acts as a demand sensor that logs verification attempts, even for unfulfillable requests.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Independent trust scores, claim audits, and side-by-side comparisons for AI agents, queryable over MCP. Every verdict is backed by hands-on testing and signed evidence from Hlido (hlido.eu). Hosted endpoint available at https://hlido.eu/mcp — no auth required.
    14
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources