BioContext7

All Clients

Comprehensive list of all supported IDE and AI client integrations

BioContext7 works with any MCP-compatible AI coding assistant. This page lists every supported client with exact configuration snippets.

For the interactive version with collapsible sections, visit the integrations page on the website.

Quick start

The fastest way to add BioContext7 to any client:

npx @biocontext7/mcp

This starts the MCP server via stdio. Point any MCP-compatible client at this command.

Remote HTTP (zero install)

When api.biocontext7.com is deployed, use the remote endpoint:

{
  "mcpServers": {
    "biocontext7": {
      "type": "http",
      "url": "https://api.biocontext7.com/mcp"
    }
  }
}

Tier 1 — Primary

Claude Code

One-liner (npx):

claude mcp add biocontext7 -- npx -y @biocontext7/mcp@latest

One-liner (HTTP remote, zero install):

claude mcp add --transport http biocontext7 https://mcp.biocontext7.com/mcp

Manual config (~/.claude/settings.json or .mcp.json):

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp@latest"]
    }
  }
}

Cursor

Config (.cursor/mcp.json):

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

VS Code / GitHub Copilot

Config (.vscode/settings.json):

{
  "mcp": {
    "servers": {
      "biocontext7": {
        "type": "stdio",
        "command": "npx",
        "args": ["-y", "@biocontext7/mcp"]
      }
    }
  }
}

Requires VS Code 1.99+ with GitHub Copilot extension and MCP enabled.

Claude Desktop

Config (claude_desktop_config.json):

PlatformPath
macOS~/Library/Application Support/Claude/claude_desktop_config.json
Windows%APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

Windsurf

Config (~/.codeium/windsurf/mcp_config.json):

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

Tier 2 — Supported

JetBrains AI Assistant

Go to Settings > Tools > AI Assistant > MCP Servers > Add:

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

Requires JetBrains IDE 2025.1+ with AI Assistant plugin.

Zed

Config (~/.config/zed/settings.json):

{
  "context_servers": {
    "biocontext7": {
      "command": {
        "path": "npx",
        "args": ["-y", "@biocontext7/mcp"]
      }
    }
  }
}

Cline

Open Cline settings in VS Code, navigate to MCP Servers, and add:

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

Amazon Q Developer CLI

Config (~/.aws/amazonq/mcp.json):

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

Gemini CLI

Config (~/.gemini/settings.json):

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

OpenAI Codex CLI

Config (~/.codex/config.json):

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

Tier 3 — Community

Roo Code

Open Roo Code settings, navigate to MCP Servers, and add the standard MCP config:

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

Kilo Code

Add via Kilo Code MCP settings panel in VS Code with the same config format above.

Augment Code

Add via Augment Code MCP settings in your IDE extension with the same config format above.

Amp

Config (~/.amp/config.json):

{
  "mcpServers": {
    "biocontext7": {
      "command": "npx",
      "args": ["-y", "@biocontext7/mcp"]
    }
  }
}

Warp

Open Warp Settings > AI > MCP Servers and add the standard MCP config.

LM Studio

Add via LM Studio > Settings > MCP Servers panel. Requires LM Studio 0.3+ with MCP support.

Docker

docker run -i --rm ghcr.io/hordago-labs/biocontext7-mcp

Use with any MCP client by setting the command to docker and args to ["run", "-i", "--rm", "ghcr.io/hordago-labs/biocontext7-mcp"].


Environment variables

VariableDefaultDescription
BIOCONTEXT7_API_URLhttps://api.biocontext7.comBackend API base URL
BIOCONTEXT7_API_KEYAPI key for authentication
PORT3100Port for SSE/HTTP transports

Transport modes

TransportCommandUse case
stdionpx @biocontext7/mcpLocal IDE usage (default)
SSEnpx @biocontext7/mcp --transport sseStreaming clients
HTTPnpx @biocontext7/mcp --transport httpRemote or shared access