Overview
You can connect Claude Code to Elitea through Model Context Protocol (MCP) and use:- Agents tagged with
mcp - Pipelines tagged with
mcp - Toolkit tools with Make Tools Available by MCP enabled
Prerequisites
Before you start, verify that you have:- Claude Code installed
- Python 3.10+ installed
- pipx installed
- elitea-mcp installed with
pipx - Elitea deployment URL (example:
https://next.elitea.ai) - Elitea personal access token from Create Personal Access Token
- Elitea project ID from AI Configuration
Install pipx & elitea-mcp
Install pipx and elitea-mcp on your operating system using one of the following methods.
macOS
Use the following commands to installpipx and elitea-mcp on macOS:
Windows
Use the following steps to installpipx and elitea-mcp on Windows:
-
Open PowerShell: Press
Windows key, type “PowerShell”, and press Enter. -
Install pipx:
-
Set up pipx path:
-
Install elitea-mcp:
Restart your terminal so
pipx and elitea-mcp are available in PATH.Configure Claude Code
Open the Claude Code MCP configuration and add an Elitea server entry.- In Claude Code Desktop, open Settings.
- Select Developer.
- In Local MCP Servers, select Edit Config to open the MCP configuration JSON file.
-
Add the Elitea MCP server parameters to the JSON file.

After updating the MCP configuration, fully close and reopen Claude Code Desktop before the configured MCP servers appear in the UI.
13with your Elitea project IDhttps://next.elitea.aiwith your Elitea URL<your_elitea_token>with your personal access token
Claude Code configuration location may vary by installation method and OS. Open Claude Code settings for Local MCP Servers and edit the generated config file there.
Make Elitea Items Available in MCP
Claude Code will only see Elitea items that are exposed through MCP. Tag agents and pipelines withmcp, or enable the MCP option on toolkit tools.
Agents
Add the tag mcp to the agent and save it.

mcp to the pipeline and save it.

- Open the Tools section.
- Select the tools you want to expose.
- Enable Make Tools Available by MCP.
- Save the toolkit.

Use Elitea Tools in Claude Code
After the MCP server is running in Claude Code:- Open Claude Code.
- Verify that the Elitea MCP server is shown as running.
- Start a prompt that requires an Elitea agent, pipeline, or toolkit tool.
- Claude Code will discover and use the available MCP tools.
Quick Troubleshooting
Elitea tools do not appear
Elitea tools do not appear
Check that:
- The agent or pipeline has the
mcptag. - The toolkit has Make Tools Available by MCP enabled.
- The correct project ID is used.
- The personal token is valid.
- The MCP server was restarted after changes.
elitea-mcp command is not found
elitea-mcp command is not found
Check that:
pipxwas installed successfully.- Your terminal was restarted.
elitea-mcpis available inPATH.
Server is added but not running
Server is added but not running
Check that:
- The config JSON is valid.
deployment_url,project_id, andauth_tokenare correct.elitea-mcpis up to date. If Claude Code cannot connect to the Elitea MCP server, upgrade it withpipx upgrade elitea-mcp.- Local firewall or security tools are not blocking the process.
Guides & References
- For more information, see Set Up a Local MCP Server (STDIO).
- For more information, see Elitea MCP Server (SSE).
- For more information, see Expose Elitea Tools via MCP.