Shared Memory MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_agentic_sessionC | Create a new agentic session with shared context for coordinator and workers |
| get_session_infoC | Get information about an agentic session |
| update_session_statusC | Update the status of an agentic session |
| get_worker_contextC | Get compressed context for a specific worker |
| expand_context_sectionC | Get detailed information for a specific context section |
| get_context_deltaC | Get incremental updates since a specific version |
| publish_work_unitsC | Publish available work units for workers to claim |
| claim_work_unitC | Claim a specific work unit for execution |
| update_work_statusC | Update the status of a work unit |
| add_discoveryC | Add a discovery that other workers can benefit from |
| get_discoveries_sinceC | Get discoveries made since a specific timestamp |
| declare_outputsC | Declare what outputs this worker will produce |
| await_dependencyC | Wait for a dependency to become available |
| publish_outputC | Publish an output for other workers to consume |
| get_session_statsB | Get statistics about the shared memory system |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 15 tools
Most tools have distinct purposes, such as 'create_agentic_session' for session creation and 'claim_work_unit' for task assignment, but some overlap exists between 'get_session_info' and 'get_session_stats', which could cause minor confusion as both relate to session data retrieval.
All tool names follow a consistent verb_noun pattern with snake_case, such as 'add_discovery', 'await_dependency', and 'publish_output', making them predictable and easy to parse for agents.
With 15 tools, this server is well-scoped for managing shared memory, agentic sessions, and work coordination, covering essential operations without being overly complex or sparse.
The tool set provides comprehensive coverage for session management, work unit handling, and context sharing, with minor gaps such as the lack of a tool to delete or terminate sessions, which agents might need to work around.