Connect AI agents to FeedVector using the Model Context Protocol (MCP)
Documentation Index
Fetch the complete documentation index at:
https://feedvector.com/llms.txtUse this file to discover all available pages before exploring further.
MCP lets AI agents interact with FeedVector directly through a standardized tool-calling interface. This means you can connect Claude, Cursor, or any MCP-compatible client to your FeedVector account and manage your social scheduling through natural language.
FeedVector exposes an MCP server with a set of tools. Your AI client discovers those tools, reads their schemas, and calls them on your behalf.
Tool availability can vary by account and enabled features. Commonly used tools include:
integrationList — list connected social media accountsintegrationSchema — fetch platform-specific rules/settings schemaschedulePostTool — schedule, draft, or publish postsThere are two common ways to authenticate with an MCP server:
Use your API key directly in the MCP endpoint URL or as a Bearer token.
If you’re building an app for other users and OAuth2 is enabled, use OAuth2 to obtain tokens and pass them the same way as API keys.
Use the /mcp endpoint with a Bearer token, or embed your API key in the URL using /mcp/<apiKey>.
A typical interaction looks like:
integrationList to see your connected accountsintegrationSchema for a platform to learn posting rulesschedulePostTool to schedule the post with valid settingsConfigure your AI client to connect to the FeedVector MCP server.
Add the following to your Claude Desktop MCP configuration file:
macOS
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"feedvector": {
"url": "https://app.feedvector.com/api/mcp/your-api-key"
}
}
}Windows
Edit %APPDATA%\\Claude\\claude_desktop_config.json:
{
"mcpServers": {
"feedvector": {
"url": "https://app.feedvector.com/api/mcp/your-api-key"
}
}
}Replace your-api-key with your actual API key from Settings > Public API.
Add FeedVector as an MCP server in your Claude Code configuration:
{
"mcpServers": {
"feedvector": {
"url": "https://app.feedvector.com/api/mcp/your-api-key"
}
}
}In Cursor, go to Settings > MCP and add a new server:
https://app.feedvector.com/api/mcp/your-api-keyAny MCP-compatible client can connect to FeedVector. Use the streamable HTTP transport:
https://app.feedvector.com/api/mcp/your-api-keyOr, if your client supports Bearer token authentication:
https://app.feedvector.com/api/mcpBearer your-api-keyOnce connected, ask your AI agent:
If the connection is working, the agent will call the integrationList tool and return your connected accounts.