ClaudeX
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PROJECT_ROOT | No | Path to Claude Code conversation logs | /root/.claude/projects |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_project_contextA | Get a condensed context snapshot for the current project. Call this at the START of every session to load project memory: recent sessions, favorited sessions, and project stats. This is your primary memory tool — use it before doing any work. |
| list_projectsA | List all Claude Code projects on this machine. Shows which project is currently active. |
| list_sessionsA | List sessions for a project. Defaults to the current project. Pass projectId to target a different project. Use this when the user asks about previous conversations, or when you need to find a specific session. |
| search_conversationsA | Search conversations using full-text search. Defaults to the current project. Set allProjects=true to search across all projects, or pass a specific projectId. Use this when the user asks "did we discuss X before?" or references past work, decisions, or code changes. |
| get_sessionA | Get the full conversation from a session. Defaults to the current project. Use this when you need to read the actual messages from a past session — e.g., to recall implementation details, decisions made, or code that was written. |
| get_session_summaryA | Get a quick summary of a session — title, message count, dates, tags, favorites, and token stats. Defaults to the current project. Cheaper than get_session when you only need metadata, not full messages. |
| store_memoryA | Store a structured memory for the current project. Use this when you discover important codebase patterns, conventions, decisions, or architecture details that should persist across sessions. Memories are stored in SQLite and survive restarts. |
| recall_memoryA | Recall stored memories for the current project. Returns memories sorted by priority and recency. Use this to retrieve codebase knowledge, conventions, decisions, and context from previous sessions. |
| list_memoriesA | List all stored memories for the current project with stats. Shows namespace, type, key, priority. Useful for understanding what knowledge is stored. |
| delete_memoryA | Delete a specific memory by namespace, type, and key. Use when a memory is outdated or incorrect. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| recall | Search your conversation history for something discussed before |
| catchup | Get a summary of recent work in this project |
| history | Browse recent sessions with titles and dates |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| projects | All Claude Code projects on this machine (current project highlighted) |
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/kunwar-shah/claudex'
If you have feedback or need assistance with the MCP directory API, please join our Discord server