Development Server
Start and manage the MCP registry development server.
Usage
/dev - Start dev server (port 3333)
/dev --port 4000 - Start on custom port
/dev status - Check if server is running
/dev stop - Stop running server
/dev restart - Restart the server
/dev logs - View recent server logs
Default Configuration
| Setting | Value | Environment Variable |
|---|---|---|
| Port | 3333 | MCP_PORT |
| Mode | development | NODE_ENV |
| Exchange | enabled | EXCHANGE_ENABLED |
| Mock Mode | true (dev) | EXCHANGE_MOCK_MODE |
Examples
# Start development server
bun run dev
# Start on custom port
MCP_PORT=4000 bun run dev
# Start with exchange disabled
EXCHANGE_ENABLED=false bun run dev
# Start with production-like settings
NODE_ENV=production EXCHANGE_MOCK_MODE=false bun run dev
Health Check
# Verify server is running
curl http://localhost:3333/mcp/health
Related Skills
/test- Run test suites/bench- Performance benchmarks/exchange- Exchange operations
Converted and distributed by TomeVault — claim your Tome and manage your conversions.