Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Magicpod

FreeNot checked

Magicpod — Model Context Protocol server

GitHubEmbed

About

Magicpod — Model Context Protocol server

README

An MCP (Model Context Protocol) server that integrates your AI agents with MagicPod

Getting Started

Cursor, Claude, and many other AI-powered coding tools support MCP servers. You can refer to their official documents on how to configure MCP servers. For example, if you use Claude Desktop, what you have to do to integrate with MagicPod is only to add the following lines in your claude_desktop_config.json.

MacOS / Linux

{
  "mcpServers": {
    "magicpod-mcp-server": {
      "command": "npx",
      "args": ["-y", "magicpod-mcp-server", "--api-token=YOUR-API-TOKEN"]
    }
  }
}

Windows

{
  "mcpServers": {
    "magicpod-mcp-server": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "magicpod-mcp-server", "--api-token=YOUR-API-TOKEN"]
    }
  }
}

Make sure that you replace YOUR-API-TOKEN with your actual MagicPod API token. You can retrieve it on the integrations screen.

retrieve API token

Using an environment variable instead of --api-token

Passing the token via --api-token puts it in plain text in the process's argument list (visible via ps, /proc/<pid>/cmdline, monitoring tools, etc.), which can be a concern on shared or monitored hosts. As an alternative, you can set the MAGICPOD_API_TOKEN environment variable instead, using the env field supported by most MCP clients:

{
  "mcpServers": {
    "magicpod-mcp-server": {
      "command": "npx",
      "args": ["-y", "magicpod-mcp-server"],
      "env": {
        "MAGICPOD_API_TOKEN": "YOUR-API-TOKEN"
      }
    }
  }
}

If both --api-token and MAGICPOD_API_TOKEN are set, --api-token takes precedence.

Development

Build

npm run build

Configuration

Configuring Tool Permissions in Claude Code

from github.com/Magic-Pod/magicpod-mcp-server

Installing Magicpod

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/Magic-Pod/magicpod-mcp-server

FAQ

Is Magicpod MCP free?

Yes, Magicpod MCP is free — one-click install via Unyly at no cost.

Does Magicpod need an API key?

No, Magicpod runs without API keys or environment variables.

Is Magicpod hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Magicpod in Claude Desktop, Claude Code or Cursor?

Open Magicpod on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Magicpod with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs