Skip to main content
Glama
AiAgentKarl

shared-context-cache-mcp-server

by AiAgentKarl

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.

PyPI License: MIT

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_entry when they verify a cached result is correct

  • get_trusted returns 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-server

Tools (8)

Tool

Description

cache_lookup

Look up a cached result by key -- includes trust score

cache_search

Search cache by keywords -- find precomputed results with trust levels

cache_store

Store a computed result for other agents (starts with trust_score=1)

confirm_entry

Confirm a cached result is accurate -- increases trust score

get_trusted

Get only entries confirmed by 3+ agents (high confidence)

cache_analytics

Detailed analytics: hit rate, trust distribution, top agents, network score

cache_stats

Basic cache statistics (hits, misses, cost savings)

cache_list

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 results

Trust 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-28

  • research:arxiv:2501.00001:summary

  • price:bitcoin:usd:2026-03-28

  • analysis: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 computation

The more agents participate, the more reliable the entire cache becomes. This is the core network effect.

Backend

License

MIT -- AiAgentKarl

Available Tools

8 tools
cache_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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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')

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
tagsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYes
agent_idNomcp-agent

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters5/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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')

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYes
valueYes
ttl_secondsNo
tagsNo
agent_idNomcp-agent

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters5/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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')

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYes
agent_idNomcp-agent

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.6/5.0
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 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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters5/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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)

ParametersJSON Schema
NameRequiredDescriptionDefault
min_trustNo
limitNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters5/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 8 tool updatesv0.2.0
    • First observedcache_analytics
    • First observedcache_list
    • First observedcache_lookup
    • First observedcache_search
    • First observedcache_stats
    • First observedcache_store
    • First observedconfirm_entry
    • First observedget_trusted

TDQS

A3.9/5.0
Disambiguation4/5

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.

Naming Consistency3/5

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.

Tool Count5/5

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.

Completeness3/5

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

ActivityInactive
ResponsivenessSyncing

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

Related MCP Servers

Latest Blog Posts

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