An open API service indexing awesome lists of open source software.

https://github.com/ahrefs/dev-mcp-server


https://github.com/ahrefs/dev-mcp-server

Last synced: 16 days ago
JSON representation

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.