Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Guidance for integrating MCP (Model Context Protocol) servers into Claude Code plugins.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/stdio-server.json
1{2"_comment": "Example stdio MCP server configuration for local file system access",3"filesystem": {4"command": "npx",5"args": ["-y", "@modelcontextprotocol/server-filesystem", "${CLAUDE_PROJECT_DIR}"],6"env": {7"LOG_LEVEL": "info"8}9},10"database": {11"command": "${CLAUDE_PLUGIN_ROOT}/servers/db-server.js",12"args": ["--config", "${CLAUDE_PLUGIN_ROOT}/config/db.json"],13"env": {14"DATABASE_URL": "${DATABASE_URL}",15"DB_POOL_SIZE": "10"16}17},18"custom-tools": {19"command": "python",20"args": ["-m", "my_mcp_server", "--port", "8080"],21"env": {22"API_KEY": "${CUSTOM_API_KEY}",23"DEBUG": "false"24}25}26}27