Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Magicpod

БесплатноНе проверен

Magicpod — Model Context Protocol server

GitHubEmbed

Описание

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

Установка Magicpod

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

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

FAQ

Magicpod MCP бесплатный?

Да, Magicpod MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Magicpod?

Нет, Magicpod работает без API-ключей и переменных окружения.

Magicpod — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Magicpod в Claude Desktop, Claude Code или Cursor?

Открой Magicpod на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Magicpod with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development