Host root
https://mcp.repokit.live
OpenMCP
Use MCP when your client already speaks tools and you want repository-aware retrieval without building your own wrapper. Repokit exposes the same underlying ranking service through a hosted MCP server.
Quick actions
The MCP page is the functional entry point for agent builders: see the live host, understand the protocol endpoint, and use the same retrieval layer through tool calls.
Host root
https://mcp.repokit.live
OpenHealth
https://mcp.repokit.live/health
OpenProtocol endpoint
https://mcp.repokit.live/mcp
Repokit's MCP surface is for agent clients that already support remote HTTP MCP servers.
It exposes repository-aware retrieval as a hosted tool interface. The product wedge stays the same: find the most relevant files first inside one repository.
curl -sS -X POST \
-H "Content-Type: application/json" \
https://mcp.repokit.live/mcp \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2025-03-26",
"capabilities": {},
"clientInfo": {
"name": "example-client",
"version": "0.1"
}
}
}'curl -sS -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <your_token>" \
https://mcp.repokit.live/mcp \
-d '{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "find_relevant_files",
"arguments": {
"repository_id": "<repository_id>",
"query": "fix request validation error in routing",
"top_k": 3
}
}
}'