Claude Desktop MCP To Claude Agent MCP Server

MCP Server that bridges Claude Desktop with Claude Code

Local serverstdioPython

What is the Claude Desktop MCP To Claude Agent MCP server?

Claude Desktop MCP To Claude Agent MCP server exists for a simple reason — assistants are far more useful when they can act on Claude Desktop MCP To Claude Agent directly instead of describing what you should do. MCP Server that bridges Claude Desktop with Claude Code.

What you get

Add to your Claude Desktop MCP settings (~/Library/Application Support/Claude/claude_desktop_config.json on Mac):

Setting it up

Installation goes through your MCP client rather than a global install: point it at @anthropic-ai/claude-code on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once Claude Desktop MCP To Claude Agent is connected, these are the calls the assistant has available:

  • claude_code_task — Execute coding tasks via Claude Code
  • create_project — Create new project directories
  • list_files — List files in projects
  • read_file — Read file contents
  • run_command — Execute shell commands

Configuration and credentials

You will need one environment variable: ANTHROPIC_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the claude desktop mcp to claude agent mcp server does with a few real requests.

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Claude Desktop MCP To Claude Agent's toolset — claude_code_task, create_project, list_files and 2 more — is a fair guide to whether it matches your workflow. It is maintained by SobieskiCodes; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
claude_code_taskExecute coding tasks via Claude Code
create_projectCreate new project directories
list_filesList files in projects
read_fileRead file contents
run_commandExecute shell commands

How to install the Claude Desktop MCP To Claude Agent MCP server

{
  "mcpServers": {
    "claude-code-bridge": {
      "command": "node",
      "args": ["/path/to/your/mcp-claude-bridge/server.js"],
      "env": {
        "ANTHROPIC_API_KEY": "your_api_key_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ANTHROPIC_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Claude Desktop MCP To Claude Agent to claude code task.
  • Use Claude Desktop MCP To Claude Agent to create project.
  • Use Claude Desktop MCP To Claude Agent to list files.

Frequently asked questions

It connects Claude Desktop MCP To Claude Agent to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (claude_code_task, create_project, list_files, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Claude Desktop MCP To Claude Agent directly.