Skip to main content

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
tip

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:

ToolDescription
search_docsFull-text search across all InLoox documentation. Returns matching pages with titles, descriptions, and content snippets.
get_pageRetrieve the complete Markdown content of a specific documentation page by its path.
list_pagesList all pages in a specific content area (e.g., api, docs, outlook).
get_structureGet the full navigation structure of the documentation as a hierarchical outline.

All tools support both English (en) and German (de) locales.


Claude Desktop

  1. Open or create the Claude Desktop configuration file:
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the InLoox Docs server to the mcpServers section:
{
"mcpServers": {
"inloox-docs": {
"url": "https://docs.inloox.com/mcp"
}
}
}
  1. 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

  1. Open or create the MCP configuration file:
    • Global (all projects): ~/.cursor/mcp.json
    • Project-specific: .cursor/mcp.json in the project root
  2. Add the InLoox Docs server:
{
"mcpServers": {
"inloox-docs": {
"url": "https://docs.inloox.com/mcp"
}
}
}
  1. 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.

  1. Create or open .vscode/mcp.json in your project:
{
"servers": {
"inloox-docs": {
"type": "http",
"url": "https://docs.inloox.com/mcp"
}
}
}
  1. In the Copilot Chat panel, switch to Agent mode. The InLoox Docs tools will be available to Copilot when answering InLoox-related questions.
tip

You can also add the server to your User settings (settings.json) under "mcp.servers" to make it available in all workspaces.


Windsurf

  1. Open or create the Windsurf MCP configuration file:
    • macOS / Linux: ~/.codeium/windsurf/mcp_config.json
    • Windows: %USERPROFILE%\.codeium\windsurf\mcp_config.json
  2. Add the InLoox Docs server:
{
"mcpServers": {
"inloox-docs": {
"serverUrl": "https://docs.inloox.com/mcp"
}
}
}
  1. 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:

AreaDescription
docsMain product help for InLoox
learnVideo tutorial learning center
apiOData REST API reference
outlookInLoox for Microsoft Outlook add-in
teamsInLoox for Microsoft Teams setup
self-hostedOn-premise installation and configuration
mobileInLoox 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.