coherra
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation4/5
Each tool targets a distinct operation: remember, recall, list, audit, repair, batch repair, and import. The only possible confusion is between coherra_repair and coherra_repair_safe, but their descriptions clearly separate single-issue repair from batch auto-repair.
Naming Consistency4/5All tools share the coherra_ prefix and use snake_case with a verb-oriented style. The naming is mostly consistent, though coherra_repair_safe and coherra_onboard are slightly less parallel than simple verb_noun forms.
Tool Count5/5Seven tools is a well-scoped count for a memory management server. Each tool serves a clear purpose, covering storage, retrieval, listing, auditing, repair, batch repair, and importing without unnecessary bloat.
Completeness3/5The set covers create, read, list, audit, repair, and import workflows, but there is no direct update or delete tool. Agents must work around this by using remember to overwrite or repair actions to archive, which is a notable gap in standard CRUD coverage.
Average 4.4/5 across 7 of 7 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 3 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior4/5
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 does so clearly: each action states whether it archives, refreshes, or writes a new canonical entity, and phrases like 'forget the entity' convey destructiveness. It also documents the return tuple. Minor gaps remain around irreversibility and permissions, but the essential behavior is transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (Actions by severity, Args, Returns) and front-loads the purpose sentence. The action list is necessary detail rather than filler. It is somewhat long, but every section earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a three-parameter mutation tool, the description covers input provenance, action semantics, conditional value requirements, and return shape. The primary gap is the lack of guidance for choosing this tool over coherra_repair_safe, but an agent has enough detail to invoke it correctly for a given audit issue.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema is effectively bare (0% description coverage), so the description compensates completely: issue_id is detailed as a 10-char hex id from the audit list, action is mapped to severity-specific allowed values, and value is conditionally required for contradiction/merge_manual. This is exemplary beyond-schema parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Apply one repair to a flagged issue from the last audit.' This clearly identifies the tool's function and distinguishes it from the read/list/audit siblings. It does not explicitly differentiate from the sibling coherra_repair_safe, but the core purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied rather than explicit: it specifies that issue_id comes from the coherra_audit issues_found list and enumerates allowed actions by severity. However, it does not state when to use coherra_repair over coherra_repair_safe, nor give any exclusions or alternative conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral burden by itself. It does add some transparency: it states that the tool wraps memory_remember, enforces a versioned body shape for uniformity/auditability, and returns a success dict. However, it does not disclose what happens on duplicate category/name (overwrite vs error), effect on existing memory, or any permission/rate-limit constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, followed by a compact one-line implementation note, a structured Args list, and a Returns line. Every section carries information; there is no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The five parameters are fully explained, and the return shape is stated. The main gap is lack of guidance on duplicates or failure modes, which could matter for a memory-write tool. However, the presence of an output schema softens the return-value burden, and the description is largely sufficient for successful invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description's Args section fully compensates. It gives logical grouping examples, unique-within-category semantics for name, JSON-serializable requirement for value, a 0.0–1.0 range for confidence, and provenance examples for source. This goes beyond the raw schema types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-resource pair: 'Store a structured fact in Sibyl Memory using Coherra's schema.' This clearly distinguishes the write operation from retrieval siblings like coherra_recall and coherra_list, and the mention of a versioned body shape adds precision.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for persisting facts but never explicitly states when to choose it over siblings or when not to use it. There is no exclusionary guidance (e.g., 'use coherra_recall to read'), so the agent must infer usage from the verb 'Store' and the sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden, and it delivers: it discloses the complete return payload (value, confidence, source, created_at, updated_at, version), the exact return envelope, and the NOT_FOUND error condition. The read-only nature is implied by 'Fetch' rather than stated outright, and no auth or side-effect information is given, but for a simple recall tool the disclosed error and return behavior is substantive and above average.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (purpose, return body, error case, args, returns) and front-loads the core purpose. The Returns JSON block is slightly redundant given an output schema exists, and the return body is described twice, but the overall length is justified and no sentence is wasteful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 2-parameter fetch tool, this is nearly complete: purpose, parameter semantics, return shape, and error behavior are all covered. Minor gaps exist — it doesn't state the dependency on coherra_remember (entities must be stored before recall succeeds) or explicitly confirm the operation is non-mutating — but nothing critical is missing for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must fully compensate, and it does. 'category: The category the entity was stored under' and 'name: The unique-within-category key' add real relational semantics — the agent learns that uniqueness is scoped within category, which is essential for correct use and is not derivable from the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource statement: 'Fetch a single Coherra entity by (category, name).' The word 'single' plus the exact lookup key clearly differentiates it from siblings like coherra_list (listing) and coherra_remember (storing). An agent can tell this is the point-read tool without opening any sibling schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage context is implied by the phrasing — fetch one known entity by exact key — and the NOT_FOUND error behavior tells the agent what happens when the key is absent. However, the description never explicitly names alternatives (e.g., 'use coherra_list to browse entities' or 'use coherra_remember to store first'), so the when-to-use vs. when-not-to-use guidance is left to inference rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It covers side effects well: writes to Sibyl Memory, auto-repairs duplicates and stale entries, and flags contradictions for manual review. It does not mention reversibility or permission requirements, but the pipeline description is substantially transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with an opening summary, a numbered pipeline, an Args section, and a Returns example. It is detailed without being redundant and front-loads the core purpose. The format makes the behavior easy to parse for an agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity, the lack of annotations, and the minimal input schema, the description covers the essential aspects: accepted inputs, processing steps, and the return contract. It could be more complete with error behavior or a concrete example, but it is sufficiently informative for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate for the schema's minimal 'import_data: object' definition. It does so by enumerating accepted forms: flat dicts, nested dicts, lists of dicts, and lists of strings. It adds real semantic meaning beyond the schema, though it stops short of providing an explicit example.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Import JSON data from another tool into Coherra.' It then names a concrete pipeline with six steps, making its role distinct from sibling tools like audit, repair, or remember. This is a clear, differentiated purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use the tool: when bringing JSON exports from another tool into Coherra, and the pipeline steps show it is the onboarding entry point. It does not explicitly state when not to use it or name alternatives, but the context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It states ordering (most-recently-updated first), the contents of each result (structured body with value, confidence, source, timestamps), the default and maximum limit, and the exact return shape. This goes well beyond a basic 'list' claim and gives the agent realistic expectations for the operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and efficient: a one-line purpose, a sentence on ordering and result richness, then compact Args and Returns sections. Every sentence adds relevant information, and the structure is easy to scan. There is no filler or repeated schema data.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a two-optional-parameter list tool, the description covers purpose, filtering behavior, ordering, result contents, defaults, limits, and return format. The agent has everything needed to select and invoke this tool correctly, including how its results avoid the need for a separate recall call. 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.
Parameters5/5Does 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 schema's lack of property descriptions. The Args section fully documents both parameters: category is optional and omittable, limit has a default of 50 and max of 200. The return section also describes the output keys, making parameter and result semantics complete despite the sparse schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'List entities managed by Coherra', immediately distinguishing it from the sibling tools (remember, recall, audit, repair, onboard). The optional category filter and the explicit mention that results are ordered most-recently-updated-first add precise scope. This is a clear, non-tautological statement of purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The comment 'without a separate recall call' implicitly tells the agent that this tool can replace coherra_recall for inspecting full entity bodies, giving some usage context. However, there is no explicit when-to-use or when-not-to-use guidance against the other sibling tools, and no exclusion of cases like needing a single entity vs. a list. The guidance is implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and fully meets it: it lists all side-effects (seeding coherra:config, writing to coherra:last_audit, appending a journal event) and defines each drift class precisely. It also discloses the return shape, so an agent knows exactly what will change and what will come back.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a one-sentence summary, then uses tight bullets for drift classes, side-effects, and return fields. Every line earns its place and the structure makes the long content scannable for an agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with no annotations, the description is complete: it explains what is scanned, what counts as an issue, what side-effects occur, and what the response contains. Nothing needed to invoke the tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and schema coverage is 100%, so there is no parameter ambiguity to resolve. Per the 0-parameter baseline, this dimension is satisfied without needing extra explanation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Run a full Coherra memory audit') and names the exact resource (Sibyl Memory) with three concrete drift categories. This makes the tool clearly distinct from siblings like coherra_repair, coherra_recall, and coherra_list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description establishes clear context: this is the diagnostic tool for detecting contradiction, duplicate, and stale entries across all entities. It does not explicitly name when-not-to-use or point to coherra_repair, but the audit-vs-repair distinction is strongly implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully carries the behavioral disclosure burden. It explains exactly what gets auto-applied (stale → archive, duplicate → merge), explicitly warns that contradictions are never auto-resolved, and provides the return shape. The tool's mutating behavior is transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-structured, with a front-loaded summary sentence, bulleted behavior details, an explicit exclusion, and a return format. Every sentence adds value with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool, this is complete: it names the source of repairs, defines what counts as safe, identifies the boundary case, and documents the return value. Since an output schema exists, the description does not need to further detail result fields.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. There is no parameter information to add, and the description appropriately focuses on the implicit state input ('the last audit') rather than parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb-resource pairing: 'Batch-apply all safe repairs from the last audit.' It clearly distinguishes this tool from coherra_repair by stating that contradictions are never auto-resolved and require the manual repair tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states what this tool handles (safe repairs: stale and duplicate) and what it does not handle (contradictions), directing the agent to coherra_repair with keep_a / keep_b / merge_manual for those cases. This gives 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.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Steve2009729/coherra'
If you have feedback or need assistance with the MCP directory API, please join our Discord server