Installation
Connect your favorite AI coding assistant to your Milkey account in minutes.
Connecting your AI tool (Claude, Cursor, GitHub Copilot, etc.) to Milkey takes only a few quick steps. Once connected, your assistant will have real-time access to all the skills you've enabled in your dashboard.
Prerequisites
- A Milkey account (Sign up for free)
- An AI assistant that supports Model Context Protocol (MCP) or custom HTTP API integrations.
Step 1: Get an API Key
Every request made to Milkey must be authenticated using a secret API key.
- Go to your Dashboard and navigate to the API Keys tab.
- Click Create Secret Key.
- Copy the generated key and store it somewhere safe. You will not be able to see it again.
Step 2: Enable Skills
Milkey will only serve context for the skills you have explicitly enabled. Before integrating, head over to your Dashboard Overview and toggle the desired skills (e.g., "React Best Practices", "Database Optimizer") to Active.
Step 3: Connect your Client
With your API key in hand, you can now connect your AI assistant. Use the remote MCP configuration below, or call the HTTP API directly.
{
"mcpServers": {
"milkey": {
"url": "https://mcp.vexelityai.com/mcp",
"headers": {
"MILKEY_API_KEY": "mk_live_your_secret_key_here"
}
}
}
}Need client-specific steps? See the All Clients, Cursor, and Claude Code setup guides.