Local MCP Server for Claude Desktop
Connect Claude Desktop to Prometheux using the Model Context Protocol (MCP) — an open standard that enables AI assistants to interact with external tools and data sources. The local MCP server (prometheux-mcp) runs on your machine alongside Claude Desktop, providing a simple and secure way to integrate AI agents with your Prometheux ontologies.
Why Use Local MCP?
Best for: Claude Desktop users, development environments, on-premise deployments Pros:- Simple pip install
- Runs locally (no external dependencies)
- Full control over credentials
- Works with any Prometheux instance (cloud or on-premise)
- Requires Claude Desktop app (not available for Claude Web)
- Needs to be installed on each machine
- You’re using Claude Desktop
- You want a simple, local installation
- You’re developing or testing locally
If you want to connect from Claude Web, Genie Code, or any other MCP client, check out the Remote MCP Server and the Client Guides.
Quick Start
Prerequisites
- Prometheux account with access to a deployed instance
- Claude Desktop installed on your machine (download here)
- Your credentials: token, username, and organization from your Prometheux admin
Installation
- Automated (Recommended)
- Manual Install
Easiest method - download and run our installation script:macOS/Linux:Windows (PowerShell):The script will:
- Install
pipx(if not already installed) - Install
prometheux-mcppackage from PyPI - Prompt for your credentials (URL, token, username, organization)
- Automatically configure Claude Desktop
- Create backups of existing configuration
Configuration
If you used the automated installation script, configuration was done automatically. Skip to the Usage section below.
1. Get Your Credentials
You’ll need:- Server URL (e.g.,
https://api.prometheux.aior your on-premise URL) - Authentication token
- Username
- Organization
2. Configure Claude Desktop
Edit the Claude Desktop configuration file:- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
- Configuration
- With Debug Mode
3. Restart Claude Desktop
Completely quit Claude Desktop (Cmd+Q on macOS, or close from system tray) and reopen it. The MCP server will start automatically when Claude launches.Usage
Once configured, just chat naturally with Claude. The AI will automatically use the Prometheux MCP tools when relevant.Troubleshooting
”command not found” or “Server disconnected” error
Claude Desktop can’t find theprometheux-mcp command.
Solution:
Manual fix:
macOS:
- Find the full path:
which prometheux-mcp - Use that full path in your config (usually
/Users/YOUR_USERNAME/.local/bin/prometheux-mcp) - Restart Claude Desktop completely (Cmd+Q, then reopen)
- Find the full path:
where prometheux-mcp(in PowerShell or Command Prompt) - Use that full path in your config with double backslashes (e.g.,
C:\\Users\\YOUR_USERNAME\\.local\\bin\\prometheux-mcp.exe) - Restart Claude Desktop
- Find the full path:
which prometheux-mcp - Use that full path in your config (usually
/home/YOUR_USERNAME/.local/bin/prometheux-mcp) - Restart Claude Desktop
”Connection refused” error
The MCP server can’t reach your Prometheux instance. Solution:- Verify your server URL is correct and accessible
- Test the connection:
curl https://your-server-url/mcp/info - Check if you’re behind a VPN or firewall that might block access
- For on-premise installations, ensure the server is running
”Authentication failed” error
Your credentials are incorrect or expired. Solution:- Double-check your token, username, and organization in the config
- Verify the credentials with your Prometheux admin
- Ensure there are no extra spaces or quotes in the JSON config
- Check if your token has expired and needs renewal
Claude doesn’t use the tools
Claude might not realize the tools are relevant to your query. Solution:- Be more explicit: “Use the prometheux tools to list concepts in project X”
- Check Claude Desktop’s console for MCP errors (View > Developer > Toggle Developer Tools)
- Enable debug mode in your config (
--debugflag) and check logs - Verify the server is connected: look for the hammer icon in Claude Desktop
Advanced Usage
Using MCP Programmatically
You can also use the Prometheux MCP package as a Python library:Local Development
To test MCP locally with your development instance:Learn More
- MCP Protocol Specification: modelcontextprotocol.io
- Local MCP Server (GitHub): prometheuxresearch/px-mcp-server
- Local MCP Server (PyPI): prometheux-mcp
- Remote MCP Server: See Remote MCP Server for Claude Web integration
- Python SDK: See Python SDK Reference for alternative integration methods
- REST API: See REST API Reference for direct HTTP access
Related Resources
- Concepts API - Learn about the concept API
- Python SDK - Alternative programmatic access
- Chat API - Interactive AI chat interface

