Skip to main content
Version: FINAL-1.0.0

Agent configuration

Configure the Bunny Studio MCP server in your preferred AI client. Use your JWT token via BUNNY_API_TOKEN in env or via --token=YOUR_JWT_TOKEN in args (see Authentication).

Claude Desktop

  1. Open (or create) ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).
  2. Add the Bunny Studio server:
{
"mcpServers": {
"bunnystudio": {
"command": "npx",
"args": ["-y", "@bunnystudio/mcp"],
"env": {
"BUNNY_API_TOKEN": "YOUR_JWT_TOKEN"
}
}
}
}

Or pass the token as an argument:

{
"mcpServers": {
"bunnystudio": {
"command": "npx",
"args": ["-y", "@bunnystudio/mcp", "--token=YOUR_JWT_TOKEN"]
}
}
}
  1. Restart Claude Desktop. The Bunny Studio tools and prompts will appear in the / menu.

Claude Code (CLI)

Add to .claude/settings.json in your project root, or to the global ~/.claude/settings.json:

{
"mcpServers": {
"bunnystudio": {
"command": "npx",
"args": ["-y", "@bunnystudio/mcp"],
"env": {
"BUNNY_API_TOKEN": "YOUR_JWT_TOKEN"
}
}
}
}

In Claude Code, run /mcp to verify the server is running and list available tools.

Cursor

  1. Open Cursor Settings → MCP.
  2. Click Add new MCP server and enter:
{
"name": "bunnystudio",
"command": "npx",
"args": ["-y", "@bunnystudio/mcp"],
"env": {
"BUNNY_API_TOKEN": "YOUR_JWT_TOKEN"
}
}

Or edit ~/.cursor/mcp.json directly:

{
"mcpServers": {
"bunnystudio": {
"command": "npx",
"args": ["-y", "@bunnystudio/mcp", "--token=YOUR_JWT_TOKEN"]
}
}
}

VS Code (Copilot / Continue)

GitHub Copilot (VS Code 1.99+)

Add to .vscode/mcp.json in your workspace, or to your User settings:

{
"servers": {
"bunnystudio": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@bunnystudio/mcp"],
"env": {
"BUNNY_API_TOKEN": "YOUR_JWT_TOKEN"
}
}
}
}

Continue extension

Add to ~/.continue/config.json:

{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@bunnystudio/mcp"],
"env": {
"BUNNY_API_TOKEN": "YOUR_JWT_TOKEN"
}
}
}
]
}
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
"mcpServers": {
"bunnystudio": {
"command": "npx",
"args": ["-y", "@bunnystudio/mcp"],
"env": {
"BUNNY_API_TOKEN": "YOUR_JWT_TOKEN"
}
}
}
}