Metadata-Version: 2.4
Name: codesteward-mcp
Version: 0.2.0
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: BSD-3-Clause
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 :: BSD 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.2.0
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'
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": ["codesteward-mcp[graph-all]", "--transport", "stdio"]
    }
  }
}
```

## Install

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

# All 14 languages
uv pip install "codesteward-mcp[graph-all]"
```

## Tools

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

## License

BSD 3-Clause License — Copyright (c) 2026, bitkaio LLC
