https://github.com/ahrefs/dev-mcp-server
https://github.com/ahrefs/dev-mcp-server
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ahrefs/dev-mcp-server
- Owner: ahrefs
- Created: 2025-11-27T11:27:20.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-12-29T08:36:33.000Z (7 months ago)
- Last Synced: 2026-06-12T22:31:10.966Z (about 1 month ago)
- Language: Python
- Size: 64.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dev-mcp-server
MCP server exposing OCaml LSP and ocp-index tools for AI assistants.
## Prerequisites
- Python 3.10+, [uv](https://docs.astral.sh/uv/), `ocamllsp`
- Optional: `ocp-index`, `ocp-grep`
## Installation
```bash
git clone https://github.com/yourusername/dev-mcp-server.git
cd dev-mcp-server
uv sync
```
## Adding to Claude Code
```bash
claude mcp add --transport stdio dev-mcp-server -- uv run dev-mcp-server
```
Or add to `.mcp.json` in your project:
```json
{
"mcpServers": {
"dev-mcp-server": {
"type": "stdio",
"command": "uv",
"args": ["run", "dev-mcp-server"],
"cwd": "/path/to/dev-mcp-server"
}
}
}
```
Verify with `/mcp` in Claude Code.