All MCP Clients
Connect any Model Context Protocol compatible client to Milkey.
Milkey acts as an MCP Server (Model Context Protocol). This means it is highly interoperable with any development tool, agent, or IDE that supports the MCP standard, not just the officially documented ones.
Understanding MCP Connections
Most MCP clients allow you to define remote servers in a config.json file. You point the configuration to the Milkey endpoint, and specify the authorization header to securely connect.
Universal Setup
If your tool asks you to supply an MCP configuration directly, you can use the generic JSON payload below:
config.json
{
"mcpServers": {
"milkey": {
"url": "https://mcp.vexelityai.com/mcp",
"headers": {
"MILKEY_API_KEY": "mk_live_your_secret_key_here"
}
}
}
}Finding your Config
Check your IDE or agent's documentation to see where it stores its MCP server definitions. It is usually called
mcp.json, settings.json, or similar.