shared-context-cache-mcp-server
shared-context-cache-mcp-server
MCP server for shared context caching with trust verification -- AI agents share and verify computed results to reduce token cost and increase reliability.
Why?
Every AI agent constantly re-computes the same results: weather lookups, price checks, document summaries, research queries. With this MCP server, agents share their computed results through a common cache -- and verify each other's results.
The Trust Layer (v0.2.0)
Cached results are only useful if they're accurate. The trust verification system solves this:
Each cache entry has a trust score based on how many agents confirmed it
Agents call
confirm_entrywhen they verify a cached result is correctget_trustedreturns only entries confirmed by 3+ agents (configurable)Network effect: More agents verifying = more trusted results = everyone benefits
Like a CDN for agent intelligence -- with peer-reviewed accuracy.
Related MCP server: Agent Identity MCP Server
Install
pip install shared-context-cache-mcp-serverTools (8)
Tool | Description |
| Look up a cached result by key -- includes trust score |
| Search cache by keywords -- find precomputed results with trust levels |
| Store a computed result for other agents (starts with trust_score=1) |
| Confirm a cached result is accurate -- increases trust score |
| Get only entries confirmed by 3+ agents (high confidence) |
| Detailed analytics: hit rate, trust distribution, top agents, network score |
| Basic cache statistics (hits, misses, cost savings) |
| List cache entries with trust scores, optionally filtered by tags |
Usage Pattern
1. SEARCH: cache_search("weather berlin") or cache_lookup("weather:berlin:today")
2. HIT? Use the cached result. Check trust_score for confidence level.
3. VERIFY: If result is accurate, call confirm_entry("weather:berlin:today")
4. MISS? Compute the result, then cache_store(key, value, tags="weather,berlin")
5. TRUSTED: Use get_trusted(min_trust=3) for only peer-verified resultsTrust Levels
Trust Score | Level | Meaning |
1 | Unverified | Only the original agent stored it |
2 | Partially verified | One other agent confirmed it |
3-4 | Trusted | Multiple agents verified accuracy |
5+ | Highly trusted | Strong consensus across agents |
Claude Desktop Config
{
"mcpServers": {
"shared-context-cache": {
"command": "shared-context-cache-mcp-server"
}
}
}Cache Key Conventions
Use descriptive, hierarchical keys:
weather:berlin:2026-03-28research:arxiv:2501.00001:summaryprice:bitcoin:usd:2026-03-28analysis:company:AAPL:q1-2026
TTL Enforcement
Entries automatically expire after their TTL (default: 24h, max: 7 days). Expired entries return as cache misses -- compute fresh and store again.
Analytics
Use cache_analytics for detailed insights:
Hit rate -- How effective is the cache?
Most accessed entries -- What do agents need most?
Most trusted entries -- Highest peer-verified results
Top contributing agents -- Who's building the shared knowledge?
Trust distribution -- How verified is the cache overall?
Network effect score -- How strong is the agent network?
How It Works
Agent A stores result --> trust_score = 1 (unverified)
Agent B confirms result --> trust_score = 2 (partially verified)
Agent C confirms result --> trust_score = 3 (trusted)
Agent D uses get_trusted --> Gets only verified results, saves computationThe more agents participate, the more reliable the entire cache becomes. This is the core network effect.
Backend
Remote cache: agent-apis.vercel.app/api/cache
Trust layer: Local persistence in
~/.shared_context_cache_trust.json
License
MIT -- AiAgentKarl
Available Tools
8 toolscache_analyticsA
Detailed analytics about cache usage, trust, and network effects.
Shows: hit rate, most accessed entries, most trusted entries, top contributing agents, trust distribution, and network effect score.
Use this to understand how the shared cache is performing and how strong the network effect has become.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 must fully disclose behavioral traits. It indicates a read-only analytics operation and hints at output structure (hit rate, etc.), but does not mention potential costs, rate limits, refresh behavior, or required permissions. The description is adequate but leaves some behavioral aspects unspecified.
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 paragraphs long, with a brief introductory sentence and a bulleted list of metrics. It is mostly concise, though the list could be integrated more tightly. Overall, it is well-structured and front-loads the key 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?
Given that the tool has no input parameters and an output schema exists, the description sufficiently covers its purpose and what analytics it provides. It explains the kind of insights available (cache performance, network effects) and how to use it, leaving no critical gaps for an agent to 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?
The input schema has zero parameters, so schema description coverage is trivially 100%. With no parameters, the description does not need to add parameter semantics, and the baseline score of 4 applies. The description appropriately focuses on the tool's output and purpose.
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 that the tool provides 'Detailed analytics about cache usage, trust, and network effects' and lists specific metrics like hit rate, most accessed entries, etc. This distinguishes it from sibling tools such as cache_stats (likely simpler stats) and cache_list (entry listing), making the purpose 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 says 'Use this to understand how the shared cache is performing and how strong the network effect has become,' which gives context but does not explicitly state when to use this tool versus alternatives like cache_search or cache_stats. No when-not-to-use guidance or mention of alternative tools is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cache_listB
List available cache entries with trust scores, optionally filtered by tags.
Browse what other agents have cached. Entries include trust scores showing how many agents have verified each result.
Args: limit: Max entries to return (default: 20, max: 100) tags: Filter by tags, comma-separated (e.g. 'weather,temperature')
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| tags | No |
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 bears full responsibility for behavioral disclosure. It mentions listing entries and filtering by tags but does not explicitly state that the operation is read-only, side-effect free, or require any permissions. This leaves behavioral traits 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 concise with two short paragraphs. The first sentence front-loads the core purpose. No redundant or filler language. Docstring format is clean and scannable.
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 an output schema present, return value details are not strictly needed. However, the description only mentions 'trust scores' without listing other likely fields (e.g., key, value, timestamp). Given two optional parameters and no annotations, the description is adequate but not thorough.
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?
Input schema properties lack descriptions (0% coverage). The description compensates by explaining 'limit: Max entries to return (default: 20, max: 100)' and 'tags: Filter by tags, comma-separated (e.g. 'weather,temperature')'. This adds range and format constraints beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'List available cache entries with trust scores', indicating a specific verb and resource. It briefly explains the purpose 'Browse what other agents have cached', but does not explicitly differentiate from sibling tools like cache_lookup or cache_search.
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 use for browsing cached entries but provides no guidance on when not to use or alternatives. With siblings like cache_lookup and cache_search, explicit differentiation would help an agent choose correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cache_lookupA
Look up a cached result by key. Returns the stored value if found, with trust score.
Use this BEFORE computing expensive results -- another agent may have already computed and cached the answer, saving tokens and latency.
Higher trust_score = more agents have verified this result is accurate.
Args: key: Cache key (e.g. 'weather:berlin:2026-03-28', 'research:quantum-computing') agent_id: Your agent identifier for analytics tracking
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| agent_id | No | mcp-agent |
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 it returns a value with a trust score and explains the trust_score meaning. However, it does not describe behavior when the key is not found (e.g., returns null or error). This is a minor gap for a lookup 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 well-structured and concise: a short intro sentence, followed by usage guidance, trust score elaboration, and parameter docs with examples. No extraneous information, and front-loaded with the core purpose.
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 (2 parameters, lookup only), the description covers input, usage context, and return value aspects. It distinguishes from siblings. However, it could mention the outcome when the key is missing, and the output schema exists but is not referenced. Still, it is largely complete.
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%, but the description fully compensates by explaining both parameters: 'key' with example patterns like 'weather:berlin:2026-03-28', and 'agent_id' as an analytics identifier. This adds significant meaning beyond the schema's type and title.
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: 'Look up a cached result by key. Returns the stored value if found, with trust score.' It specifies the resource (cache) and the verb (look up), and differentiates from sibling tools like cache_store and cache_list.
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?
Provides explicit guidance: 'Use this BEFORE computing expensive results' and explains the benefit of saving tokens and latency. It also clarifies that another agent may have cached the result. No explicit exclusion of when not to use, but the guidance is strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cache_searchA
Search the shared cache by keywords. Find relevant cached results from other agents.
Search before computing -- if another agent has cached a similar result, you can reuse it directly. Results include trust scores showing verification level.
Args: query: Keywords to search for (e.g. 'weather berlin', 'bitcoin price') limit: Max number of results to return (default: 10, max: 50)
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| limit | No |
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 must cover behavioral aspects. It mentions that results include trust scores, but does not disclose if the search is read-only, any side effects, or performance characteristics. This leaves some gaps.
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 concise, with the purpose and guideline in the first two lines, followed by a structured 'Args' section. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, parameters, and usage guideline adequately. With an output schema present, it does not need to detail return values, but it could mention ordering or pagination for completeness.
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%, but the description compensates fully with an 'Args' section that explains the 'query' parameter with examples and the 'limit' parameter with default and max values, adding meaning beyond the schema's type information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Search' and the resource 'shared cache', specifying that it finds relevant cached results from other agents. This distinguishes it from siblings like cache_list or cache_lookup, which likely do not perform keyword search.
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 advises using this tool before computing to reuse cached results, providing a clear when-to-use context. However, it does not explicitly mention when not to use it or compare to alternatives like cache_lookup for specific keys.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cache_statsA
Get basic statistics about the shared cache -- hits, misses, top queries.
For more detailed analytics including trust scores and network effects, use cache_analytics instead.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 must carry the burden. It indicates a read operation (get stats) but does not mention any potential side effects, permissions, or rate limits. However, the tool is simple and harmless, so a minimal disclosure is acceptable.
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 very concise with two sentences: the first states the purpose, the second provides an alternative. 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?
Given no parameters and an existing output schema, the description is complete. It covers what the tool does and when to use a different tool, requiring no further elaboration.
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 tool has 0 parameters, and the schema coverage is 100%. The description does not need to add parameter information, meeting the baseline for zero-parameter tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'shared cache', listing specific outputs (hits, misses, top queries). It distinguishes from the sibling cache_analytics, fulfilling the need for specificity and differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells when not to use this tool and directs to an alternative: 'For more detailed analytics including trust scores and network effects, use cache_analytics instead.' This provides clear guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cache_storeA
Store a computed result in the shared cache so other agents can reuse it.
After computing an expensive result (web search, analysis, API call), store it here. Other agents will find it via cache_lookup or cache_search.
The entry starts with trust_score=1 (you as the first confirmer). Other agents can use confirm_entry to increase the trust score.
Args: key: Unique cache key (e.g. 'weather:berlin:2026-03-28', 'summary:arxiv:2501.00001') value: The result to cache (JSON string, text, or any serializable content) ttl_seconds: Time-to-live in seconds (default: 86400 = 24h, max: 604800 = 7 days) tags: Comma-separated tags for discovery (e.g. 'weather,berlin,temperature') agent_id: Your agent identifier for attribution (e.g. 'weather-agent-v2')
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| value | Yes | ||
| ttl_seconds | No | ||
| tags | No | ||
| agent_id | No | mcp-agent |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It explains trust_score initialization, ttl behavior, and that other agents can increase trust. It lacks disclosure on any potential side effects, but caching is generally benign.
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 well-structured with a purpose statement, usage guidance, and a labeled Args section. It is slightly verbose but every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (5 parameters, output schema exists), the description covers purpose, when to use, parameter details, and behavioral notes. It is self-contained and leaves no major 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?
Schema coverage is 0%, so description must compensate. It provides detailed explanations for all 5 parameters including examples for key, accepted formats for value, default and max for ttl_seconds, comma-separated for tags, and attribution for agent_id.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Store a computed result in the shared cache so other agents can reuse it.' It distinguishes from sibling tools like cache_lookup and cache_search by specifying the action of storing.
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?
Provides explicit when to use: 'After computing an expensive result...' and mentions related tools (confirm_entry). However, it does not explicitly state when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
confirm_entryA
Confirm a cached result is accurate. Increases the entry's trust score.
When you use a cached result and verify it's correct, confirm it. This builds trust for other agents: entries confirmed by multiple agents are more reliable than unverified ones.
NETWORK EFFECT: More agents confirming = higher trust = more reuse.
Each agent can confirm an entry once. Duplicate confirmations are ignored.
Args: key: Cache key to confirm (e.g. 'weather:berlin:2026-03-28') agent_id: Your agent identifier (e.g. 'research-agent-v1')
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| agent_id | No | mcp-agent |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral transparency. It discloses that each agent can confirm an entry once, duplicates are ignored, and trust scores increase. It does not cover potential side effects or failure modes, but the core behaviors are well explained.
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 well-structured: it starts with a clear primary action statement, then explains the benefit and behavior, and finally lists arguments with examples. Every sentence adds value without unnecessary fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the context includes an output schema, the description does not need to explain return values. It covers the tool's purpose, behavior, and parameters sufficiently for a simple confirmation action. The description is complete for its complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must explain parameters. It does so effectively, providing a clear example for 'key' (e.g., 'weather:berlin:2026-03-28') and explaining that 'agent_id' defaults to 'mcp-agent'. This adds significant meaning beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool confirms a cached result and increases trust score, with a specific verb ('confirm') and resource ('cached result'). It distinguishes itself from sibling tools like cache_store, cache_list, etc., by focusing on verification and trust building.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use the tool: 'when you use a cached result and verify it's correct, confirm it.' It also notes that duplicate confirmations are ignored and highlights the network effect. However, it does not explicitly state when not to use it or provide alternative tools for other scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_trustedA
Get only cache entries confirmed by multiple agents (high trust).
Returns entries with trust_score >= min_trust, sorted by trust score. These are the most reliable cached results -- verified by multiple independent agents.
Use this to find the most trustworthy precomputed results available.
Args: min_trust: Minimum trust score required (default: 3 = confirmed by 3+ agents) limit: Max entries to return (default: 20)
| Name | Required | Description | Default |
|---|---|---|---|
| min_trust | No | ||
| limit | No |
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 full burden. It discloses that entries are filtered by min_trust and sorted by trust_score, implying a read-only operation. It does not discuss performance, errors, or edge cases like empty results, but the core behavior is covered.
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 concise (about 60 words), front-loaded with purpose, and uses a clear Args section. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given an output schema exists (not shown), the description need not detail return format. It covers input parameters, filtering logic, and sorting. It could optionally mention that results are a list of entries, but the information is sufficient for an AI agent.
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 0% (no descriptions in schema), so the description must compensate. It explains min_trust as 'Minimum trust score required (default: 3 = confirmed by 3+ agents)' and limit as 'Max entries to return (default: 20)', adding clear semantics beyond the schema's type and default.
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 gets cache entries confirmed by multiple agents (high trust). It distinguishes from siblings like cache_list (all entries) and cache_search by specifying the filtering condition. The verb 'Get' and resource 'cache entries (high trust)' are specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states 'Use this to find the most trustworthy precomputed results available.' This provides clear context for when to use the tool. However, it does not explicitly exclude other cases or mention sibling alternatives, which would earn a 5.
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.
8 tool updates
v0.2.0- First observed
cache_analytics - First observed
cache_list - First observed
cache_lookup - First observed
cache_search - First observed
cache_stats - First observed
cache_store - First observed
confirm_entry - First observed
get_trusted
TDQS
Tools are mostly distinct with clear purposes (lookup by key, search by keywords, list by tags, stats, analytics, store, confirm, get trusted). Some overlap between cache_stats and cache_analytics but descriptions differentiate basic vs detailed. Slight potential confusion between cache_lookup and cache_search but key vs keyword distinction helps.
Mix of patterns: most start with 'cache_' but 'confirm_entry' and 'get_trusted' lack the prefix. Some use verb_noun (cache_lookup, cache_store), others noun (cache_stats, cache_analytics). Inconsistent use of verbs and nouns across the set.
8 tools is well-scoped for a shared cache server: core operations like store, lookup, search, list, stats, and trust-related tools (confirm, get_trusted, analytics). Each tool serves a clear purpose without being overloaded.
Covers essential caching operations but lacks a delete or update tool. Agents cannot remove or modify cached entries directly. The trust mechanism is well-supported, but missing eviction could lead to stale data accumulation.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP-native Trust Infrastructure for AI Agents. Persistent encrypted memory with Trust Quotient.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
shared AI-context layer for teams — persistent memory your agents search and update over MCP
An MCP memory server. One memory your agents share — across models, devices and apps.
Related MCP Servers
- AlicenseAqualityCmaintenanceAn MCP server that helps AI agents reduce token usage by compressing, summarizing, and managing conversation/context data more efficiently.11MIT
- AlicenseNot gradedqualityDmaintenanceMCP Server for AI agent identity and authorization. Create, verify, and manage agent identities with trust scores and scoped authorization tokens.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for storing and retrieving context-specific agent rules, enabling AI agents to access relevant guidelines efficiently and reduce context window usage.1Apache 2.0
- AlicenseNot gradedqualityAmaintenanceMCP server for multi-agent collaboration enabling AI agents to communicate, delegate tasks, and share artifacts across clients and machines with federation support.311MIT
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/AiAgentKarl/shared-context-cache-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server