Xplainable MCP Server
OfficialHTTP client tool used for testing inference endpoints and API connectivity
Containerized deployment option for running the MCP server in production environments
Environment variable management for secure API key and configuration handling
Version control integration for managing MCP server source code and installations
Source code hosting and distribution platform for installing the MCP server directly from repositories
Supported platform for Claude Desktop configuration and MCP server deployment
Supported platform for Claude Desktop configuration and MCP server deployment
Documentation format support for generating tool documentation and reports
Uses Pydantic models for full validation of all inputs and outputs to ensure type safety across API interactions
Provides testing framework for development and validation of MCP server functionality
Python-based MCP server implementation for integrating with the Xplainable AI platform
Code linting and formatting tool used in the development workflow
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Xplainable MCP Serverlist my deployed models"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Xplainable MCP Server
A Model Context Protocol server for the
Xplainable platform. It lets an LLM agent
(Claude, or any MCP client) train, deploy, optimise, and explain
transparent machine-learning models through a small set of goal-oriented
workflow_* tools.
Training runs server-side on Xplainable's agentic pipeline — the MCP host never fits a model locally.
Two Ways to Use It
Hosted — connect your MCP client to
https://mcp.xplainable.io(OAuth login, no installation).Local — run the server yourself over stdio with an Xplainable API key. This is what the rest of this README covers.
Related MCP server: OSDU MCP Server
Quick Start (Local)
1. Get an API key
Create one at platform.xplainable.io.
2a. Claude Code
claude mcp add xplainable \
-e XPLAINABLE_API_KEY=your-api-key-here \
-- uvx --from git+https://github.com/xplainable/xplainable-mcp-server.git xplainable-mcp2b. Claude Desktop
Add to your MCP settings file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"xplainable": {
"command": "uvx",
"args": ["--from", "git+https://github.com/xplainable/xplainable-mcp-server.git", "xplainable-mcp"],
"env": {
"XPLAINABLE_API_KEY": "your-api-key-here"
}
}
}
}No uv? Clone and install instead:
git clone https://github.com/xplainable/xplainable-mcp-server.git
cd xplainable-mcp-server
python -m venv .venv && source .venv/bin/activate
pip install -e .then use "command": "/path/to/xplainable-mcp-server/.venv/bin/xplainable-mcp"
(no args) in the config above.
3. Try it
Ask your agent: "What models and datasets do I have?" — it should call
workflow_list_assets.
The Workflow Loop
The curated workflow_* tools cover the whole journey:
workflow_list_assets— find a dataset (and see existing models / deployments)workflow_train_model(dataset_id, goal, model_name)— returns arun_idLoop:
workflow_wait_for_update(run_id)— narrate progress as events arrive; if a decision is pending, relay it to the user and submit their answer viaworkflow_decide(the run's two gates: label selection and training approval)workflow_deploy_model(model_id)— deploy after the run completes (there is no deployment gate inside the run)Act on the model:
workflow_optimise_model/workflow_predict(scores rows with the trained model via the platform inference route — no deployment needed) /workflow_explain_model/workflow_create_report
Tool Surface
By default the server registers the curated surface: 28 tools — the 9
workflow_* tools above, plus 16 curated read/health tools across
datasets, models, deployments, optimisers, runs, agentic state, and
gateway health, plus 3 team-selection tools (list_user_teams,
set_active_team, select_team).
Set XPLAINABLE_ADVANCED_TOOLS=1 (accepted values: 1, true, yes) to
register the full surface (~104 tools), adding write/admin tools for
preprocessing, monitors, GPT reports, inference, and low-level agentic run
control.
Tool files under xplainable_mcp/tools/ are auto-generated from
@mcp_tool-decorated client methods (see "Synchronization with
xplainable-client" below) — each tool carries tags (e.g. curated,
workflow, read, write) that drive this gating. Do not hand-edit
generated tool files.
Configuration
Variable | Required | Description |
| yes (local) | API key from platform.xplainable.io |
| no | Platform host override (defaults to |
| no | Org/team binding, if your API key is not bound to a team |
| no |
|
| no |
|
| no |
|
See .env.example. The API key is read from the environment only and is never exposed through a tool.
CLI
xplainable-mcp-cli list-tools # list all available tools
xplainable-mcp-cli validate-config # check env configuration
xplainable-mcp-cli test-connection # test API connectivity
xplainable-mcp-cli generate-docs # generate tool documentationDocker (HTTP mode)
cp .env.example .env # fill in your API key
docker compose up --buildThe container serves streamable-HTTP on port 8000 with a /health
endpoint. For anything beyond localhost, terminate TLS at a reverse proxy.
Development
git clone https://github.com/xplainable/xplainable-mcp-server.git
cd xplainable-mcp-server
pip install -e ".[dev]"
pytest # run tests
ruff check . # lintSynchronization with xplainable-client
Tool files are generated from the xplainable-client package:
# Check if sync is needed / regenerate tool files
python scripts/sync_workflow.py --sync-files
# Generate a detailed report
python scripts/sync_workflow.py --markdown sync_report.mdSee examples/SYNC_WORKFLOW.md and
examples/sync_scenarios.md for the full
process. Run the sync with the pinned xplainable-client version
installed, and with Python 3.11+.
Compatibility
MCP Server | xplainable-client | fastmcp |
current (main) | >=1.8.0 | >=2.0.0,<3.0.0 |
Contributing
See CONTRIBUTING.md.
License
MIT License — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
Alicense-qualityAmaintenanceEnables AI assistants to interact with Scalekit's identity and access management platform through natural language queries. Supports managing environments, organizations, users, OIDC connections, workspace operations, and MCP server configurations with OAuth-protected access.Last updated3295Apache 2.0- Alicense-qualityAmaintenanceEnables AI assistants to interact with OSDU platform services including search, data management, and schema operations.Last updated6Apache 2.0
- Flicense-qualityDmaintenanceEnables routing of AI model requests for code generation and debugging with API key authentication and rate limiting.Last updated1
- AlicenseAqualityCmaintenanceAI gateway to unify authentication and expose internal APIs as MCP tools. Supports SSO, JWT, and basic auth with auto-refresh.Last updated616MIT
Related MCP Connectors
Enterprise AI Control Plane: governance, guardrails, spend tracking, compliance & smart routing.
Create, test, publish, and manage Dreamlit notification workflows from AI clients.
Runtime permission, approval, and audit layer for AI agent tool execution.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xplainable/xplainable-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server