speedy-mcp 0.1.0

MCP server exposing Speedy semantic search as tools for AI coding agents
# speedy-mcp

MCP server that exposes [Speedy](https://github.com/elguala9/Speedy) semantic search as tools for AI coding agents.

Compatible with any MCP client: opencode, Claude Code, Cursor, Windsurf, and more.

## Tools

| Tool | Description |
|---|---|
| `speedy_query` | Semantic search over the codebase using natural language |
| `speedy_index` | Index a directory into the vector database |
| `speedy_context` | Show project context summary |

## Install

```bash
cargo install speedy-mcp
```

## Usage

Add to your MCP client config:

```json
{
  "mcpServers": {
    "speedy": {
      "command": "speedy-mcp",
      "args": []
    }
  }
}
```

Set `SPEEDY_BIN` env var to point to the speedy binary if not in PATH.