Claude Desktop communicates with MCP servers over stdio. Because the MagicPost MCP server uses HTTP transport, you use the open-sourceDocumentation Index
Fetch the complete documentation index at: https://dev.magicpost.in/llms.txt
Use this file to discover all available pages before exploring further.
mcp-remote bridge to convert stdio to HTTP locally on your machine.
Prerequisites
- macOS, Windows, or Linux with Claude Desktop installed
- Node.js 18+ on your PATH (
npxrequires it) - A MagicPost API key — see creating a token
Configure
Locate the config file
Find the Claude Desktop configuration file for your operating system:
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Add the MCP server block
Open the file (create it if it doesn’t exist) and add the
mcpServers entry below. Replace mp_YOUR_TOKEN_HERE with your actual API key.Verify
After relaunching, open a new conversation and click the tools indicator in the input bar. You should seemagicpost listed with 8 tools available:
get_metrics_summaryrefresh_my_postslist_my_postsget_postcreate_or_update_postschedule_postcancel_scheduled_postpublish_post_now
list_my_posts and read back your upcoming posts.
Troubleshooting
The magicpost server doesn't appear in the tools list
The magicpost server doesn't appear in the tools list
- Open the Claude Desktop logs: Preferences → Developer → Open log directory
- Look for
mcp.logorclaude_mcp.log - Common causes:
- JSON syntax error in
claude_desktop_config.json— validate it withpython -m json.tool claude_desktop_config.json npxnot found on PATH — install Node.js via nvm or Homebrew- Network blocked — confirm connectivity with
curl https://mcp.magicpost.in/.well-known/oauth-protected-resource
- JSON syntax error in
Authentication error in the tool response
Authentication error in the tool response
Your API key is invalid or has been revoked. Generate a new one from Settings → API & MCP and replace the token in the config file.
Claude says it cannot reach MagicPost
Claude says it cannot reach MagicPost
The MCP bridge may have crashed silently. Restart Claude Desktop. If the issue persists, run the bridge manually to see its output:
Privacy
mcp-remote runs on your machine and forwards requests directly to mcp.magicpost.in. Your token never passes through a third party. The MagicPost MCP server validates it and acts on your behalf.