ReadMe MCP Server
ReadMe Documentation MCP Server
This page covers the ReadMe.io documentation MCP server, which gives AI assistants access to bizSupply's public documentation. For the bizSupply API MCP server (which provides direct access to your data, plugins, and pipelines), see bizSupply MCP Server.
What Does This Server Do?
The ReadMe MCP server at https://bizsupply.readme.io/mcp allows AI assistants to search and reference bizSupply's public documentation. This is useful for:
- Answering questions about bizSupply concepts and APIs
- Finding documentation on plugin development, ontologies, and pipelines
- Code generation guidance based on official documentation
Note: This server provides documentation access only. It does NOT provide access to your bizSupply account data. For API access, use the bizSupply MCP Server.
Setup
Connect your AI development tools to the ReadMe documentation server at https://bizsupply.readme.io/mcp. No authentication is required.
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"bizsupply": {
"url": "https://bizsupply.readme.io/mcp"
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"bizsupply": {
"url": "https://bizsupply.readme.io/mcp"
}
}
}Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"bizsupply": {
"url": "https://bizsupply.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 bizSupply - try questions like:
- "How do I [common use case]?"
- "Show me an example of [API functionality]"
- "Create a [integration type] using bizSupply"
The AI should now have access to bizSupply documentation through the ReadMe MCP server.
Updated about 1 month ago