The Burq Model Context Protocol (MCP) server enables AI-powered code editors like Cursor and Windsurf, plus general-purpose tools like Claude Desktop, to interact directly with your Burq API and documentation.
Note: using the Burq API requires authentication.
What is MCP?
Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The Burq MCP server provides AI agents with:
- Direct API access to Burq functionality
- Documentation search capabilities
- Real-time data from your Burq account
- Code generation assistance for Burq integrations
Burq MCP Server Setup
Burq hosts a remote MCP server at https://burq.readme.io/mcp. Configure your AI development tools to connect to this server. If your APIs require authentication, you can pass in headers via query parameters or however headers are configured in your MCP client.
Add to~/.cursor/mcp.json:
{
"mcpServers": {
"burq": {
"url": "https://burq.readme.io/mcp"
}
}
}Testing Your MCP Setup
Once configured, you can test your MCP server connection:
- Open your AI editor (Cursor, Windsurf, etc.)
- Start a new chat with the AI assistant
- Ask about Burq - try questions like:
- "How do I create an order?"
- "Show me an example of getting a delivery quote."
- "Create an API for my business to do deliveries with Burq."
The AI should now have access to your Burq account data and documentation through the MCP server.
