mcp-connector
Installation
SKILL.md
MCP Connector
Connect to any MCP (Model Context Protocol) server and interact with its tools, resources, and prompts.
Supported Transports
- stdio — Launch a local MCP server as a subprocess (e.g.
npx @modelcontextprotocol/server-filesystem /path) - sse — Connect to a remote MCP server via HTTP Server-Sent Events
- streamable-http — Connect via the newer streamable HTTP transport (POST with SSE response)
Usage Flow
- Browse available servers with
mcp_browse(or filter by category) - Connect by name from the registry:
mcp_connect(name="coingecko") - Discover available tools/resources with
mcp_list_toolsormcp_list_resources - Use them via
mcp_call_toolormcp_read_resource - Disconnect when done with
mcp_disconnect