Serve a local Markdown knowledge base to ChatGPT/Claude as a read-only MCP server with OAuth 2.1 (PKCE, DCR, refresh rotation) and scope-based visibility
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"engram-mcp": {
"command": "cargo",
"args": [
"run",
"--",
"engram-mcp"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add engram-mcp cargo run -- engram-mcp
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"engram-mcp": {
"command": "cargo",
"args": [
"run",
"--",
"engram-mcp"
]
}
}
}
📋 Copy