The Lemonway Documentation Model Context Protocol (MCP) server enables AI-powered code editors like Cursor and general-purpose tools like Claude Desktop to interact directly with your Lemonway Documentation API and documentation.
What is MCP?
Model Context Protocol (MCP) is an open standard that allows AI applications to access external data sources and tools securely. The Lemonway Documentation MCP server provides AI agents with:
- Direct API access to Lemonway Documentation functionality
- Documentation search capabilities
- Code generation assistance for Lemonway Documentation integrations
flowchart LR
A[AI Assistant] --> B[Lemonway MCP Server]
B --> C[Functional Documentation]
B -.- D[Lemonway API Shemas]
Lemonway Documentation MCP Server Setup
Lemonway Documentation hosts a remote MCP server at https://documentation.lemonway.com/mcp. Configure your AI development tools to connect to this server.
Add to~/.cursor/mcp.json:
{
"mcpServers": {
"lemonportal": {
"url": "https://documentation.lemonway.com/mcp"
}
}
}Testing Your MCP Setup
Once configured, you can test your MCP server connection:
- Open your AI editor (Cursor, etc.)
- Start a new chat with the AI assistant
- Ask about Lemonway Documentation - try questions like:
- "How do I [common use case]?"
- "Show me an example of [API functionality]"
- "Create a [integration type] using Lemonway Documentation"
Note
We do not offer direct connection to Lemonway's API from the documentation. If you would like to test the API in real-time see our Postman collection.
