A proper MCP (Model Context Protocol) server that connects Redstring to Claude Desktop, following the official MCP specification.
- MCP Server:
redstring-mcp-server.js- Provides tools for Claude Desktop - Claude Desktop Config: Updated to use the MCP server
- Redstring Integration: Updated to work with MCP instead of fake HTTP APIs
- Close Claude Desktop completely
- Reopen Claude Desktop
- It should automatically connect to the Redstring MCP server
- Open Redstring in your browser
- Click the brain icon in the left panel
- You should see "MCP Server connected!" message
- In Claude Desktop, look for the "Search and tools" icon (slider icon)
- You should see Redstring tools available:
explore_knowledge- Explore your knowledge graphcreate_concept_map- Create concept mapscollaborative_reasoning- Engage in collaborative reasoning
Try asking Claude Desktop:
- "Explore my knowledge graph about AI collaboration"
- "Create a concept map for cognitive systems"
- "Let's do collaborative reasoning about knowledge graphs"
- Claude Desktop starts the Redstring MCP server via STDIO
- MCP Server provides tools that Claude can call
- Redstring receives tool calls and processes them
- Claude gets responses and formulates natural language replies
- Purpose: Explore and analyze the knowledge graph
- Parameters:
query: The concept to exploremaxDepth: Maximum exploration depth (optional)
- Returns: Analysis of graph structure and recommendations
- Purpose: Create concept maps from the knowledge graph
- Parameters:
domain: The domain/topic for the mapincludeRelationships: Include relationship types (optional)
- Returns: Structured concept map with relationships
- Purpose: Engage in collaborative reasoning about the graph
- Parameters:
topic: The topic for reasoningreasoningMode: Type of reasoning (exploratory/analytical/creative)
- Returns: Collaborative analysis and questions
- Check that Claude Desktop is updated to the latest version
- Verify the config file is saved and Claude Desktop was restarted
- Check Claude Desktop logs:
~/Library/Logs/Claude/mcp*.log
- Make sure Node.js is installed and working
- Check that the MCP SDK is installed:
npm install @modelcontextprotocol/sdk zod - Test the server manually:
node redstring-mcp-server.js
- Check the browser console for errors
- Verify the MCP server is running
- Check Claude Desktop logs for tool execution errors
- Claude Desktop shows the tools slider icon
- Redstring shows "MCP Server connected!"
- Tool calls work and return meaningful responses
- No more "undefined" responses
- Test the integration - Try all the available tools
- Expand the tools - Add more sophisticated graph analysis
- Real-time integration - Connect the MCP server to actual Redstring data
- Advanced features - Add pattern recognition, graph visualization, etc.
The integration is now properly built using the official MCP specification! 🧠✨