We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/recoupable/mcp-vercel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
recoupTools.ts•503 B
import { z } from "zod";
export const RecoupTools = {
GET_FANS: {
name: "get_artist_fans",
description:
"Get a list of fans for a specific artist across all social media profiles",
parameters: {
artist_account_id: z.string(),
},
},
GET_POSTS: {
name: "get_artist_posts",
description:
"Get a list of social media posts for a specific artist across all social media profiles",
parameters: {
artist_account_id: z.string(),
},
},
} as const;