Configuration

Server URL

Vloggram MCP Server uses SSE (Server-Sent Events) protocol for communication.
EnvironmentURL
Local Developmenthttp://localhost:5000/mcp/sse
Productionhttps://api.aimos.co/mcp/sse

Authentication

MCP Server requires user authentication to perform most operations. Authentication flow:
  1. Call auth_sign_in tool to log in
  2. Get the returned userId and token
  3. Pass userId parameter in subsequent tool calls
// Login example
{
  "tool": "auth_sign_in",
  "arguments": {
    "email": "user@example.com",
    "password": "your_password"
  }
}

Client Configuration

Cursor

.cursor/mcp.json
{
  "mcpServers": {
    "vloggram": {
      "url": "http://localhost:5000/mcp/sse"
    }
  }
}
After configuration:
  1. Open Cursor Settings → MCP
  2. Find vloggram server
  3. Click to enable

Claude Desktop

macOS configuration file location:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows configuration file location:
%APPDATA%\Claude\claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "vloggram": {
      "url": "http://localhost:5000/mcp/sse"
    }
  }
}

VS Code (GitHub Copilot)

.vscode/mcp.json
{
  "servers": {
    "vloggram": {
      "url": "http://localhost:5000/mcp/sse"
    }
  }
}

Kiro

.kiro/settings/mcp.json
{
  "mcpServers": {
    "vloggram": {
      "url": "http://localhost:5000/mcp/sse"
    }
  }
}

Troubleshooting

  • Check if the server is running on the correct port
  • Confirm the URL is configured correctly
  • Restart the MCP client
  • Confirm email and password are correct
  • Check if the account is registered
  • View server logs for detailed errors
  • Confirm you are logged in and have userId
  • Check if required parameters are complete
  • View the returned error message