KPN Persona Runtime
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
TDQS
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.
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.
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.
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 toolsget_persona_card페르소나 명함 조회ARead-onlyInspect
DID로 페르소나 명함(공개 범위)을 조회합니다. 이름·소속·전문 분야·공개 의도와 발급자 서명이 포함됩니다. 이 도구는 정보 조회 전용이며 어떤 행동도 수행하지 않습니다.
| Name | Required | Description | Default |
|---|---|---|---|
| did | Yes | 조회할 페르소나 DID (예: did:soma:...) |
TDQS
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.
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.
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.
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.
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.
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페르소나 판단 자문ARead-onlyInspect
"이 사람이라면 어떻게 판단할까?"를 페르소나에게 자문합니다. 응답은 공개 범위의 가치 기준에 따른 권고(자문)일 뿐이며, 이 도구는 결제·전송·기기제어 등 어떤 실제 행동도 절대 수행하지 않습니다(executed:false 고정). 사적·민감 영역 질문은 보류로 응답됩니다.
| Name | Required | Description | Default |
|---|---|---|---|
| did | Yes | 자문 대상 페르소나 DID | |
| question | Yes | 자문할 질문 (예: '이 제휴 제안을 수락할까요?') |
TDQS
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.
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.
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.
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.
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.
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의 런타임을 최신 상태로 동기화합니다. 명함 수신자가 항상 발급 시점이 아닌 현재의 페르소나와 대화하도록 보장합니다. 페르소나 데이터 갱신 외의 어떤 외부 행동도 수행하지 않습니다.
| Name | Required | Description | Default |
|---|---|---|---|
| did | Yes | 동기화할 페르소나 DID |
TDQS
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.
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.
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.
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.
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.
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 서명 검증ARead-onlyInspect
제시된 페르소나 명함이 진본인지(발급자 서명이 유효한지) 판정합니다. 명함 내용이 한 글자라도 변조되면 SIGNATURE_MISMATCH를 반환합니다. 에이전트 사칭 여부를 확인할 때 사용하세요. 검증 전용이며 행동을 수행하지 않습니다.
| Name | Required | Description | Default |
|---|---|---|---|
| did | Yes | 검증할 DID | |
| cardPayload | No | 검증 대상 명함 전체 JSON(서명 포함). 생략 시 레지스트리 보관본을 자체 검증 |
TDQS
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.
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.
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.
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.
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.
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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
get_persona_card - First observed
query_persona_decision - First observed
sync_persona_card - First observed
verify_persona_did
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
Verify a source or provider before an AI agent trusts it. Evidence only; unknown stays unknown.
Neutral W3C DID/VC identity and reputation oracle for AI agents (did:key/did:web, eddsa-jcs-2022).
Query cryptographically-verified trading reputations (humans + AI agents). ed25519-signed.
Check if an AI agent is trustworthy. Sybil detection, signed attestations, 150,000+ agents. Free.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables verification of AI agent identity, authority, and integrity at transaction time, returning signed verdicts for allow, step-up, review, or block.MIT
- AlicenseAqualityAmaintenanceIdentity infrastructure for the agent economy. Mint an agent ~handle in two free calls with no human account, then verify anyone and read inferred traits under the consent the person set in advance.16229Apache 2.0
- AlicenseNot gradedqualityCmaintenanceW3C DID resolution and agent KYC for autonomous agent counterparties, enabling identity verification and trust scoring.MIT

Trooth Networkofficial
AlicenseNot gradedqualityCmaintenanceRemote, read-only MCP connector to check any company's witnessed trust record on the Trooth Network, across identity, security, privacy, and AI practices. Also does a neutral read of a domain's public security surface and verifies signed Trust Ledger Tokens. No key, no account.MIT