claude-context-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 |
|---|---|
| list_projectsA | List all Claude Code projects that have saved memory files, with their decoded paths and summary. |
| get_projectA | Get the full memory content for a specific project. Supports fuzzy name matching. |
| get_user_profileA | Aggregate all 'user' type memory entries across every project into a single profile. |
| searchA | Full-text search across all memory files. Returns matching excerpts with project context. |
| get_all_contextA | Dump everything — all projects and all memory entries — into one structured markdown document. Use this for a full context upload to Claude.ai. |
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 5 tools
Each tool has a clearly distinct purpose: full dump, specific project retrieval, user profile aggregation, listing projects, and full-text search. No overlap.
All tools use verb_noun pattern with underscores (e.g., get_all_context, get_project, list_projects, search). Even 'search' fits the imperative verb style. Consistent.
5 tools is well-scoped for a context management server, covering essential operations without being too few or too many.
The set covers listing, retrieval, and search comprehensively. Minor gap: no tools for creating or updating context, but the server's role appears to be read-only export.