# SeaMeet App -- LLM Entry Points This file helps coding agents and AI assistants discover SeaMeet's app-hosted developer surfaces. ## Choose the Right Surface - Use the local MCP server when the user wants to operate the SeaMeet desktop app, local recordings, live transcripts, screenshots, summaries, action items, or local artifact bundles. - Use the Sync Pro API when building a cloud integration over synced assets, share links, signed media URLs, account usage, API keys, and webhooks. - Use the Media/STT Worker docs only for advanced first-party session flows until those routes support normal SeaMeet API keys. ## Local MCP Server Install: ```bash npx -y @seameet/mcp ``` Common client install commands: ```bash claude mcp add seameet -- npx -y @seameet/mcp codex mcp add seameet -- npx -y @seameet/mcp ``` References: - MCP install guide: https://app.seameet.ai/mcp/ - MCP LLM reference: https://app.seameet.ai/mcp/llms.txt - MCP tools JSON: https://app.seameet.ai/mcp/tools.json - Agent skill catalog: https://app.seameet.ai/.well-known/skills/index.json ## Cloud Sync Pro API Normal public API clients authenticate with only: ```http X-Api-Key: smk_... ``` References: - Human API reference: https://app.seameet.ai/api/ - API LLM guide: https://app.seameet.ai/api/llms.txt - Task recipes: https://app.seameet.ai/api/tasks.json - Full OpenAPI: https://app.seameet.ai/api/openapi.yaml - Sync-only OpenAPI: https://app.seameet.ai/api/sync-openapi.yaml - Media/STT OpenAPI: https://app.seameet.ai/api/media-stt-openapi.yaml - Realtime STT protocol: https://app.seameet.ai/api/stream-protocol.md