What is the Rick And Morty MCP server?
Rick and Morty MCP — wraps the Rick and Morty API (free, no auth)
How to install Rick And Morty
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"rick-and-morty": {
"url": "https://gateway.pipeworx.io/rick-and-morty/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"rick-and-morty": {
"serverUrl": "https://gateway.pipeworx.io/rick-and-morty/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"rick-and-morty": {
"type": "http",
"url": "https://gateway.pipeworx.io/rick-and-morty/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"rick-and-morty": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/rick-and-morty/mcp"
]
}
}
}Claude Code
claude mcp add --transport http rick-and-morty https://gateway.pipeworx.io/rick-and-morty/mcp