MagicPod
A server for integrating with MagicPod, an AI-powered test automation platform.
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
Related Servers
Base64 Encode/Decode
A simple and efficient MCP server for Base64 encoding and decoding of text and images.
iOS MCP Server
An iOS mobile automation server using Appium and WebDriverAgent, built with clean architecture and SOLID principles.
Rongda MCP Server
An MCP server for Rongda that supports authentication through environment variables.
Zeek-MCP
Integrates Zeek network analysis with conversational AI clients. Requires an external Zeek installation.
Taeks MCP Server
An example MCP server designed for deployment on Cloudflare Workers, operating without authentication.
Perfetto
Turn natural language into powerful Perfetto trace analysis. Quickly explain jank, diagnose ANRs, spot CPU hot threads, uncover lock contention, and find memory leaks.
Plugged.in
A comprehensive proxy that combines multiple MCP servers into a single MCP. It provides discovery and management of tools, prompts, resources, and templates across servers, plus a playground for debugging when building MCP servers.
MCP Quickstart
A basic MCP server from the Quickstart Guide, adapted for OpenAI's Chat Completions API.
Lighthouse MCP Server
Audit web performance, accessibility, and SEO using Google Lighthouse.
BoostSecurity
BoostSecurity MCP acts as a safeguard preventing agents from adding vulnerable packages into projects. It analyzes every package an AI agent introduces, flags unsafe dependencies, and recommends secure, maintained alternatives to keep projects protected.