Skip to main content
Glama

Social Media MCP Server

by tayler-id
interface.ts1.22 kB
import { UserIntent, Content, ResearchData, SocialPlatform } from '../../types/index.js'; /** * Content generation strategy interface * * This interface defines the contract for content generation strategies. * Different AI models can implement this interface to provide content generation capabilities. */ export interface ContentGenerationStrategy { /** * Generate content based on user intent and research data * * @param intent User intent from natural language input * @param research Research data from various sources * @param platform Target social media platform * @returns Generated content */ generateContent( intent: UserIntent, research: ResearchData, platform: SocialPlatform ): Promise<Content>; /** * Get the name of the strategy * * @returns Strategy name */ getName(): string; /** * Check if the strategy is available * * @returns True if the strategy is available, false otherwise */ isAvailable(): boolean; /** * Get the priority of the strategy * Higher priority strategies are preferred over lower priority ones * * @returns Priority value (higher is better) */ getPriority(): number; }

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/tayler-id/social-media-mcp'

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