★ 24 stars
Rust
🤖 AI/LLM
Updated 9d ago
MCP server that gives AI coding agents semantic understanding of any codebase. Search by intent, auto-sync on edits, whole-repo context in one call. Rust + tree-sitter, 15 languages, 28 tools.
View on GitHub →
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": {
"rpg-encoder": {
"command": "cargo",
"args": [
"run",
"--",
"rpg-encoder"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add rpg-encoder cargo run -- rpg-encoder
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"rpg-encoder": {
"command": "cargo",
"args": [
"run",
"--",
"rpg-encoder"
]
}
}
}
📋 Copy
Topics
agentic-tools code-analysis code-understanding embeddings llm mcp program-graph rust semantic-search tree-sitter