The Neuradex MCP server provides 17 tools for LLMs to access Neuradex memory capabilities. For an overview of the MCP integration, see the MCP Overview.
Set an active project with switch_project to omit projectId from other tools.
User: Which projects can I access?Claude: [Calls list_projects] You can access the following projects: - Customer Support (knowledge: 150) - Internal Wiki (knowledge: 80)
Set the active project for the current session. After switching, projectId can be omitted from other tools.Parameters:
Name
Type
Required
Description
projectId
string
No
Project ID
projectName
string
No
Project name (case-insensitive)
Specify either projectId or projectName.
Usage Example:
User: Switch to the Customer Support projectClaude: [Calls switch_project] projectName: "Customer Support" Switched active project to "Customer Support". You can now use tools without specifying projectId.
User: Let's share an agenda before future meetings. Remember this.Claude: [Calls create_knowledge] title: "Meeting Rule: Share Agenda in Advance" content: "Share the agenda with participants before holding meetings." tags: ["meeting", "rules"] Understood. Saved as a meeting rule in knowledge.
Execute semantic search to find related knowledge. Returns lightweight results (ID, title, tags, score).Parameters:
Name
Type
Required
Description
projectId
string
No
Project ID (uses active project if omitted)
query
string
Yes
Search query
limit
number
No
Maximum results (default: 10)
Full content is not included. Use view_knowledge when details are needed.
Usage Example:
User: Tell me about the return policyClaude: [Calls search_knowledge] query: "return policy" Found 3 knowledge items related to return policy: 1. Return Policy (score: 0.92) 2. Refund Process (score: 0.78) 3. Exchanges (score: 0.65)
Search across multiple knowledge layers and return a single mixed result list. Filter by type as needed.Parameters:
Name
Type
Required
Description
projectId
string
No
Project ID (uses active project if omitted)
query
string
Yes
Search query
limit
number
No
Max total results
perTypeLimit
number
No
Max results per type
includeTypes
string[]
No
Types to include (knowledge / episode / topic / entity / relation)
expandGraph
boolean
No
Include broader related context
maxHops
number
No
Depth of related context
expandLimit
number
No
Seed count used to broaden results
relationLimit
number
No
Max number of relations
Usage Example:
User: Find last week's authentication discussion and related materialClaude: [Calls search_agentic] query: "last week's authentication discussion" includeTypes: ["episode", "knowledge", "relation"] limit: 12 Found related episodes, knowledge, and relations in one list.
View full content of a specific knowledge entry and its connected knowledge. Use this after search_knowledge to get complete details.Parameters:
Name
Type
Required
Description
projectId
string
No
Project ID (uses active project if omitted)
knowledgeId
string
Yes
Knowledge ID
Usage Example:
Claude: [Calls view_knowledge] knowledgeId: "knowledge-123" === Return Policy === Returns are accepted within 30 days of product arrival. Return conditions: - Item must be unused and unopened - Tags must still be attached ... Related knowledge: - Refund Process - Shipping Information
List all knowledge in the project. Useful for browsing and managing the knowledge base.Parameters:
Name
Type
Required
Description
projectId
string
No
Project ID (uses active project if omitted)
Usage Example:
User: Show me all knowledge in this projectClaude: [Calls list_knowledge] Knowledge list for the project: 1. Return Policy 2. Shipping Guide 3. FAQ Collection ...(150 total)
Update an existing knowledge entry’s title and/or content.Parameters:
Name
Type
Required
Description
projectId
string
No
Project ID (uses active project if omitted)
knowledgeId
string
Yes
Knowledge ID
title
string
No
New title (omit to keep current)
content
string
No
New content (omit to keep current)
Usage Example:
User: Change the return policy deadline to 60 daysClaude: [Calls update_knowledge] knowledgeId: "knowledge-123" content: "Returns are accepted within 60 days of product arrival..." Updated the return policy knowledge.
Get optimized context for a query. Combines semantic search, graph exploration, and episode history to build information for LLMs.Parameters:
Name
Type
Required
Description
projectId
string
No
Project ID (uses active project if omitted)
query
string
Yes
Search query
tokenBudget
number
No
Token limit (default: 4000)
includeEpisodes
boolean
No
Include Q&A history (default: true)
maxDepth
number
No
Exploration depth (default: 2, max: 3)
get_context collects information from multiple sources and optimizes to fit within the token budget. Ideal for complex questions.
Usage Example:
User: Tell me about the new deploy flow decided in last week's meetingClaude: [Calls get_context] query: "new deploy flow meeting" includeEpisodes: true [Collects info from related knowledge + Q&A history] Here's a summary of the new deploy flow decided last week: 1. Auto-deploy to staging when PR is merged 2. 1-hour canary test on staging 3. Promote to production if no issues ...
Semantic search for episodes. Discover past events through semantic search with queries like “password reset” or “last week’s error.”Parameters:
Name
Type
Required
Description
projectId
string
No
Project ID (uses active project if omitted)
query
string
Yes
Search query
limit
number
No
Maximum results (default: 10)
Usage Example:
User: Find past conversations about password resetClaude: [Calls search_episodes] query: "password reset" Found 3 related episodes: 1. "How do I reset my password?" (score: 0.95) 2. "About the password change procedure" (score: 0.82) 3. "What to do when you can't log in" (score: 0.71)