Biel.ai MCP Server Connect your IDE to your product docs Give AI tools like Cursor, VS Code, and Claude Desktop access to your company's product knowledge through the Biel.ai platform. 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 s
Add this skill
npx mdskills install TechDocsStudio/biel-mcpWell-documented MCP server connecting AI tools to hosted documentation via RAG
1<div align="center">2 <picture>3 <source media="(prefers-color-scheme: dark)" srcset="./logo-dark..jpg" />4 <img alt="Biel.ai" src="./logo.jpg" />5 </picture>6 <h1>Biel.ai MCP Server</h1>7 <h3>Connect your IDE to your product docs</h3>8</div>91011Give AI tools like Cursor, VS Code, and Claude Desktop access to your company's product knowledge through the [Biel.ai platform](https://biel.ai).1213Biel.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.14151617When AI tools can read your product documentation, they become **significantly** more helpful—generating more accurate code completions, answering technical questions with context, and guiding developers with real-time product knowledge.181920> **Note:** Requires a Biel.ai account and project setup. **[Start your free 15-day trial](https://app.biel.ai/accounts/signup/)**.2122<h3><a href="https://docs.biel.ai/integrations/mcp-server?utm_source=github&utm_medium=referral&utm_campaign=readme">See quickstart instructions →</a></h3>2324## Getting started2526### 1. Get your MCP configuration2728```json29{30 "mcpServers": {31 "biel-ai": {32 "description": "Query your product's documentation, APIs, and knowledge base.",33 "command": "npx",34 "args": [35 "mcp-remote",36 "https://mcp.biel.ai/sse?project_slug=YOUR_PROJECT_SLUG&domain=https://your-docs-domain.com"37 ]38 }39 }40}41```4243**Required:** `project_slug` and `domain`44**Optional:** `api_key` (only needed for private projects)4546### 2. Add to your AI tool4748* **Cursor**: **Settings** → **Tools & Integrations* → **New MCP server**.49* **Claude Desktop**: Edit `claude_desktop_config.json`50* **VS Code**: Install **MCP extension**.5152### 3. Start asking questions5354```55Can you check in biel_ai what the auth headers are for the /users endpoint?56```5758## Self-hosting (Optional)5960For advanced users who prefer to run their own MCP server instance:6162### Local development63```bash64# Clone and run locally65git clone https://github.com/techdocsStudio/biel-mcp66cd biel-mcp67pip install -r requirements.txt68python biel_mcp_server.py69```7071### Docker deployment72```bash73# Docker Compose (recommended)74docker-compose up -d --build7576# Or Docker directly77docker build -t biel-mcp .78docker run -d -p 7832:7832 biel-mcp79```8081## Support8283- **Issues**: [GitHub Issues](https://github.com/techdocsStudio/biel-mcp/issues)84- **Contact**: [support@biel.ai](mailto:support@biel.ai)85- **Custom Demo**: [Book a demo](https://biel.ai/contact)86
Full transparency — inspect the skill content before installing.