Nextpertise MCP Server

The Nextpertise API Model Context Protocol (MCP) server enables AI-powered code editors like PyCharm (with Junie), Cursor, and general-purpose tools like Claude Desktop, to interact directly with your Nextpertise API and documentation.

What is MCP?

Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The Nextpertise API MCP server provides AI agents with:

  • Direct API access to Nextpertise API functionality
  • Documentation knowledge and search capabilities
  • Code generation assistance for Nextpertise API integrations

Nextpertise API MCP Server Setup

Nextpertise API hosts a remote MCP server at https://docs.nextpertise.nl/mcp. Configure your AI development tools to connect to this server.

The MCP server can be used for Jetbrains IDEs (Webstorm, PyCharm, IntelliJ, etc.). To configure it for the Junie assistant, Go toSettings > Tools > Junie > MCP Settings and edit to add:

{
    "mcpServers": {
        "nextpertise-api": {
            "command": "npx",
            "type": "stdio",
            "args": [
                "mcp-remote",
                "https://docs.nextpertise.nl/mcp"
            ]
        }
    }
}

Testing Your MCP Setup

Once configured, you can test your MCP server connection:

  1. Start a new chat with the AI assistant
  2. Ask about the Nextpertise API - try questions like:
    • "How do I view which [SLA products] are available on a connection?"
    • "How can I see the status of my [fulfillment order?]"
    • "Create a [change connection page] using the Nextpertise API"