Rick and Morty
live EntertainmentBrowse characters, locations, and episodes from the Rick and Morty API
4 tools
0ms auth
free tier 50 calls/day
Tools
search_characters
required: name Search for Rick and Morty characters by name. Returns a list of matching characters.
Parameters
Name Type Description
name req string Character name to search for (e.g. "Rick", "Morty", "Beth"). Try it
Response
get_character
required: id Get detailed information about a specific Rick and Morty character by their ID.
Parameters
Name Type Description
id req number Character ID (e.g. 1 for Rick Sanchez). Try it
Response
get_location
required: id Get details about a specific Rick and Morty location by its ID.
Parameters
Name Type Description
id req number Location ID (e.g. 1 for Earth (C-137)). Try it
Response
get_episode
required: id Get details about a specific Rick and Morty episode by its ID.
Parameters
Name Type Description
id req number Episode ID (e.g. 1 for "Pilot"). Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/rickmorty/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/rickmorty/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_characters","arguments":{"name": "test"}}}'