Mastodon
live SocialSearch accounts and statuses, browse trending posts, and read the public timeline on mastodon.social
4 tools
0ms auth
free tier 50 calls/day
Tools
search
required: query Search Mastodon for accounts, statuses, or hashtags on mastodon.social.
Parameters
Name Type Description
query req string Search query string type opt string Type of results: accounts, statuses, or hashtags (default: statuses) limit opt number Number of results to return (default: 10, max: 40) Try it
Response
get_trending Get currently trending statuses on mastodon.social.
Parameters
Name Type Description
limit opt number Number of trending statuses to return (default: 10, max: 40) Try it
Response
get_account
required: id Get a public Mastodon account profile by numeric account ID.
Parameters
Name Type Description
id req string Numeric Mastodon account ID (e.g. "109302436954721982") Try it
Response
get_timeline Get recent posts from the mastodon.social public timeline.
Parameters
Name Type Description
limit opt number Number of statuses to return (default: 20, max: 40) 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/mastodon/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/mastodon/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search","arguments":{"query": "hello"}}}'