AgentRoots
AgentRoots MCP server provides tools for managing persistent, evidence-backed project state for AI agents, enabling them to share context, track goals, findings, and evidence across sessions and models. Key capabilities:
Propose records (
research_propose): Create new candidate records (hypotheses, findings, goals, experiments) with metadata and idempotency.Review records (
research_review): Apply lifecycle transitions (candidate → provisional → accepted, etc.) with governance enforcement like no self-acceptance.Link evidence (
research_link_evidence): Attach external URIs (e.g., MLflow runs) to records with optional content hashes and summaries.Get context (
research_get_context): Retrieve bounded context packets filtered by query and token budget.Get frontier (
research_get_frontier): View unresolved candidate and provisional work at the project's frontier.Search records (
research_query): Full-text search with fuzzy fallback for matching records.Get record (
research_get_record): Fetch a specific record with evidence, links, and revision history.Sync events (
research_sync): Import/export project events and audit packet usage.Validate project (
research_validate): Check SQLite integrity and governance invariants without mutation.
Provides a read-only adapter for MLflow, enabling agents to reference MLflow runs as evidence in research records.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AgentRootsPropose a finding that caching cut latency 12%, linking the MLflow run."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AgentRoots
Different agents. Same roots.
Evidence-governed continuity for agents that explore, build, and research together.
Built by Shanmukha Vellamcheti and OpenAI Codex.
Agents make exploration dramatically faster, but temporary contexts make useful work disposable. Files get reread, failed paths get repeated, facts blur, and every fresh agent must reconstruct the project's state. AgentRoots gives agents one durable, reviewed frontier instead.
Memory preserves experience. AgentRoots governs the frontier.

AgentRoots is an open-source Agent Continuity MCP for Codex, Claude, DeepSeek, and generic MCP clients. It preserves where a project came from, what is currently supported, and what should happen next, without replaying transcripts or duplicating large artifacts.
One agent can preserve useful state across sessions. Multiple agents can propose, review, and reuse the same findings. AgentRoots does not spawn, schedule, route, or execute agents.
See project state at a glance

