Roboflow MCP Server

This is a Model Context Protocol server that exposes Roboflow's computer vision platform as tools for AI assistants. It speaks MCP over streamable HTTP at /mcp and authenticates with a Roboflow API key sent in the x-api-key header.

Claude Code (CLI)

claude mcp add roboflow \
  --transport http https://mcp.roboflow.com/mcp \
  --header "x-api-key: YOUR_ROBOFLOW_API_KEY" \
  --header "Accept: application/json, text/event-stream"

Claude Desktop / Generic MCP Client

Add to your config (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "roboflow": {
      "type": "http",
      "url": "https://mcp.roboflow.com/mcp",
      "headers": {
        "x-api-key": "YOUR_ROBOFLOW_API_KEY",
        "Accept": "application/json, text/event-stream"
      }
    }
  }
}

Get your API key at https://app.roboflow.com/settings/api.

What this server provides

30 tools across these categories:

Skills (expert knowledge as MCP resources)

Connected clients can read these as MCP resources for guidance on common tasks:

For AI agents

A short, LLM-friendly summary of this server lives at /llms.txt following the llms.txt convention.