Milkey Documentation

Claude Code

Using Milkey with Anthropic's Claude Code CLI tool

Milkey integrates natively with Claude Code via MCP to provide current instructions and library architecture across your workspaces directly into the command line assistant.

Installation

You can initialize the Milkey server dynamically within your terminal by running the claude mcp add command. By default, it will store the setup in your system's global scope.

Terminal
claude mcp add --scope user \
  --header "MILKEY_API_KEY: mk_live_your_secret_key" \
  --transport http \
  milkey https://mcp.vexelityai.com/mcp

Verifying the Connection

After installation, you can verify your connection by running the list command. This ensures the CLI tool can reach the Milkey APIs.

Terminal
$ claude mcp list
Checking MCP server health...

milkey: https://mcp.vexelityai.com/mcp (HTTP) - ✓ Connected

Using Commands

When connected, the MCP tools provided by Milkey will be accessible to Claude Code automatically during reasoning loops. If Claude is unsure about a component, it will invoke resolve-skill against your enabled database.

Prompt Example
Using milkey, create a new API route following our standard Fastify architecture.