- Biel.ai
Biel.ai
Biel.ai MCP Server
Biel.ai lets developers chat with technical documentation directly from their AI tools. Connect the MCP server and ask questions about a product's docs from Claude Desktop, Claude Code, Cursor, GitHub Copilot, Windsurf, Cline, or any MCP-compatible client. Answers come from the indexed documentation with sources, so no more copy-pasting docs into your AI.
What it does
- Ask the docs anything: natural language questions like "how do I authenticate" or "why am I getting a 401" get accurate answers with code snippets and source links.
- Built for technical content: Biel.ai parses OpenAPI specs, code blocks, configuration examples, and error messages as structured information, not flat text.
- Hosted, no local setup: connect via streamable HTTP. No installation required.
Quick start
Add this to your MCP client config:
{
"mcpServers": {
"biel-ai": {
"type": "streamable-http",
"url": "https://mcp.biel.ai/v2/YOUR_PROJECT_SLUG/mcp"
}
}
}
Replace YOUR_PROJECT_SLUG with your Biel.ai project slug. For private projects, append your API key: ?api_key=YOUR_KEY.
For clients without native remote MCP support, use mcp-remote:
{
"mcpServers": {
"biel-ai": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.biel.ai/v2/YOUR_PROJECT_SLUG/mcp"]
}
}
}
For documentation teams
Biel.ai indexes your docs once and serves them everywhere: an embeddable AI chat and search widget for your docs site (Docusaurus, Sphinx, MkDocs, Starlight, and any HTML site), this MCP server for AI coding tools, Slack, Discord and Teams bots, and a REST API. Analytics show which questions users ask and where your docs have gaps.
A self-hosted version of the MCP server is available at github.com/techdocsStudio/biel-mcp.
Links
- Website: biel.ai
- Docs: docs.biel.ai
- Free 14-day trial, no credit card required
服务器配置
{
"mcpServers": {
"biel-ai": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.biel.ai/v2/<YOUR_PROJECT_SLUG>/mcp"
]
}
}
}