InLoox Documentation MCP
The InLoox Documentation MCP is a Model Context Protocol server that gives AI assistants and coding tools direct access to the full InLoox product documentation. Once connected, your AI tool can search, browse, and read InLoox help articles to answer questions, generate integration code, and guide users through InLoox workflows — without leaving your IDE or chat interface.
MCP endpoint:
https://docs.inloox.com/mcp
The MCP server is public and requires no authentication. Simply add the URL above to your AI tool and start using InLoox documentation as a knowledge source.
Available Tools
The MCP server exposes four tools that AI assistants can call:
| Tool | Description |
|---|---|
search_docs | Full-text search across all InLoox documentation. Returns matching pages with titles, descriptions, and content snippets. |
get_page | Retrieve the complete Markdown content of a specific documentation page by its path. |
list_pages | List all pages in a specific content area (e.g., api, docs, outlook). |
get_structure | Get the full navigation structure of the documentation as a hierarchical outline. |
All tools support both English (en) and German (de) locales.
Connect to Popular AI Tools
Claude Desktop
- Open or create the Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Add the InLoox Docs server to the
mcpServerssection:
{
"mcpServers": {
"inloox-docs": {
"url": "https://docs.inloox.com/mcp"
}
}
}
- Restart Claude Desktop. You can now ask questions like "How do I create a project in InLoox?" and Claude will consult the documentation directly.
Cursor
- Open or create the MCP configuration file:
- Global (all projects):
~/.cursor/mcp.json - Project-specific:
.cursor/mcp.jsonin the project root
- Global (all projects):
- Add the InLoox Docs server:
{
"mcpServers": {
"inloox-docs": {
"url": "https://docs.inloox.com/mcp"
}
}
}
- Restart Cursor. In Agent mode, Cursor can now look up InLoox documentation when answering questions about InLoox integrations or API usage.
VS Code (GitHub Copilot)
VS Code supports MCP servers in agent mode starting with GitHub Copilot.
- Create or open
.vscode/mcp.jsonin your project:
{
"servers": {
"inloox-docs": {
"type": "http",
"url": "https://docs.inloox.com/mcp"
}
}
}
- In the Copilot Chat panel, switch to Agent mode. The InLoox Docs tools will be available to Copilot when answering InLoox-related questions.
You can also add the server to your User settings (settings.json) under "mcp.servers" to make it available in all workspaces.
Windsurf
- Open or create the Windsurf MCP configuration file:
- macOS / Linux:
~/.codeium/windsurf/mcp_config.json - Windows:
%USERPROFILE%\.codeium\windsurf\mcp_config.json
- macOS / Linux:
- Add the InLoox Docs server:
{
"mcpServers": {
"inloox-docs": {
"serverUrl": "https://docs.inloox.com/mcp"
}
}
}
- Restart Windsurf. Cascade can now search and read InLoox documentation to assist with InLoox integrations and API questions.
Example Prompts
Once connected, you can use prompts like these with your AI tool:
- "How do I authenticate with the InLoox API?"
- "Show me an example of creating a project via the InLoox OData API."
- "What permissions are required to manage budgets in InLoox?"
- "How do I set up the InLoox for Microsoft Teams integration?"
- "What are the available OData filter options for InLoox tasks?"
Content Areas
The MCP server covers all InLoox documentation sections:
| Area | Description |
|---|---|
docs | Main product help for InLoox |
learn | Video tutorial learning center |
api | OData REST API reference |
outlook | InLoox for Microsoft Outlook add-in |
teams | InLoox for Microsoft Teams setup |
self-hosted | On-premise installation and configuration |
mobile | InLoox mobile app |
You can filter any tool call to a specific area — for example, to search only the API reference or only the Outlook add-in documentation.