XLMCP
XLMCP is a Model Context Protocol server enabling AI assistants to interact with Jupyter notebooks, manage kernels, execute code, search knowledge bases, and track projects.
Jupyter Notebook Operations
List and find notebooks within specified directories
Get notebook info (cell counts, kernel info)
Read individual cells or all cells from a notebook
Append, insert, update, or delete cells
Kernel Management
List all running kernels with state and connection info
Start new kernels (e.g.,
python3)Stop, restart, or interrupt kernels by kernel ID
Code Execution
Execute arbitrary Python code in a running kernel
Connect to a notebook's kernel (reuses existing session or creates one); returns kernel ID and VS Code attach URL
Execute specific notebook cells and save outputs back to the notebook file
Knowledge Base / Semantic Search
Index directories of
.md,.py, and.ipynbfiles for semantic searchSearch with semantic similarity, tag filters, and metadata filters
List, refresh, or drop indexes; extract tags and metadata fields
Project Management
Create, list, and get detailed project info; update descriptions
Add and read timestamped log entries
Set and get machine-readable project context (next steps, blockers, working files, active research, knowledge bases)
Allows interaction with Jupyter notebooks and kernels via JupyterHub or standalone Jupyter Server, enabling code execution, cell operations, and kernel management.
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., "@XLMCPlist all notebooks in my research folder"
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.
AIX - AI eXtensions for quantitative development
Collection of MCP servers, agents, and extensions for quantitative development/research with Qubx.
XLMCP - Jupyter MCP Server
XLMCP gives Claude Code tools to interact with Jupyter notebooks running on JupyterHub or a standalone Jupyter Server — read/edit cells, manage kernels, and execute code.
Note: knowledge/RAG search and project-management tools were moved out of xlmcp (to the
crtx-serverproject) as of v0.5.0. xlmcp is now a focused Jupyter server.
Total Tools: 17 (Jupyter notebook, kernel, and execution operations)
Related MCP server: JupyterMCP
Quick Reference
Jupyter Tools (17)
# - Notebook operations
await jupyter_list_notebooks(directory="")
await jupyter_find_notebook(filename)
await jupyter_get_notebook_info(notebook_path)
await jupyter_read_cell(notebook_path, cell_index)
await jupyter_read_all_cells(notebook_path)
await jupyter_append_cell(notebook_path, source, cell_type="code")
await jupyter_insert_cell(notebook_path, cell_index, source, cell_type="code")
await jupyter_update_cell(notebook_path, cell_index, source)
await jupyter_delete_cell(notebook_path, cell_index)
# - Kernel operations
await jupyter_list_kernels()
await jupyter_start_kernel(kernel_name="python3")
await jupyter_stop_kernel(kernel_id)
await jupyter_restart_kernel(kernel_id)
await jupyter_interrupt_kernel(kernel_id)
# - Execution
await jupyter_execute_code(kernel_id, code, timeout=None)
await jupyter_connect_notebook(notebook_path)
await jupyter_execute_cell(notebook_path, cell_index, timeout=None)Connecting to a notebook's kernel
jupyter_connect_notebook resolves the kernel for a notebook by normalised path match (absolute /
server-relative / VS Code -jvsc-<uuid> synthetic paths all map to the same notebook), so it reuses the
live kernel instead of spawning duplicates. Its status:
existing— one live kernel matched; use itskernel_id.ambiguous— several matched; pick akernel_idfromcandidates(or stop the extras).created— none matched, a new session was made.
Every response includes attach_url — paste it into VS Code → Select Kernel → Existing Jupyter
Server to join the same kernel from the editor (the token authenticates directly to the single-user
server, bypassing the Hub login dialog).
Installation
From PyPI (Recommended)
pip install xlmcp
# - or using uv
uv pip install xlmcpFrom Source
cd ~/devs/aix
uv pip install -e .Configuration
Environment Setup
Copy
env.exampleto.env:
cp env.example .envEdit
.envand configure:
Jupyter Server (Required):
JUPYTER_SERVER_URL=http://localhost:8888
JUPYTER_API_TOKEN=your-token-here
JUPYTER_NOTEBOOK_DIR=~/
JUPYTER_ALLOWED_DIRS=~/projects,~/devs,~/researchMCP Server (Optional, defaults provided):
MCP_TRANSPORT=stdio
MCP_HTTP_PORT=8765
MCP_MAX_OUTPUT_TOKENS=25000Get a Jupyter API Token
JupyterHub: Admin panel → User → New API Token
Jupyter Server:
jupyter server listshows the token
Global Setup (Multi-Project Environments)
For users with multiple projects and virtual environments:
1. Install xlmcp Globally
# Install in system Python (not in project venvs)
pip install xlmcp
# or: /usr/bin/python -m pip install xlmcp2. Create Central Configuration
mkdir -p ~/.aix/xlmcp
cp env.example ~/.aix/xlmcp/.env
nano ~/.aix/xlmcp/.env # Add your JUPYTER_API_TOKENxlmcp finds config in this order:
.envin the current directory (project-specific override)~/.aix/xlmcp/.env(global default) ← RecommendedEnvironment variables
3. Register with Claude Code
cd /path/to/project
source .venv/bin/activate # if using a venv
claude mcp add --transport stdio xlmcp -- /usr/bin/python -m xlmcp.serverReplace /usr/bin/python with your system Python (which python outside any venv).
Verify:
claude mcp list
# Should show: xlmcp: /usr/bin/python -m xlmcp.server - ✓ ConnectedSimple Setup (Single Project / Quick Start)
pip install xlmcp
cp env.example .env
nano .env # Add JUPYTER_API_TOKEN
claude mcp add --transport stdio xlmcp -- python -m xlmcp.serverOr with environment variables (no .env file needed):
claude mcp add \
-e JUPYTER_SERVER_URL=http://localhost:8888 \
-e JUPYTER_API_TOKEN=your-token \
--transport stdio \
xlmcp \
-- python -m xlmcp.serverThe -- before python separates MCP options from the server command.
XLMCP CLI
xlmcp start # Start server in background
xlmcp status # Show server status
xlmcp ls # List available tools
xlmcp kernels # List active Jupyter kernels
xlmcp restart # Restart server
xlmcp stop # Stop serverUsage Examples
> Connect to my notebook and execute the first cell
> List all notebooks in research/momentum/
> Execute code: print("Hello from Jupyter!")
> Restart the kernel for research/analysis.ipynbTransport Modes
stdio (default) — for local Claude Code:
MCP_TRANSPORT=stdiohttp — for remote access:
MCP_TRANSPORT=http
MCP_HTTP_PORT=8765
claude mcp add xlmcp --transport http http://your-server:8765Security
Path validation: only allows access to configured directories
Token authentication: uses Jupyter API tokens
Timeout limits: prevents runaway executions
Documentation
Usage Guide — installation, configuration, CLI, usage examples
Implementation — technical architecture and design details
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/xLydianSoftware/aix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server