ComputeLedger MCP Server
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool has a clearly distinct purpose: record_usage creates a new receipt, verify_receipt checks a single receipt, list_ledger lists all receipts, and verify_ledger audits the entire chain. Descriptions explicitly cross-reference when to use which, leaving no ambiguity.
Naming Consistency5/5All four tool names follow the same verb_noun pattern: record_usage, verify_receipt, list_ledger, verify_ledger. The verbs (record, verify, list, verify) and nouns (usage, receipt, ledger) are consistently used and intuitive.
Tool Count5/5Four tools is ideal for a focused compute-ledger server: one for creating records, one for verifying individual receipts, one for listing history, and one for full-chain audit. There is no bloat or redundancy; each tool earns its place.
Completeness5/5The tool set covers the entire lifecycle of compute-usage receipts: recording, single-receipt verification, listing, and whole-ledger integrity verification. The only missing piece (key generation) is handled externally via CLI, which is outside the server's scope, so the MCP surface is complete.
Average 4.9/5 across 4 of 4 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 27 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under Apache 2.0.
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.
This server has been verified by its author.
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
- 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 does an excellent job. It discloses side effects ('read-only, no ledger writes, no file access beyond the in-memory argument, no network calls'), idempotency, and error behavior ('never raises on an invalid receipt, instead returns a normal result with is_error=true'). This far exceeds typical transparency.
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 front-loaded, moving from purpose to usage to side effects to error handling to parameters/returns. Every sentence carries essential information, and the formatting with separate paragraphs improves readability. It is comprehensive without being verbose.
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?
Given there is no output schema and only one parameter, the description must explain return values and error handling fully. It does so with explicit success/failure shapes and reason codes ('invalid_signature|hash_mismatch|unsupported_version|malformed_receipt'). It also covers prerequisites, side effects, and idempotency, making it complete for a fairly simple but security-relevant tool.
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 100% for the single receipt parameter, but the description enriches it significantly by specifying 'must include version, hash, signature, and the other receipt fields' and identifying it as the output of record_usage or the CLI. This adds structural expectations beyond the schema's generic object type, making the parameter's usage clearer.
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 begins with 'Independently checks whether a single signed ComputeLedger receipt is authentic and untampered' which clearly states a specific verb, resource, and scope. It distinguishes from siblings by focusing on a single receipt, contrasting with verify_ledger's likely whole-ledger scope.
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?
It explicitly says 'Call this whenever you're handed a receipt... and need to confirm it's cryptographically valid before trusting the usage numbers inside it.' This gives clear when-to-use context, and it lists sources like record_usage and third-party receipts. However, it doesn't explicitly mention when not to use it or name alternative tools beyond sources, so it lacks full exclusion guidance.
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 provided, the description fully discloses behavior: read-only, reads local file but never writes, no network calls, idempotent, returns empty list instead of error for missing ledger. This goes beyond what annotations could have provided and leaves no safety ambiguity.
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 structured with a clear opening purpose, a side-effects paragraph, parameter explanation, and return-value guidance. Every sentence serves a distinct informative purpose with no filler, and the most essential info is front-loaded.
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?
Despite having no output schema, the description compensates by stating the return shape ('JSON array of full signed receipt objects') and listing the exact fields. It also covers error behavior, side effects, parameter details, and cross-tool usage, making it fully complete for an agent to invoke correctly.
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 already describes the 'local' parameter at 100% coverage, but the description adds concrete file path details ('~/.computeledger/ledger.jsonl' vs './.computeledger/ledger.jsonl') and an equivalent CLI command. This enhances the schema's brief note, though the schema already covered the core meaning.
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 ('Lists') and resource ('signed usage receipt recorded in the local ComputeLedger ledger'), plus a distinguishing scope ('in insertion order'). It clearly separates this tool from siblings like verify_ledger and verify_receipt by focusing on listing rather than verifying.
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?
Explicitly states when to call it: 'to inspect or export local compute-usage history, e.g. before running verify_ledger, or to summarize usage across providers.' It also mentions alternatives ('Feed any single entry into verify_receipt, or call verify_ledger') and clarifies that missing/empty ledger is not an error.
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 provided, the description fully discloses side effects: it is 'mutating and NOT idempotent', appends a new entry to the local ledger, reads the private key from disk, makes no network calls, and returns is_error=true with a JSON error body on failure. This is far beyond what the schema alone provides.
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 long but well-structured: opening purpose, usage guidance, side-effect disclosure, parameter summary, CLI example, and return-value explanation. Every sentence earns its place, and the most important behaviors are front-loaded in the first paragraph.
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?
Despite having no output schema, the description specifies the full receipt JSON structure (version, id, timestamp, prevHash, hash, signature, etc.) and explains verification via verify_receipt. It covers prerequisites, side effects, failure modes, and alternative tools, making it complete for a tool with this complexity.
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 high (86%), but the description still adds valuable meaning beyond the schema: it provides concrete examples for provider/hardware ('aws', 'lambda-labs', 'nvidia-h100'), clarifies gpuHours/estimatedFlops as optional floats, and includes an equivalent CLI invocation that reinforces parameter semantics. The only minor gap is not elaborating on local beyond 'optional bool', but the schema already covers that.
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: 'Records one unit of compute usage ... as a signed, hash-chained receipt in the local ComputeLedger ledger.' It clearly distinguishes this tool from siblings by explaining it creates evidence of usage, while verify_receipt checks receipts and list_ledger does read-only lookups.
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?
It explicitly states when to call ('after a workload finishes ... when you need durable evidence') and when not to ('Do not call it for read-only lookups (use list_ledger) or to check a receipt you already have (use verify_receipt)'). It also mentions a prerequisite (generate keypair) and failure behavior, giving clear context for tool selection.
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 provided, the description fully carries the transparency burden. It states 'Side effects: read-only, reads the local ledger file, no writes, no network calls, fully idempotent' and discloses stop-on-first-invalid behavior. It also explains that is_error is set when valid is false, which is a behavioral trait not visible in any schema.
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?
Although the description is longer than typical, it is front-loaded with purpose and then systematically covers usage, side effects, parameters, and return values. No sentence is wasted; each adds critical information that the schema and annotations do not provide.
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 tool with one optional parameter, no annotations, and no output schema, the description is exceptionally complete. It defines the exact return payload structure, the error flag behavior, and all edge cases (empty ledger, stopped verification). It fully compensates for the missing structured metadata.
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 schema already covers the 'local' parameter with 100% coverage, so the baseline is 3. The description adds value by stating the default as false (while schema shows null), clarifying that it is the same meaning as in list_ledger and record_usage, and providing the equivalent CLI command with --local. This goes beyond what the schema alone offers.
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+scope: 'Verifies every entry's signature AND the unbroken hash-chain linkage across the entire local ledger in one call'. It clearly distinguishes from the sibling tool verify_receipt by explaining what it catches that a single-receipt check cannot.
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?
Explicit guidance is provided: 'Call this for a full integrity audit of the local ledger before trusting exported totals, or periodically as a tamper-detection check.' It also mentions the prerequisite of an existing ledger and refers the reader to list_ledger, while the contrast with verify_receipt serves as an exclusion for when not to use this tool.
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/RudrenduPaul/ComputeLedger'
If you have feedback or need assistance with the MCP directory API, please join our Discord server