
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
cakemail-api-docs
Advanced tools
A Model Context Protocol (MCP) server that exposes Cakemail's email marketing API documentation to AI agents, eliminating hallucination and enabling accurate code generation.
The Cakemail API MCP Server provides AI coding assistants (Claude, Cursor, GitHub Copilot) with direct access to authoritative Cakemail API specifications. Instead of guessing endpoint URLs, parameters, and authentication details, AI agents can query the MCP server for exact specifications from Cakemail's OpenAPI documentation.
One command to install with Claude Code/Desktop:
# Using npx (works for everyone!)
claude mcp add cakemail-api-docs -- npx cakemail-api-docs
# Or using uvx (Python developers)
claude mcp add cakemail-api-docs -- uvx cakemail-api-docs-mcp
That's it! No manual configuration needed.
Method 1: Using npm
npm install -g cakemail-api-docs
claude mcp add cakemail-api-docs cakemail-api-docs
Method 2: Using pip
pip install cakemail-api-docs-mcp
claude mcp add cakemail-api-docs cakemail-api-docs-mcp
Method 3: From source (for development)
git clone https://github.com/cakemail/cakemail-api-documentation-mcp.git
cd cakemail-api-documentation-mcp
uv pip install -e ".[dev]"
See INSTALLATION.md for detailed installation options.
After running claude mcp add, restart Claude Desktop. You should see a 🔌 icon indicating the server is connected.
Test it:
If not using claude mcp add, edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"cakemail": {
"command": "cakemail-api-docs-mcp",
"env": {
"OPENAPI_SPEC_PATH": "https://api.cakemail.dev/openapi.json"
}
}
}
}
cakemail-api-docs-mcp
Or using Python module:
python -m cakemail_mcp
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"cakemail": {
"command": "cakemail-api-docs-mcp",
"env": {
"OPENAPI_SPEC_PATH": "/path/to/cakemail/openapi.json"
}
}
}
}
# Clone repository
git clone https://github.com/cakemail/cakemail-api-docs-mcp.git
cd cakemail-api-docs-mcp
# Install with development dependencies
uv pip install -e .[dev]
pytest
# Format code
black src tests
# Lint
ruff check src tests
# Type check
mypy src
MIT License - see LICENSE for details.
Contributions are welcome! Please see our contributing guidelines for details.
FAQs
MCP server exposing Cakemail API documentation to AI agents
We found that cakemail-api-docs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.