| name | skill-with-mcp-servers |
| description | A test skill with both stdio and HTTP MCP server examples in frontmatter |
| mcp-servers | {"filesystem-server":{"command":"npx","args":["-y","@modelcontextprotocol/server-filesystem","/tmp"]}} |
Skill with MCP Servers
This skill demonstrates mcp-servers frontmatter configuration with both stdio-based (local)
and HTTP-based (remote) MCP server examples.
Connection Types
| Type | Fields | Use Case |
|---|
| stdio | command + args | Local subprocess (npx, uvx, etc) |
| HTTP | url + headers | Remote server, shared deployment |
Usage
Use this skill when you need filesystem or remote API access via MCP.
Comments on Fields
- command: Executable path or name (e.g., "npx", "uvx", "python"). Set to
null for HTTP.
- args: List of CLI arguments passed to the command.
- url: Remote server URL for HTTP connections. Set to
null for stdio.
- headers: HTTP headers sent with URL requests.
- env: Environment variables injected into the subprocess (stdio only).