| name | usage |
| description | How to use the CLI, API, and MCP interfaces. Use this skill when interacting with the tool as an end user. |
Usage Guide
This skill teaches you how to use the three interfaces provided by this project.
CLI
pip install mcp-template
mymcp --help
mymcp greet Alice
mymcp config show
mymcp doctor
mymcp --verbose greet Alice
mymcp --format json config show
mymcp --dry-run greet Bob
mymcp --version
Server (HTTP API + MCP)
mymcp-serve
MCP
The MCP server exposes the same services as CLI tools via the Model Context Protocol.
Primary transport: streamable HTTP at /mcp (started by mymcp-serve).
Stdio is supported via mymcp-mcp for local Claude Desktop / dev only.
mymcp-mcp
mcp dev mcp_server/server.py
Connecting MCP to your editor
Remote (preferred - works on Claude Desktop 0.7+, Cursor, etc.):
{
"mcpServers": {
"mymcp": {
"url": "https://YOUR-DEPLOYMENT/mcp",
"headers": { "X-API-KEY": "sk_..." }
}
}
}
Local stdio (legacy):
{
"mcpServers": {
"mymcp": {
"command": "mymcp-mcp"
}
}
}
Updating
mymcp update