MisakaNet
Server Details
Never let your agent repeat a bug or linger on a known issue. Search 385+ failure lessons to skip known errors instantly.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
7 toolsmisakanet_get_lessonARead-onlyIdempotentInspect
[RETRIEVAL / READ] Fetch one public MisakaNet lesson by repository path or lesson ID. Use after misakanet_search returns a promising result to pull the full fix content. Provide exactly one of id or path (path takes precedence if both are supplied); if neither is supplied the tool returns {error}. Returns: object {path: string, content: string} — lesson markdown body (≤5000 chars); or {error: string}. Example: misakanet_get_lesson(id='auto-merge-ci-pipeline')
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Lesson ID, usually the filename without .md, e.g. auto-merge-ci-pipeline. Either id or path is required. | |
| path | No | Lesson path relative to the repository, e.g. lessons/core/auto-merge-ci-pipeline.md. Either path or id is required. |
Output Schema
| Name | Required | Description |
|---|---|---|
| path | No | |
| error | No | |
| content | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnly, openWorld, idempotent, and non-destructive behavior. The description adds valuable behavioral context beyond that: the error case when neither parameter is supplied, the precedence rule, the return shape, and the 5000-character limit.
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 compact and well-structured: a clear retrieval marker, the operation, workflow placement, key constraints, return type, and an example. Every sentence earns its place and the most important decision rules are front-loaded.
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 two-parameter read tool with full schema coverage and supporting annotations, the description is complete. It covers how to invoke it, what happens in edge cases, the return shape, and the expected workflow context, so an agent has everything needed to call it correctly.
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%, so the baseline is 3. The description adds extra meaning by clarifying path precedence, the 'exactly one' requirement, and the error result if neither is provided, which goes beyond the schema's per-parameter descriptions.
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 uses a specific verb 'Fetch' plus a clear resource ('one public MisakaNet lesson') and identifies the distinguishing lookup keys (repository path or lesson ID). It explicitly frames itself as the retrieval step after misakanet_search, so an agent can tell it apart from search and write_lesson without opening schemas.
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 explicitly says to use this tool after misakanet_search returns a promising result, providing concrete workflow guidance. It also states the key invocation constraint: provide exactly one of id or path, with path taking precedence when both are supplied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
misakanet_me_eventsARead-onlyIdempotentInspect
[READ-ONLY EVIDENCE] Return evidence of a lesson being reused (E4 signals): helpful votes, regression-benchmark citations, and cross-node confirmation. Use to check whether a lesson is proven by real usage, not just self-reported. Provide lesson_id or lesson_path — if neither is supplied the tool returns {error}. Semantically 'misakanet_get_my_events' (evidence for the lessons your node submitted/used); kept as me_events for backward compatibility. No auth required (read-only, rate-limited). Returns: object {lesson_id, events: [{type, count|queries|sources, evidence_level}], evidence: 'E0'|'E3'|'E4', note}. Example: misakanet_me_events(lesson_id='dco-auto-fix-workflow')
| Name | Required | Description | Default |
|---|---|---|---|
| lesson_id | No | Lesson ID (filename stem), e.g. dco-auto-fix-workflow. Either lesson_id or lesson_path is required. | |
| lesson_path | No | Optional full path, e.g. lessons/core/dco-auto-fix-workflow.md. Either lesson_id or lesson_path is required. |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| error | No | |
| events | No | |
| evidence | No | |
| lesson_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive hints, but the description adds non-obvious behavior: no auth required, rate-limiting, the {error} response for missing identifiers, and the backward-compatibility reason for the me_events name. Nothing contradicts 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 dense but front-loaded with the core purpose, then covers invocation, auth, return shape, and an example. There is slight redundancy with the annotations and output schema, but every sentence contributes useful context.
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 two-parameter read-only tool with an output schema, the description covers invocation requirements, failure behavior, authentication, rate limiting, return structure, and an example. An agent has everything needed to select and invoke it correctly.
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 each parameter description already documents the either-or requirement. The description reinforces that requirement and provides an example value, but it does not add substantial semantic information beyond what the input schema already supplies.
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: 'Return evidence of a lesson being reused (E4 signals)'. It names concrete signals like helpful votes, regression-benchmark citations, and cross-node confirmation, and clarifies that the tool checks real usage rather than self-reported claims.
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 explicitly says when to use the tool: 'Use to check whether a lesson is proven by real usage, not just self-reported.' It also states the invocation requirement to provide lesson_id or lesson_path, and notes the error if neither is supplied. However, it does not name alternatives or give explicit when-not-to-use conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
misakanet_preflightARead-onlyIdempotentInspect
[GUARD / RISK CHECK] Check risk level before executing high-risk operations. Matches agent intent against lesson triggers to provide proactive warnings. Use before RAG builds, WSL/GPU tasks, bulk imports, or any operation that might fail. No side effects — safe to call multiple times before acting. Returns: object {risk_level: 'low'|'medium'|'high', intent, matched_lessons: [{id, title, domain, relevance}], guards: [string]}. Example: misakanet_preflight(intent='build RAG pipeline with ChromaDB')
| Name | Required | Description | Default |
|---|---|---|---|
| intent | Yes | Required: what you plan to do (e.g. 'build RAG pipeline with ChromaDB'). | |
| context | No | Optional: additional context about the environment or setup. |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | |
| guards | No | |
| intent | No | |
| risk_level | No | |
| matched_lessons | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior, and the description reinforces this with 'No side effects — safe to call multiple times.' It adds the behavioral detail that it matches intent against lesson triggers and returns a structured risk assessment, 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 compact and front-loaded: purpose, use cases, side-effect note, return shape, and example are each covered in one or two sentences with no filler. Every sentence contributes to correct invocation.
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 two-parameter, read-only, idempotent tool with an output schema, the description provides everything an agent needs: when to call it, its return object, and an example. No critical operational detail 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?
Schema description coverage is 100%, so the schema already documents both parameters. The description adds a concrete example of the intent parameter, but it does not materially expand on the schema's parameter descriptions.
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 '[GUARD / RISK CHECK]' and states a specific verb and resource: it checks risk level before high-risk operations and matches agent intent against lesson triggers. This clearly distinguishes it from sibling tools like misakanet_search or misakanet_write_lesson, which have different purposes.
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 explicit use-before scenarios ('RAG builds, WSL/GPU tasks, bulk imports, or any operation that might fail') and says it is safe to call multiple times. It does not explicitly state when not to use it or name alternatives, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
misakanet_registerAInspect
[ONBOARDING] Register a new agent node and get a token for authenticated access. Call this first when you have no token; the returned Bearer token unlocks misakanet_write_lesson and higher rate limits on other tools. No GitHub account or email needed. Token lifetime: valid ~30 days (no auto-renew) — call misakanet_register again to rotate or refresh. Each call creates a new node, so register once per agent. Returns: object {node_id: string, token: string, registered_at: string, agent_type: string} — the node id and its Bearer token. Example: misakanet_register(agent_type='claude-code')
| Name | Required | Description | Default |
|---|---|---|---|
| agent_type | Yes | Agent type (e.g. claude-code, codex, cursor, dsh, other) |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | |
| token | No | |
| node_id | No | |
| agent_type | No | |
| registered_at | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already flag readOnlyHint=false and idempotentHint=false, and the description reinforces this with concrete detail: each call creates a new node, the token is valid ~30 days with no auto-renew, and no GitHub/email is required. It adds auth, rotation, and side-effect context well beyond what the structured annotations carry.
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 on the longer side, but every sentence is functional: purpose, when to call, token lifetime, side-effect warning, return shape, and an example. It is front-loaded with [ONBOARDING] and the purpose statement; the only slight redundancy is restating the return object that the output schema presumably covers.
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 one-parameter tool with an output schema and annotations, the description covers everything an agent needs to call it correctly: purpose, preconditions, token propagation, lifetime, re-registration behavior, and a worked example. Nothing material 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?
Schema coverage is 100% — agent_type is already described with examples (claude-code, codex, cursor, dsh, other). The description's example call adds only a minor demonstration of invocation syntax, so it stays at the baseline of 3 rather than earning uplift.
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 states a specific verb and resource — "Register a new agent node and get a token for authenticated access" — and the [ONBOARDING] prefix plus "Call this first when you have no token" clearly position it as the access-granting first step. It is cleanly distinguishable from sibling tools, none of which register nodes or issue tokens.
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?
Gives explicit when-to-use guidance (when you have no token), what it unlocks (misakanet_write_lesson, higher rate limits), and explicit exclusions ("call ... again to rotate or refresh"; "Each call creates a new node, so register once per agent"). The 30-day lifetime and no-auto-renew warning leave nothing to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
misakanet_searchARead-onlyIdempotentInspect
[RETRIEVAL / READ] Search MisakaNet's public failure-lesson index by error text, keyword, or topic. This is the primary read path — run it first when you hit an error, before deciding to submit anything. For a known lesson ID or path, prefer misakanet_get_lesson — it skips ranking and returns the full content. detail controls progressive disclosure: compact (default, ~80 tok/lesson) for broad scans, summary (~200 tok) adds domain/tags/fix, full returns complete lesson data. FAQ: results may also include answered questions (type="faq", issue_url + answer) — if a maintainer already answered the same question, the answer surfaces here. Returns: object {results: [{id, title, domain, tags, path, description, score}], source, detail, query}; on no match: {no_match: true, suggestion, intake}. Example: misakanet_search(query='pip install timeout', domain='python', top=3)
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | Maximum ranked results to return. Defaults to 5; keep small for MCP context and latency. | |
| kind | No | Filter by kind: 'lessons' (lesson files only), 'evidence' (results with evidence_refs or verification), 'related' (cross-referenced/tag-overlap), 'all' (default). Auto-detected from query intent when omitted. | |
| query | Yes | Required redacted error message, keyword, or topic (e.g. 'pip install timeout' or 'DCO sign-off failed'). | |
| detail | No | Progressive disclosure: compact (default, ~80 tok) includes id/title/problem/freshness; summary (~200 tok) adds domain/tags/fix; full returns complete lesson data with path. | |
| domain | No | Optional domain filter such as devops, python, network, feishu, rag, fanuc, or mcp. | |
| bm25_weight | No | Override BM25 keyword weight (0-1). Higher favors exact keyword match. Default: 0.65. All weights must sum to 1.0. | |
| baseline_weight | No | Override baseline score weight (0-1). Higher favors proven/popular lessons. Default: 0.15. | |
| metadata_weight | No | Override metadata bonus weight (0-1). Higher favors matching domain/tags. Default: 0.20. |
Output Schema
| Name | Required | Description |
|---|---|---|
| query | No | |
| detail | No | |
| intake | No | |
| source | No | |
| results | No | |
| no_match | No | |
| suggestion | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so safety is covered. The description adds substantial behavioral context beyond that: progressive disclosure through detail levels, the exact return object shape, the no-match fallback with suggestion and intake, and FAQ results surfacing. This richly describes what the agent should expect from the call.
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 front-loaded with the core purpose and primary-use directive, then moves logically through alternatives, detail behavior, FAQ caveat, return shape, and a practical example. Every sentence earns its place; nothing is redundant or 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?
For an 8-parameter search tool with an output schema and safety annotations, the description covers the complete call context: when to use it, what data it returns, what happens on no match, how detail scaling works, and a concrete invocation example. Nothing needed for correct selection and 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?
Schema description coverage is 100%, so the baseline is 3. The description adds extra meaning by expanding on what each detail level returns (~80 tok vs ~200 tok vs full), giving a concrete query example, and clarifying that top should be kept small for MCP context and latency. That is meaningful value beyond the schema, though not essential because the schema is already strong.
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-resource pair: 'Search MisakaNet's public failure-lesson index by error text, keyword, or topic.' It also explicitly differentiates from the sibling misakanet_get_lesson, telling the agent to prefer that tool for known lesson IDs. This makes the tool's scope unmistakable.
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 direct routing guidance: 'run it first when you hit an error, before deciding to submit anything' and 'For a known lesson ID or path, prefer misakanet_get_lesson.' It also explains when FAQ results may appear, which helps the agent interpret unexpected result types. This is explicit 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.
misakanet_submit_intakeAInspect
[OPEN TRIAGE / INTAKE] Use misakanet_submit_intake when you only have a partial failure description or want to ask a question; use misakanet_write_lesson (Bearer required) once you already have structured title/domain/problem/root_cause/fix. submit_intake is open, rate-limited, no Bearer — output is a GitHub issue (intake,mcp-intake,pending-review) for maintainer triage, NOT a merged lesson. Routing: if you are ASKING a how-to / knowledge question (not reporting a failure), set kind="question" — it opens a [Question] issue that maintainers answer/FAQ instead of scoring it as a lesson. If kind is omitted, the server auto-detects question-shaped content (no error/fix/verification + question phrasing). Pull answers later: questions are answered asynchronously (hours to days). Re-call this tool with the SAME problem text later — the dedup response returns the maintainer's answer once it exists ({answered:true, answer}); or re-run misakanet_search on the topic for FAQ hits. Returns: object {submitted: boolean, intake_id, status, redactions_applied, quality_score, receipt, routing:{kind, auto_detected}, follow_up?}; duplicates: {submitted: false, duplicate: true, previous_issue} or {answered: true, answer} for answered questions. Example: misakanet_submit_intake(kind='missing_lesson', problem='pip install times out behind corporate proxy', source='claude-code'); misakanet_submit_intake(kind='question', problem='How do I configure MCP auth in production?', source='claude-code')
| Name | Required | Description | Default |
|---|---|---|---|
| fix | No | Optional: how it was resolved. | |
| kind | No | missing_lesson (knowledge gap), stale_lesson (outdated lesson), new_lesson_candidate (new failure mode), or question (ask for help). | |
| error | No | Optional: short error message (auto-redacted). | |
| source | No | Calling client: codex, claude-code, cursor, dsh, curl, or other. | |
| problem | Yes | Required: short description of the failure, gap, or question (max 2000 chars). | |
| what_tried | No | Optional: what was attempted. | |
| verification | No | Optional: how to confirm the fix works. | |
| matched_lesson_id | No | Optional: lesson ID that was checked but didn't help. |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| error | No | |
| answer | No | |
| status | No | |
| pending | No | |
| receipt | No | |
| routing | No | |
| answered | No | |
| duplicate | No | |
| follow_up | No | |
| intake_id | No | |
| issue_url | No | |
| submitted | No | |
| answer_url | No | |
| dedup_hash | No | |
| previous_issue | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes well beyond the minimal annotations by disclosing rate limits, no-Bearer auth, GitHub-issue output, async answering, dedup behavior, and return-shape variants. It also explicitly states this is not a merged lesson, which is critical behavioral context for an intake tool.
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 longer than average, but nearly every section adds necessary operational detail: routing, auth, output semantics, dedup, and examples. It is front-loaded with the most important routing distinction and remains structured and readable despite its length.
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 tool is complex due to async behavior, dedup, and routing variants, and the description covers all of these comprehensively. It also includes return formats and examples, so an agent has enough context to invoke it correctly without needing separate documentation.
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%, so the baseline is 3. The description adds meaning by explaining the 'kind' parameter with a concrete example, showing how 'source' is used, and describing how 'problem' is used for dedup lookups. It does not need to restate every schema field.
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 states a specific verb and resource ('submit_intake') and clearly differentiates it from misakanet_write_lesson by defining the exact input state (partial failure description vs. structured fields). It also names the output artifact (GitHub issue for triage, not a merged lesson), making the tool's role 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 gives explicit routing criteria: use this tool for partial failures, questions, or asynchronous follow-ups, and use misakanet_write_lesson once structured data exists. It also explains the 'question' kind and the auto-detection fallback, providing 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.
misakanet_write_lessonAInspect
[STRUCTURED COMMIT / VALIDATED SUBMISSION] Submit a complete, structured failure lesson (title/domain/problem/root_cause/fix) as a formal submission. Requires authentication (Bearer token in header) — this is the 'validated author' path, not open triage. Output goes through lesson-gate/lint/review and becomes a versioned lesson in the git repo. For quick open reports when you only have a partial failure description, use misakanet_submit_intake instead (no Bearer). Lessons are immutable once merged — corrections go through a new intake/PR, so there is intentionally no misakanet_update_lesson/misakanet_delete_lesson. Returns: object {lesson_id: string, status: 'pending_review', quality_score: number}; or {submitted: false, error}. Example: misakanet_write_lesson(title='pip timeout behind proxy', domain='python', problem='...', root_cause='...', fix='...')
| Name | Required | Description | Default |
|---|---|---|---|
| fix | Yes | How to fix it (required). | |
| tags | No | Comma-separated tags. | |
| title | Yes | Short descriptive title. | |
| domain | Yes | Domain: devops, python, network, feishu, rag, fanuc, mcp, etc. | |
| source | No | Source: codex, claude-code, cursor, etc. | |
| problem | Yes | What failed (required). | |
| root_cause | Yes | Why it failed (required). | |
| verification | No | How to confirm the fix works. |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | |
| status | No | |
| lesson_id | No | |
| submitted | No | |
| quality_score | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the all-false annotations, the description discloses substantial behavior: required Bearer auth, lesson-gate/lint/review pipeline, git versioning, immutability after merge, intentional absence of update/delete, and the exact return shape. This is much richer behavioral context than annotations alone and nothing contradicts 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 dense but every clause earns its place: scope, auth requirement, pipeline behavior, sibling alternative, immutability constraint, return type, and example. The essential validation criteria are front-loaded and the prose is well structured.
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 write/submission tool with 8 parameters and a complex workflow, this description covers required fields, optional path selection, auth, post-submission processing, immutability, correction path, and return contract. Nothing an agent needs to call or reason about this tool 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?
Schema already documents all 8 parameters with clear descriptions, so the baseline is 3. The description adds a concrete invocation example with real values and groups title/domain/problem/root_cause/fix as the core complete-lesson fields, giving agents a model for how to populate them.
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 'Submit a complete, structured failure lesson' and names the exact resource and required fields (title/domain/problem/root_cause/fix). It positions the tool as the formal 'validated author' submission path and explicitly distinguishes it from the quick-intake sibling, so an agent can identify it accurately.
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 explicitly states when to use this tool (complete structured lesson, Bearer-token validated author) and when not to (partial failure description -> misakanet_submit_intake, no Bearer). It also explains the correction workflow via a new intake/PR because lessons are immutable, leaving no ambiguity about updating.
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.
1 tool update
- Changed
misakanet_search1 field changed- added
Input schema / properties / kindAdded value: +{ + "description": "Filter by kind: 'lessons' (lesson files only), 'evidence' (results with evidence_refs or verification), 'related' (cross-referenced/tag-overlap), 'all' (default). Auto-detected from query intent when omitted.", + "enum": [ + "all", + "lessons", + "evidence", + "related" + ], + "type": "string" +}
7 tool updates
- Changed
misakanet_get_lesson4 fields changed- added
Input schema / minPropertiesAdded value: +1 - changed
Input schema / properties / id / descriptionPrevious value: -"Lesson ID, usually the filename without .md, e.g. auto-merge-ci-pipeline."New value: +"Lesson ID, usually the filename without .md, e.g. auto-merge-ci-pipeline. Either id or path is required." - changed
Input schema / properties / path / descriptionPrevious value: -"Lesson path relative to the repository, e.g. lessons/core/auto-merge-ci-pipeline.md."New value: +"Lesson path relative to the repository, e.g. lessons/core/auto-merge-ci-pipeline.md. Either path or id is required." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "content": { + "type": "string" + }, + "error": { + "type": "string" + }, + "path": { + "type": "string" + } + }, + "type": "object" +}
- Changed
misakanet_me_events4 fields changed- added
Input schema / minPropertiesAdded value: +1 - changed
Input schema / properties / lesson_id / descriptionPrevious value: -"Lesson ID (filename stem), e.g. dco-auto-fix-workflow."New value: +"Lesson ID (filename stem), e.g. dco-auto-fix-workflow. Either lesson_id or lesson_path is required." - changed
Input schema / properties / lesson_path / descriptionPrevious value: -"Optional full path, e.g. lessons/core/dco-auto-fix-workflow.md."New value: +"Optional full path, e.g. lessons/core/dco-auto-fix-workflow.md. Either lesson_id or lesson_path is required." - changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "error": { + "type": "string" + }, + "events": { + "items": { + "properties": { + "count": { + "type": "number" + }, + "evidence_level": { + "type": "string" + }, + "queries": { + "items": { + "type": "string" + }, + "type": "array" + }, + "sources": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "evidence": { + "enum": [ + "E0", + "E3", + "E4" + ], + "type": "string" + }, + "lesson_id": { + "type": "string" + }, + "note": { + "type": "string" + } + }, + "type": "object" +}
- Changed
misakanet_preflight1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "error": { + "type": "string" + }, + "guards": { + "items": { + "type": "string" + }, + "type": "array" + }, + "intent": { + "type": "string" + }, + "matched_lessons": { + "items": { + "properties": { + "domain": { + "type": "string" + }, + "id": { + "type": "string" + }, + "relevance": { + "type": "number" + }, + "title": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "risk_level": { + "enum": [ + "low", + "medium", + "high" + ], + "type": "string" + } + }, + "type": "object" +}
- Changed
misakanet_register1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "agent_type": { + "type": "string" + }, + "error": { + "type": "string" + }, + "node_id": { + "type": "string" + }, + "registered_at": { + "type": "string" + }, + "token": { + "type": "string" + } + }, + "type": "object" +}
- Changed
misakanet_search1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "detail": { + "type": "string" + }, + "intake": { + "properties": { + "args": { + "type": "object" + }, + "tool": { + "type": "string" + } + }, + "type": "object" + }, + "no_match": { + "type": "boolean" + }, + "query": { + "type": "string" + }, + "results": { + "items": { + "properties": { + "answer": { + "type": "string" + }, + "description": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "type": "string" + }, + "issue_url": { + "type": "string" + }, + "path": { + "type": "string" + }, + "score": { + "type": "number" + }, + "tags": { + "items": { + "type": "string" + }, + "type": "array" + }, + "title": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "source": { + "type": "string" + }, + "suggestion": { + "type": "string" + } + }, + "type": "object" +}
- Changed
misakanet_submit_intake1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "answer": { + "type": "string" + }, + "answer_url": { + "type": "string" + }, + "answered": { + "type": "boolean" + }, + "dedup_hash": { + "type": "string" + }, + "duplicate": { + "type": "boolean" + }, + "error": { + "type": "string" + }, + "follow_up": { + "properties": { + "how": { + "type": "string" + }, + "intake_id": { + "type": "string" + }, + "issue_url": { + "type": "string" + } + }, + "type": "object" + }, + "intake_id": { + "type": "string" + }, + "issue_url": { + "type": "string" + }, + "note": { + "type": "string" + }, + "pending": { + "type": "boolean" + }, + "previous_issue": { + "type": "string" + }, + "receipt": { + "type": "string" + }, + "routing": { + "properties": { + "auto_detected": { + "type": "boolean" + }, + "kind": { + "type": "string" + }, + "note": { + "type": "string" + } + }, + "type": "object" + }, + "status": { + "type": "string" + }, + "submitted": { + "type": "boolean" + } + }, + "type": "object" +}
- Changed
misakanet_write_lesson1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "error": { + "type": "string" + }, + "lesson_id": { + "type": "string" + }, + "quality_score": { + "type": "number" + }, + "status": { + "type": "string" + }, + "submitted": { + "type": "boolean" + } + }, + "type": "object" +}
7 tool updates
- First observed
misakanet_get_lesson - First observed
misakanet_me_events - First observed
misakanet_preflight - First observed
misakanet_register - First observed
misakanet_search - First observed
misakanet_submit_intake - First observed
misakanet_write_lesson
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
Shared knowledge base for AI agents. Search and contribute solutions to technical problems.
Structured failure knowledge for AI agents — dead ends, workarounds, error chains
Structured knowledge base for AI agent solutions. Search, explore, and retrieve build logs.
Deterministic next-step decisions after failed API, MCP, automation, or AI-agent actions.
Related MCP Servers
- AlicenseAqualityAmaintenanceAgent failure memory network. Search 235+ verified debugging lessons from real engineering sessions. Includes guided prompts for failure triage and release auditing.90441Apache 2.0
- AlicenseAqualityAmaintenanceAutomatically provides AI agents with proven instructions and past failure warnings for common tasks like deployment, auth, and payments, enabling flawless execution without manual configuration.1081MIT
- AlicenseAqualityAmaintenanceHelps AI agents avoid repeating known failures by providing deterministic lookup of dead ends for coding errors and country-specific real-world rules.11MIT
- AlicenseNot gradedqualityBmaintenanceEnables agents to query a registry of documented AI-agent failures for debugging incidents, deployable on Cloudflare Workers.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a distinct role: retrieval (search/get_lesson), submission (submit_intake/write_lesson), evidence (me_events), risk preflight, and registration. The two submission tools are carefully differentiated by structure and auth requirements, so an agent should not confuse them.
All tools share the misakanet_ prefix and snake_case style, and most use a verb_noun pattern. Minor deviations like search, register, preflight, and me_events break the pattern slightly, but the names remain readable and predictable.
Seven tools is well-scoped for a failure-lesson registry: one onboarding tool, one guardrail, two read paths, two submission paths, and one evidence-check tool. No tool feels redundant or missing at a coarse level.
The lifecycle is covered end-to-end: register for access, search and get lessons, submit either partial intakes or structured lessons, preflight risky actions, and check reuse evidence. Update/delete are intentionally absent because lessons are immutable, and corrections route through intake, so there are no dead ends.