Metadata-Version: 2.4
Name: codesteward-mcp
Version: 0.4.1
Summary: Codesteward MCP Graph Server — structural code graph queries over HTTP+SSE or stdio
Project-URL: Homepage, https://github.com/bitkaio/codesteward-mcp
Project-URL: Repository, https://github.com/bitkaio/codesteward-mcp
Project-URL: Issues, https://github.com/bitkaio/codesteward-mcp/issues
Project-URL: Changelog, https://github.com/bitkaio/codesteward-mcp/blob/main/CHANGELOG.md
Author: bitkaio LLC
License: Apache-2.0
Keywords: ai,claude,code-graph,cursor,mcp,neo4j,static-analysis,tree-sitter
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: codesteward-graph==0.4.1
Requires-Dist: mcp>=1.0
Requires-Dist: pydantic-settings>=2.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: structlog>=24.0
Requires-Dist: uvicorn[standard]>=0.30
Provides-Extra: graph
Requires-Dist: codesteward-graph[graph]; extra == 'graph'
Provides-Extra: graph-all
Requires-Dist: codesteward-graph[graph-all]; extra == 'graph-all'
Provides-Extra: graphqlite
Requires-Dist: codesteward-graph[graphqlite]; extra == 'graphqlite'
Provides-Extra: janusgraph
Requires-Dist: codesteward-graph[janusgraph]; extra == 'janusgraph'
Description-Content-Type: text/markdown

# codesteward-mcp

MCP server that exposes a structural codebase graph as queryable tools for AI agents.

Depends on [`codesteward-graph`](https://pypi.org/project/codesteward-graph/) for parsing.
See the [full documentation and setup guide](https://github.com/bitkaio/codesteward-mcp).

## Quick start (zero install)

```json
{
  "mcpServers": {
    "codesteward-graph": {
      "command": "uvx",
      "args": [
        "--from", "codesteward-mcp[graph-all,graphqlite]",
        "codesteward-mcp", "--transport", "stdio"
      ]
    }
  }
}
```

GraphQLite is the default backend — an embedded SQLite graph database, no server
needed. The graph persists to `~/.codesteward/graph.db` across sessions.

## Install

```bash
# Core languages (TypeScript, JavaScript, Python, Java) + GraphQLite
uv pip install "codesteward-mcp[graph,graphqlite]"

# All 14 languages + GraphQLite
uv pip install "codesteward-mcp[graph-all,graphqlite]"

# Neo4j backend (alternative — requires a running Neo4j server)
uv pip install "codesteward-mcp[graph-all]"

# JanusGraph backend (alternative — requires a running JanusGraph server)
uv pip install "codesteward-mcp[graph-all,janusgraph]"
```

## Tools

| Tool | Description |
| ---- | ----------- |
| `graph_rebuild` | Parse a repository into the structural graph |
| `codebase_graph_query` | Query the graph (`lexical`, `referential`, `semantic`, `dependency`, raw Cypher/Gremlin) |
| `graph_augment` | Add agent-inferred relationships to the graph |
| `graph_status` | Return graph metadata (node/edge counts, last build time) |

## License

Apache License 2.0 — Copyright (c) 2026, bitkaio LLC
