About magicpod-server
magicpod-server is an MCP server published by git+Magic-Pod in the Developer Tools category: model Context Protocol server for MagicPod integration. It has been installed 0 times through Conduid.
Install
npx magicpod-mcp-serverclaude mcp add magicpod-mcp-server -- npx -y magicpod-mcp-servernpx -y magicpod-mcp-serverThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about magicpod-server
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
magicpod-mcp-server
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.
Development
Build
npm run build
Configuration
README mirrored from the source repository 21 days ago. The original is authoritative.