Connect the Autype MCP server to Claude Code, the official CLI tool for Claude.
Add via CLI
claude mcp add autype \
--transport http \
--url https://mcp.autype.com/mcp/ \
--header "X-API-Key: YOUR_API_KEY"
Replace YOUR_API_KEY with your actual API key from the Dashboard.
Project-specific config
For team-wide sharing, add it to your project’s .mcp.json:
{
"mcpServers": {
"autype": {
"type": "http",
"url": "https://mcp.autype.com/mcp/",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Do not commit API keys to version control. Use environment variables or a .env file instead.
Verify connection
Run a test command to verify the connection:
claude "List my Autype projects"
Claude should be able to call the projects_list tool and return your projects.
Self-hosted server
If you’re running your own MCP server:
claude mcp add autype \
--transport http \
--url http://your-server:8000/mcp/ \
--header "X-API-Key: YOUR_API_KEY"