MCP server integration
Connect AI development tools like Cursor, VS Code, and Claude Desktop to your product documentation through Biel.ai's Model Context Protocol (MCP) server.
Biel.ai provides a hosted Retrieval-Augmented Generation (RAG) layer that makes your documentation searchable and useful to AI tools. This enables smarter completions, accurate technical answers, and context-aware suggestions—directly in your IDE or chat environment.
The MCP server acts as a bridge between your AI coding assistant and your Biel.ai project, allowing the AI to query your documentation whenever it needs context about your product or API.
Prerequisites
Before starting, ensure you have:
- A Biel.ai account. If you don't have one, sign up for free.
- A project created in your Biel.ai dashboard. Follow the Quickstart guide to create one.
- Your project slug - this is visible in your project URL or dashboard.
- An AI tool that supports MCP (Cursor IDE, Claude Desktop, or VS Code with MCP extension).
- API key (optional) - only required for private projects. Professional/Business/Enterprise plans only.
Quickstart
The fastest way to get started is using our hosted MCP server. No setup or maintenance required.
Use this MCP server configuration with your AI tool:
{
"mcpServers": {
"biel-ai": {
"description": "Query your product's documentation, APIs, and knowledge base.",
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.biel.ai/sse?project_slug=YOUR_PROJECT_SLUG&domain=https://your-docs-domain.com"
]
}
}
}
Set the following parameters:
project_slug:
Your Biel.ai project slug from your dashboard.domain
: Your documentation domain.api_key
: Optional, API key (only needed for private projects)
Tool-specific setup
Cursor IDE
- Open Cursor Settings:
Ctrl+Shift+J
(Windows/Linux) orCmd+Shift+J
(Mac). - Go to MCP → Add new global MCP Server
- Paste the configuration from Step 1
- Save and restart Cursor.
Claude desktop
- Open your configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Add the configuration from Step 1.
- Save and restart Claude Desktop.
VS Code
- Install the MCP extension for VS Code.
- Open VS Code settings → MCP configuration.
- Add the configuration from Step 1.