Connect Vee3 MCP to Claude Code
Published: July 8, 2026
Ask your agent
RecommendedCopy and paste this into Claude Code and let the agent walk you through setup.
Agent Instruction
Connect to Claude Code
Run the command below in your terminal. Set VEE3_API_KEY in your environment when using ${VEE3_API_KEY}. Restart Claude Code or run /mcp to verify.
Terminal command
RecommendedAdds the hosted Vee3 MCP server with your API key header.
claude mcp add --transport http vee3 https://mcp.vee3.io/mcp --header "VEE3_API_KEY: ${VEE3_API_KEY}"Manual setup via .mcp.jsonShowHide
- In your project root, create
.mcp.jsonif it does not exist yet. - Add the
vee3entry undermcpServers. If you already have other servers, merge this block into the existing object. - Set your API key in the
VEE3_API_KEYheader, or exportVEE3_API_KEYand keep${VEE3_API_KEY}in the config. - Restart Claude Code, or run
/mcpin a session to confirmvee3is connected.
Project-scoped config can be committed for your team. Do not commit literal API keys - use an environment variable instead.
.mcp.json
Paste into your project root, or merge the vee3 block into an existing file.
{
"mcpServers": {
"vee3": {
"type": "http",
"url": "https://mcp.vee3.io/mcp",
"headers": {
"VEE3_API_KEY": "${VEE3_API_KEY}"
}
}
}
}
Verify the connection
Run /mcp in a Claude Code session and confirm vee3 is listed. Ask the agent to call meta-tools.list_groups or search the catalog with meta-tools.search. If tools return data, the connection is working.
Customize which tools appear
From the dashboard, open Customize MCP to turn capability groups on or off. Changes apply to your MCP server on the next connection.
Next steps
- Browse the capability catalog for what you can call.
- Read the docs for per-tool parameters and examples.