Skip to main content
Glama

social-media-mcp

types.ts958 B
export interface SocialMediaPost { content: string; platform: string; timestamp: string; threadId?: string; tweetId?: string } export interface PostArgs { content: string; threadId?: string; } export interface ListPostsArgs { limit?: number; threadId?: string; } export function isValidPostArgs(args: any): args is PostArgs { return ( typeof args === "object" && args !== null && "content" in args && typeof args.content === "string" && (args.threadId === undefined || typeof args.threadId === "string") ); } export function isValidListPostsArgs(args: any): args is ListPostsArgs { return ( typeof args === "object" && args !== null && (args.limit === undefined || typeof args.limit === "number") && (args.threadId === undefined || typeof args.threadId === "string") ); } export interface SocialMediaPlatform { name: string; description: string; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/angheljf/social-media-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server