spine
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@spineWhere is request authentication enforced?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Spine
Repository architecture with file-level proof
Spine gives an agent a local map of a repository before it edits:
What is this repository?
Where does this behavior live?
How does a request reach that module?
What does this change affect?
Which file and lines support the answer?
The graph stays on the machine. Spine does not call a model, and it does not treat generated prose as proof.
npx -y @sylphx/spineThis starts the MCP server on stdio. For Claude Code:
claude mcp add spine -- npx -y @sylphx/spinePackage @sylphx/spine · bin spine · MCP io.github.SylphxAI/spine · docs https://sylphxai.github.io/spine/
The default is a refresh
Omit mode. Spine reuses the index when nothing changed, updates only the files that changed when the delta is small, and scans the repository when it has to. The response names which one happened: cache_hit, incremental, or full.
{
"root": "/absolute/path/to/repo"
}A complete rescan is named explicitly:
{
"root": "/absolute/path/to/repo",
"mode": "full"
}refreshis the default.autois the old name for that same behavior.status_onlychecks freshness and does not index.Any other mode forces a full scan.
No remote provider and no model call.
Unknown languages and incomplete coverage come back as gaps.
Related MCP server: Paparats MCP
Ask one question
{
"query": "authMiddleware"
}Search matches a label or a path fragment, such as a symbol name. It returns ranked nodes with path, line range, extraction source, freshness, confidence, and known gaps.
Jobs Spine is built for
Ask your agent | Spine returns |
“Map this repository.” |
|
“Where is this implemented?” |
|
“How does this request reach the database?” |
|
“What breaks if I edit this file?” |
|
“Show me the proof.” |
|
Tool surface
Tool | Purpose |
| Build or refresh the local graph. Default mode is |
| Report freshness, coverage, and gaps |
| Repository map and important boundaries |
| Map plus the most useful next questions |
| Find boundaries, routes, schemas, and symbols |
| Shortest path between two nodes, with hop provenance |
| Estimate the blast radius of a change |
| Follow a dependency or call path |
| Fetch the file and line proof for a claim |
architecture_context_pack is an advanced composition tool. Start with the question-oriented tools above.
Why an agent can check the answer
Every result carries:
repository root and indexed commit;
current commit and freshness (
fresh,stale,dirty, orunknown);evidence with file and line locators;
extracted versus inferred labels;
explicit gaps instead of a silent guess.
What Spine is not
Tool | What it is | What Spine does differently |
A coding agent toolkit: semantic retrieval and editing, often through language servers | Spine does not edit files. It returns a local architecture graph: path, trace, impact, and file:line evidence. | |
Fast literal search across file contents | Spine is not a line search. It indexes boundaries and relations, then answers path, trace, and impact. | |
An interactive knowledge graph built by a multi-agent pipeline that uses a model | Spine's default path never calls a model. It returns path, trace, impact, and file:line evidence, not a guided tour. | |
Language servers | Definitions, references, and types for one language inside an editor | Spine is a repository graph for an agent: cross-file path, trace, impact, freshness, and gaps. |
Locus owns code-chunk retrieval. Spine owns architecture claims. Neither replaces the other.
Companion MCP tools
Product | Job |
PDF answers with page-level proof | |
Image facts and pixel evidence | |
Video timelines and timestamp evidence | |
Exact code-chunk retrieval | |
Web research with source excerpts |
Each product is independent. Install only the tools the agent needs.
Development
bun install
bun run build
bun test
cargo testFor a release candidate:
bun run benchmark:public-proof
bun run benchmark:release-gateLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Code intelligence platform for AI agents. 20 tools for architecture, security & impact analysis.
Deterministic context layer for your codebase: change impact, blast radius, answers with receipts.
Codebase intelligence for AI agents — dead code, blast radius, ownership.
Codebase graphs, caller impact analysis, and recorded project context for AI coding agents.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceTransforms codebases into structural knowledge graphs for AI agents and developers, providing precise architectural awareness and dependency mapping.54MIT
- AlicenseNot gradedqualityBmaintenanceProvides AI coding assistants with deep, semantic understanding of local codebases via AST-aware chunking, cross-repo symbol graphs, and architectural memory, enabling context-aware code search and dependency tracing.11MIT
- AlicenseNot gradedqualityCmaintenanceProvides semantic code search and code insights via a knowledge graph, enabling AI to understand, navigate, and modify complex projects with deep dependency and architecture analysis.MIT
- AlicenseNot gradedqualityAmaintenanceProvides a dependency graph of any local repository with tools for change impact, transitive dependents, health audits, and more, enabling AI coding agents to see structure and refactor safely.4,912 npm4MIT