vMCP
A unified gateway for Model Context Protocol servers, enabling access to multiple scientific computing tools through a single interface.
README
vMCP - Virtual Model Context Protocol
A unified gateway for Model Context Protocol (MCP) servers, inspired by the DXT (Desktop Extensions) specification
vMCP provides a Virtual File System-like abstraction layer that aggregates multiple MCP servers through a single interface, enabling seamless access to diverse tools and capabilities from scientific computing, data analysis, and more.
š What is vMCP?
vMCP (Virtual Model Context Protocol) is a gateway and proxy system that:
- Unifies Multiple MCP Servers: Access 14+ scientific computing tools through a single interface
- DXT-Inspired Architecture: Uses extension packaging similar to VS Code or Chrome extensions
- Extension Management: Install, enable, disable, and manage MCP servers like browser extensions
- Persona Support: Control which tools are available to different users/contexts
- stdio Transport: Compatible with Claude Desktop and other MCP clients
Think of vMCP as a "package manager for MCP servers" with a unified gateway interface.
š Quick Start
Prerequisites
- Python 3.10+
- uv package manager
Installation
# Clone and install
git clone https://github.com/JaimeCernuda/vmcp.git
cd vmcp
uv sync --all-extras
# Initialize configuration
uv run vmcp config init
# List available extensions
uv run vmcp extension list
Basic Usage
# Install and enable an extension
uv run vmcp extension install arxiv-mcp
uv run vmcp extension enable arxiv-mcp
# Start the vMCP gateway
uv run vmcp start
# Now Claude Desktop can connect to vMCP as a single MCP server
# and access all enabled extensions through the unified interface
š¦ Available Extensions
vMCP comes with 14 pre-packaged scientific computing extensions:
| Extension | Category | Description |
|---|---|---|
| adios-mcp | Scientific Computing | ADIOS2 dataset access for simulation data |
| arxiv-mcp | Research | Academic paper search and download |
| chronolog-mcp | Data Management | Time-series data logging and retrieval |
| compression-mcp | Data Processing | High-performance data compression |
| darshan-mcp | Performance | I/O profiling for HPC applications |
| hdf5-mcp | Data Management | HDF5 file operations and analysis |
| jarvis-mcp | Materials Science | Materials database access and analysis |
| node-hardware-mcp | System Monitoring | Hardware monitoring and system info |
| pandas-mcp | Data Analysis | Data manipulation with pandas |
| parallel-sort-mcp | Data Processing | High-performance parallel sorting |
| plot-mcp | Visualization | Data visualization and plotting |
| slurm-mcp | Job Scheduling | SLURM cluster job management |
| lmod-mcp | Environment | Environment module management |
| parquet-mcp | Data Management | Columnar data processing |
šļø System Architecture
graph TB
A[Claude Desktop] --> B[vMCP Gateway]
B --> C[Extension Manager]
B --> D[Registry System]
B --> E[Routing Engine]
C --> F[Extension Repository]
F --> G[arxiv-mcp.vext]
F --> H[pandas-mcp.vext]
F --> I[plot-mcp.vext]
F --> J[... 11 more]
E --> K[Enabled Extensions]
K --> L[ArXiv Tools]
K --> M[Pandas Tools]
K --> N[Plot Tools]
Key Components
- Gateway Server: stdio transport compatible with MCP clients
- Extension Manager: DXT-inspired extension lifecycle management
- Repository System: Manages extension packages (.vext files)
- Registry: Tracks installed and enabled extensions
- Routing Engine: Routes requests to appropriate MCP servers
- Persona System: Access control and tool restrictions (planned)
š Tutorial & Commands
Extension Management
List Extensions
# List all available extensions
uv run vmcp extension list
# List only installed extensions
uv run vmcp extension list --installed
# List only enabled extensions
uv run vmcp extension list --enabled
# JSON format for scripting
uv run vmcp extension list --format json
Install Extensions
# Install from built-in repository
uv run vmcp extension install pandas-mcp
# Install from specific repository
uv run vmcp extension install pandas-mcp --repository builtin
Enable/Disable Extensions
# Enable an extension (makes it available to vMCP)
uv run vmcp extension enable pandas-mcp
# Enable with custom configuration
uv run vmcp extension enable pandas-mcp --config '{"debug": true}'
# Disable an extension
uv run vmcp extension disable pandas-mcp
Extension Information
# Detailed information about an extension
uv run vmcp extension info pandas-mcp
# Shows: description, tools, status, installation path, etc.
Update & Uninstall
# Update an extension
uv run vmcp extension update pandas-mcp
# Uninstall an extension
uv run vmcp extension uninstall pandas-mcp
# Force uninstall (even if enabled)
uv run vmcp extension uninstall pandas-mcp --force
Gateway Operations
Start/Stop Gateway
# Start vMCP gateway with default config
uv run vmcp start
# Start with custom config
uv run vmcp start --config my-config.toml
# Stop the gateway
uv run vmcp stop
# Check gateway status
uv run vmcp status
System Information
# List all registered servers
uv run vmcp list
# Show detailed system information
uv run vmcp info
# Health monitoring
uv run vmcp health check
# System metrics
uv run vmcp metrics show
Configuration Management
# Create default configuration
uv run vmcp config init
# Create config at specific location
uv run vmcp config init --output /path/to/config.toml
# Validate configuration file
uv run vmcp config validate config.toml
Repository Management
# Search for extensions
uv run vmcp repo search pandas
# Repository statistics
uv run vmcp repo stats
# Discover available extensions
uv run vmcp repo discover
Shell Completion
# Generate bash completion
uv run vmcp completion bash
# Generate zsh completion
uv run vmcp completion zsh
# Add to your shell profile
uv run vmcp completion bash >> ~/.bashrc
āļø Configuration
Basic Configuration (vmcp_config.toml)
version = "0.1.0"
[gateway]
registry_path = "~/.vmcp/registry"
log_level = "INFO"
cache_enabled = true
cache_ttl = 300
max_connections = 1000
request_timeout = 30
[routing]
default_strategy = "hybrid"
load_balancer = "round_robin"
[transports.stdio]
enabled = true
[transports.http]
enabled = false
port = 3000
host = "127.0.0.1"
[transports.websocket]
enabled = false
port = 3001
host = "127.0.0.1"
Claude Desktop Integration
To connect Claude Desktop to vMCP, add this to your Claude Desktop MCP configuration:
{
"mcpServers": {
"vmcp": {
"command": "uv",
"args": ["run", "vmcp", "start"],
"cwd": "/path/to/vmcp"
}
}
}
ā What vMCP Can Do
- ā Extension Management: Install, enable, disable MCP servers like browser extensions
- ā Unified Gateway: Single stdio interface to access multiple MCP servers
- ā DXT-Inspired Architecture: Professional extension packaging and management
- ā Rich CLI: Beautiful, colored command-line interface with tab completion
- ā Repository System: Centralized extension repository with 14 scientific tools
- ā Configuration Management: Flexible TOML-based configuration
- ā Health Monitoring: Monitor extension health and performance
- ā FastMCP Compatibility: Works with both standard MCP and FastMCP servers
ā What vMCP Cannot Do Yet
- ā Persona System: User-based access control (planned)
- ā Dynamic Loading: Runtime loading/unloading of extensions (planned)
- ā HTTP/WebSocket Transports: Only stdio transport currently supported
- ā Extension Development Tools: No scaffolding for creating new extensions
- ā Remote Repositories: Only local built-in repository supported
- ā Extension Dependencies: No dependency resolution between extensions
- ā Hot Reload: Extensions require gateway restart to reload
š ļø Development
Running Tests
# Run all tests
uv run pytest
# Run with coverage
uv run pytest --cov=src/vmcp
# Run specific test categories
uv run pytest -m unit
uv run pytest -m integration
Code Quality
# Format code
uv run ruff format .
# Lint code
uv run ruff check .
# Type checking
uv run mypy src/vmcp
GitHub Actions
The project includes comprehensive CI/CD:
- ā Multi-Python version testing (3.10, 3.11, 3.12)
- ā Code formatting and linting
- ā Type checking
- ā Security auditing
- ā Package building
š§ Technical Details
Extension Package Format
vMCP uses .vext (vMCP Extension) files, similar to DXT's .dxt format:
extension.vext
āāā manifest.json # DXT-style manifest
āāā src/
ā āāā server.py # MCP server entry point
ā āāā capabilities/ # Tool implementations
āāā tests/ # Extension tests
āāā README.md # Extension documentation
Manifest Structure
{
"$schema": "https://vmcp.dev/schemas/manifest.json",
"vmcp_version": "0.1.0",
"name": "pandas-mcp",
"display_name": "Pandas MCP Server",
"version": "0.1.0",
"description": "Data analysis with pandas",
"author": {
"name": "Author Name",
"email": "author@example.com"
},
"tools": [
{
"name": "data_profiling",
"description": "Profile datasets and generate statistics"
}
],
"server": {
"type": "python",
"mcp": {
"command": "uv",
"args": ["run", "--directory", "{EXTENSION_DIR}", "python", "src/server.py"]
}
}
}
š¤ Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes
- Run tests (
uv run pytest) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
š License
This project is licensed under the MIT License - see the LICENSE file for details.
š Acknowledgments
- Anthropic for the Model Context Protocol specification
- DXT Project for extension architecture inspiration
- iowarp-mcps for the scientific computing MCP servers
- uv for fast Python package management
- Rich for beautiful terminal output
š Support
- š Issues: GitHub Issues
- š Documentation: Project Wiki
- š¬ Discussions: GitHub Discussions
Made with ā¤ļø for the MCP community
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.