This synthetic overview exercises all 14 record types and all 12 relationship types in the current contract. The human-readable graph is generated from the same versioned event ledger that agents query, making the complete project model inspectable without creating a second source of truth.
Related MCP server: trw-mcp
Why I built AgentRoots
My research requires exploring many hypotheses and experimental paths. Before coding agents, the number of experiments I could run manually was naturally limited. Agents changed that. They made hypothesis exploration and project-state growth dramatically faster, but they also created a new memory-management problem.
Modern agentic work increasingly depends on orchestrators and subagents for speed and cost efficiency. That can multiply duplicated work. If an orchestrator assigns two independent tasks in the same codebase, both subagents may reread the same files to understand the project, after the orchestrator already read them to make the plan. The same knowledge may be reconstructed three times. Across longer projects, context gets mixed, facts blur, failed paths are repeated, and the latest working frontier becomes difficult to recover.
Memory tools preserve experience. Planning tools preserve intent. Provenance tools preserve what ran and changed. AgentRoots connects those concerns as evidence-governed project state: what is the project's origin, what is currently accepted, what evidence supports it, what is stale or disputed, which goals remain active, and what questions or experiments should happen next. This lets agents across models and harnesses inherit a compact, grounded frontier, then verify only what their task requires instead of rebuilding the entire context from scratch.
I built AgentRoots because I needed agents to share more than memories. I needed them to inhabit the same evolving state, avoid duplicated exploration, and continue from the real frontier.
Why AgentRoots
AI agents are temporary. Their work should not be. AgentRoots preserves goals, questions, hypotheses, experiments, observations, findings, decisions, failures, and evidence across sessions, models, and harnesses.
Branches explore. Roots remember.
Quick start
python -m pip install "agentroots @ git+https://github.com/shanmukha-here/agentroots.git"
agentroots propose demo hypothesis "Caching helps" "Latency should fall." --actor codex
agentroots-mcpAgentRoots is not published to PyPI yet. Contributors cloning the repository can instead use
python -m pip install -e .. Python 3.11 or newer is required.
State defaults to the OS or XDG user data directory. Override it with AGENTROOTS_DB or
--db. The legacy RESEARCH_STATE_DB variable remains accepted for local migration. SQLite
runs in WAL mode. Generated state stays outside the repository.
MCP surface
Tools: research_get_context, research_get_frontier, research_query,
research_get_record, research_get_graph, research_propose, research_revise, research_review,
research_link_evidence, research_mlflow, research_sync, and research_validate.
Resources: project brief, project frontier, record, and context packet under the
research:// URI scheme. Protocol names remain research-specific because the initial ontology
models evidence-backed investigative work. AgentRoots branding covers its broader engineering,
research, and long-running agent uses.
Exact resource templates:
research://project/{project}/briefresearch://project/{project}/frontierresearch://record/{record_id}research://packet/{packet_id}
Example MCP argument shapes:
{"tool":"research_propose","arguments":{"project":"demo","record_type":"finding","title":"Cache result","body":"The cache reduced repeated reads by 12 percent in the measured workflow. The comparison used the same task fixture and code revision. This supports retaining the cache for subsequent trials. A replication should confirm the result on a larger repository.","creator":"codex"}}
{"tool":"research_review","arguments":{"record_id":"UUID","actor":"reviewer","verdict":"accepted","resolves_record_ids":["GOAL_UUID"]}}
{"tool":"research_link_evidence","arguments":{"record_id":"UUID","uri":"mlflow://runs/123","kind":"mlflow-run","actor":"reviewer","content_hash":"sha256-if-known"}}
{"tool":"research_get_context","arguments":{"project":"demo","query":"cache","token_budget":1500}}
{"tool":"research_mlflow","arguments":{"operation":"link","record_id":"UUID","run_id":"RUN_ID","actor":"reviewer","include_artifacts":true}}research_sync imports supplied events, exports current project events, and can mark packet
record IDs as used. CLI export and import provide file-based JSONL transfer.
CLI query text is positional. Run agentroots <command> --help for command-specific arguments:
agentroots context demo "cache latency" --tokens 1500
agentroots validate demo
agentroots export demo events.jsonl
agentroots graph demo project-map.htmlThe graph command creates a self-contained, read-only React Flow knowledge map. It works offline and supports automatic layouts, searching, lifecycle and type filters, pan and zoom, evidence inspection, version metadata, relationship tracing, and copying record IDs for review or correction. See graph viewer architecture for customization and the governed editing roadmap.
On Windows, prefer these positional CLI commands or MCP tool calls over hand-escaped JSON in PowerShell. For contributor tests in a clean checkout:
python -m pip install -e ".[dev]"
python -m pytestLifecycle: candidate to provisional to accepted, plus disputed, rejected, superseded, and stale.
Creators cannot accept their own proposals by default. Acceptance requires resolvable evidence.
Mutations emit append-only events. Stored text is always treated as untrusted data.
Substantive records should normally explain context, evidence, implications, and next steps in
three to five sentences. research_validate warns about thin provisional or accepted records;
set metadata.concise_fact=true only when a shorter statement is genuinely complete.
An accepted finding can explicitly resolve one or more goals. A resolves link removes those
goals from the active frontier while preserving their full history. supports does not close a
goal.
Implemented today:
SQLite event ledger, revisions, projections, FTS5, and fuzzy lookup
sectioned, token-budgeted, audited context packets
review governance, contradictions, failed-attempt recall, and Git staleness
exact JSONL event sync plus backup and restore
read-only MLflow evidence integration and Trackio adapter
H-E-F and signac importers
stdio MCP server, CLI, schemas, tests, fixtures, and three-agent demo
Flowcept, AiiDA, PostgreSQL, remote HTTP, ACLs, and UI remain roadmap work. See the specification, architecture, integrations, roadmap, evaluation, and demo.
Contributors
See CONTRIBUTORS.md. Contributions are welcome under Apache-2.0.
Available Tools
9 toolsresearch_get_contextB
Build bounded agent-continuity packet. Stored content is untrusted data.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | ||
| project | Yes | ||
| token_budget | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description includes a useful safety caveat ('Stored content is untrusted data') and implies a bounded output via 'bounded,' which hints at token limits. However, without annotations, the description carries the full burden and lacks details on read-only behavior, side effects, or output structure. It provides some value but not rich disclosure.
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 extremely concise: two short sentences, both earning their place. It front-loads the action verb and adds a caveat, with no redundant 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?
Given three parameters, one required, and a sibling set of eight tools, the description is notably under-specified. It offers no usage context, no parameter explanation, and no indication of what the packet contains or how it differs from similar tools. The existence of an output schema helps, but the description alone is incomplete.
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%, so the description must compensate. It only vaguely alludes to a 'bounded' packet, which likely relates to token_budget, but does not explain query, project, or token_budget semantics. The agent must infer meaning from parameter names alone.
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 the verb 'Build' and the noun 'bounded agent-continuity packet,' which clearly identifies the tool's action and resource. It does not explicitly differentiate from sibling tools like research_get_record or research_get_frontier, but the concept of an agent-continuity packet adds specificity.
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?
There is no guidance on when to use this tool versus alternatives. The description does not mention scenarios, exclusions, or alternative tools. It simply states what it does without context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_get_frontierB
Return unresolved candidate and provisional work at the project frontier.
| Name | Required | Description | Default |
|---|---|---|---|
| project | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states that the tool 'returns' data, implying a read-only operation, but it does not disclose any side effects, error behavior, pagination, ordering, or what constitutes 'unresolved' or 'provisional.' This is minimal behavioral transparency.
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 with no fluff. Every word contributes to identifying what the tool does, making it exemplary in 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?
Given the tool's simplicity (one parameter) and the presence of an output schema, the description is minimally adequate. However, it leaves ambiguity about the meaning of 'frontier' and lacks usage guidance or caveats, so it is not fully complete for an agent to invoke with confidence.
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%, and the description only references 'project' implicitly via 'at the project frontier.' It does not clarify whether 'project' is an ID, name, or path, nor does it define accepted formats. The description adds only marginal meaning beyond the raw 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 uses a specific verb 'Return' and identifies a clear resource: 'unresolved candidate and provisional work at the project frontier.' This distinguishes it from sibling tools like research_get_context and research_get_record, though it does not explicitly name alternatives.
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 phrase 'at the project frontier' implies when to use this tool (retrieving pending work), but it provides no explicit guidance on when not to use it or which alternative might be better for other scenarios. Thus, usage is implied but not explicitly directed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_get_recordA
Return one current record with evidence, links, and revision history.
| Name | Required | Description | Default |
|---|---|---|---|
| record_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It adds context by specifying 'current record' (implying latest version) and enumerates return contents, but it does not disclose behavior for missing IDs, error cases, or side effects. Some transparency is present, but it is limited.
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 that directly states the tool's purpose and scope. It contains no fluff and is appropriately 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?
The tool is simple with one parameter and an output schema. The description adequately conveys the core behavior (returning one current record with certain contents) and benefits from the existence of an output schema. It omits edge cases or usage context, but given the low complexity, this is acceptable.
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%, and the description does not mention the record_id parameter or explain how to identify the record. The parameter name is self-explanatory, but the description adds no additional semantics or usage guidance, failing to compensate for the lack of schema 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 ('Return') and resource ('one current record') and lists included content (evidence, links, revision history). This clearly distinguishes it from sibling tools like research_get_context or research_query.
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 when to choose this over research_query or research_get_context, nor any exclusions or alternative tool names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_link_evidenceB
Attach an external evidence URI, optional hash, and compact summary to a record.
| Name | Required | Description | Default |
|---|---|---|---|
| uri | Yes | ||
| kind | Yes | ||
| actor | Yes | ||
| summary | No | ||
| metadata | No | ||
| record_id | Yes | ||
| content_hash | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must disclose side effects and constraints. It only states that evidence is attached, but doesn't say whether the record must already exist, whether attachments are appended or replaced, or what response/errors to expect.
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 with no filler or repetition. It communicates the core action efficiently.
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 mutation tool with seven parameters and no annotations, one sentence is insufficient. It lacks parameter semantics for kind/actor, usage context, and behavioral details like idempotency or validation, even though an output schema exists.
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 needed to explain all seven parameters. It adds meaning for uri, content_hash ('optional hash'), and summary ('compact summary'), but leaves required fields kind and actor undefined, and record_id is only implicit.
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 ('Attach') and names the resource ('external evidence URI...to a record'), which clearly distinguishes it from the read/query/sync siblings. It is unambiguous about the tool's core 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?
No guidance is provided about when to use this tool versus alternatives such as research_validate or research_propose. There is no mention of prerequisites, exclusions, or typical scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_proposeA
Create an untrusted candidate record. This never executes stored text.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | ||
| mode | No | exploratory | |
| title | Yes | ||
| creator | Yes | ||
| project | Yes | ||
| metadata | No | ||
| record_type | Yes | ||
| idempotency_key | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses a critical safety behavior: 'This never executes stored text.' This is valuable beyond the schema and addresses a common security concern for storing untrusted content. However, it doesn't mention other behaviors like idempotency, permissions, or return details.
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 short sentences, front-loading the core purpose and adding the safety note. It is concise and appropriately sized for a simple creation tool, with no wasted 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?
With 8 parameters, 5 required, and no parameter explanations, the description is incomplete for a tool of this complexity. It gives the core purpose and a safety guarantee, but lacks context on how to use the parameters, what 'untrusted' implies for processing, or when to set mode. The presence of an output schema helps slightly, but the description alone is not enough.
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%, and the description provides no explanation of any of the 8 parameters (e.g., mode, metadata, idempotency_key). The parameter names are self-explanatory to some degree, but the description adds no value for understanding how to fill them correctly.
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 action ('Create') and the object ('an untrusted candidate record'), which is a specific resource type. This distinguishes it from sibling tools like get_record, query, and sync, which are read/validate operations.
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 the tool is for creating a new candidate record, but it provides no explicit guidance on when to use it versus alternatives, nor any exclusions. The distinction from siblings is implicit based on the verb 'create'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_queryB
Search current project records with FTS5 and fuzzy typo fallback.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| project | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden for behavioral disclosure. It discloses the use of FTS5 and fuzzy typo fallback, which is helpful context, but it does not mention read-only nature, pagination, or error behavior, which are relevant for a query 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 a single sentence that immediately states the core action and key differentiator (FTS5/fuzzy fallback). It is concise and front-loaded with the most important 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?
The presence of an output schema removes the need to describe return values, but the description is still thin for a 3-parameter search tool. It lacks detail on query syntax, fuzzy fallback behavior, or result limiting, though the schema covers parameters.
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 schema has no parameter descriptions (0% coverage), and the description only indirectly references 'query' and 'project' through 'Search current project records'. The 'limit' parameter is completely unexplained, so the description does not compensate for the schema gap.
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 the specific verb 'search' and identifies the resource as 'current project records'. It differentiates from sibling tools like research_get_record by mentioning FTS5 and fuzzy typo fallback, making its purpose clear.
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. The description only states what it does, with no mention of exclusions, prerequisites, or alternative tools, leaving the AI to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_reviewC
Apply lifecycle review. Creators cannot self-accept; acceptance needs evidence.
| Name | Required | Description | Default |
|---|---|---|---|
| actor | Yes | ||
| comment | No | ||
| verdict | Yes | ||
| record_id | Yes | ||
| expected_revision | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility for disclosing behavior. It reveals a key constraint (creators cannot self-accept; acceptance needs evidence) but does not state whether the tool mutates state, requires specific permissions, or what side effects occur. This leaves critical behavioral traits undisclosed for a review action.
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 short sentences with no redundant wording. The first sentence states the primary action, and the second adds a valuable constraint. It is concise and front-loaded, though the first sentence could have been more specific without losing brevity.
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 has 5 parameters, an output schema, and is part of a family of research tools with distinct workflow roles. The minimal description does not explain how this review fits into the lifecycle, what the parameters mean, or what the output schema represents, leaving significant gaps for an agent to use 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 description coverage is 0%, so the description must compensate by explaining the 5 parameters. It only implicitly touches on actor and verdict via the self-accept rule, but record_id, comment, and expected_revision are not explained. The description fails to add meaning beyond the raw schema for most parameters.
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 identifies the action ('Apply lifecycle review') and a resource (review), and adds a specific rule about self-acceptance and evidence. However, it does not explicitly distinguish from sibling tools like research_validate, and 'lifecycle review' is somewhat jargon-heavy without further context.
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 no explicit guidance on when to use this tool versus alternatives such as research_validate or research_propose. The rule about creators and evidence is a policy constraint, not a usage direction, and there is no mention of when not to use the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_syncC
Import events, export project events, and optionally audit packet records used.
| Name | Required | Description | Default |
|---|---|---|---|
| events | No | ||
| project | Yes | ||
| packet_id | No | ||
| used_record_ids | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosing side effects. It states actions like 'import' and 'export' but does not clarify whether these modify data, require specific permissions, or have other behavioral implications. The phrase 'optionally audit' is undefined, leaving the tool's behavior largely opaque.
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 short sentence, which is concise, but its structure is disjointed—listing three actions without clear separation or emphasis. The phrase 'and optionally' adds confusion about whether audit is a separate mode or a modifier. It is not well-organized given the multi-part functionality.
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?
Although an output schema exists, the description does not explain how the tool's multiple modes are invoked or what inputs are required for each. For a tool with two primary directions (import/export) and an audit option, the description omits critical context about parameter combinations and expected outcomes, leaving it incomplete.
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%, so the description must compensate for the four undocumented parameters. It loosely maps to parameters (events, project, packet_id, used_record_ids) but does not explain their formats, defaults, or how they control the import/export/audit modes. This is insufficient for a 4-parameter tool.
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 lists three actions: import events, export project events, and optionally audit packet records. While each action has a verb and resource, the overall purpose is vague because it's unclear how these actions relate or when each is intended to be performed. It does not clearly distinguish itself from sibling tools beyond the name 'sync'.
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?
There is no guidance on when to use this tool versus alternatives. The description does not mention any prerequisites, exclusions, or comparisons to sibling tools like research_query or research_validate. Users are left to infer usage context on their own.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_validateA
Check SQLite integrity and project governance invariants without mutation.
| Name | Required | Description | Default |
|---|---|---|---|
| project | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explicitly states 'without mutation', which is a key behavioral trait, but with no annotations provided, it carries full burden. It does not disclose error behavior, prerequisites, or potential side effects like locking or resource usage. This provides some value but lacks depth.
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, succinct sentence that is front-loaded with the core action. Every word contributes to the meaning, with no filler or redundant content.
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 has a simple interface with one parameter and an output schema, so return values are covered. However, the description lacks guidance on the 'project' parameter and when to use validation, making it minimally adequate but with clear gaps.
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 input schema only defines a single 'project' string parameter with no description, and the tool description does not explain what 'project' refers to or how it should be formatted. With 0% schema description coverage, the description should compensate but fails to add meaning to the parameter.
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 checks SQLite integrity and project governance invariants, using the specific verb 'Check' and identifying a distinct resource. This distinguishes it from sibling tools like research_query or research_get_record, which are for retrieval or mutation.
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 the tool is used for validation tasks, but it does not explicitly state when to use it over alternatives or provide exclusion criteria. There is no mention of related tools or conditions, leaving usage guidance only implicit.
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.
9 tool updates
v0.1.0- First observed
research_get_context - First observed
research_get_frontier - First observed
research_get_record - First observed
research_link_evidence - First observed
research_propose - First observed
research_query - First observed
research_review - First observed
research_sync - First observed
research_validate
TDQS
Scored across 9 tools
Each tool has a distinct purpose: context retrieval, frontier scanning, querying, record fetching, validation, proposal creation, lifecycle review, evidence linking, and synchronization. There is no overlap or ambiguity between tool functions.
All tools consistently use the 'research_' prefix with a clear verb_noun pattern (e.g., get_context, link_evidence, validate). The naming is uniform, predictable, and follows a standard convention.
Nine tools is well-scoped for a research project management server, covering the core lifecycle without redundancies. The number falls comfortably within the ideal range and each tool serves a necessary function.
The toolset covers creation (propose), lifecycle management (review), evidence linking, querying, validation, and sync, which addresses the main workflows. However, there is no explicit update or delete tool, so direct modification of record content is not exposed; the review and propose tools may handle this indirectly via versioning.
Maintenance
Related MCP Connectors
- WauldoOAuthcom.wauldo
Stateless agentic tools over MCP: concept extraction, long-context, knowledge graph, planning.
Graph-native persistent memory for AI agents — 33 MCP tools, zero-LLM writes.
An agent-native database over MCP: shared, validated, structured records in every AI chat.
Shared, peer-validated knowledge archive for AI agents — search, contribute, and validate via MCP
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceAn MCP server that lets coding agents build and query a persistent knowledge graph of concepts, architecture, and decisions, enabling them to remember across sessions.211 npm556MIT
- AlicenseBqualityBmaintenanceMCP server providing persistent engineering memory and spec-driven development workflows for AI coding agents, preserving learnings across sessions.41268 PyPIBusiness Source 1.1
- AlicenseAqualityCmaintenanceMCP server for long-term agent memory, providing persistent memory, searchable knowledge, and evolving identity for AI agents.53Apache 2.0
- FlicenseNot gradedqualityDmaintenanceShared memory and orchestration for coding agents, enabling persistent knowledge, multi-agent coordination, and a canonical workflow across MCP-compatible AI clients.20 npm110-