vMCP

vMCP

A unified gateway for Model Context Protocol servers, enabling access to multiple scientific computing tools through a single interface.

Category
Visit Server

README

vMCP - Virtual Model Context Protocol

CI codecov Python 3.10+ License: MIT Code style: ruff uv

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

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Run tests (uv run pytest)
  5. Commit your changes (git commit -m 'Add amazing feature')
  6. Push to the branch (git push origin feature/amazing-feature)
  7. 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


Made with ā¤ļø for the MCP community

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured