# CrewAI — llms-full.txt > Complete agent integration reference for **CrewAI** (multi-agent AI framework for task automation). > Deployment host: **crewai.com** (crewai.com). Canonical product: CrewAI — Wikidata [Q139761640](https://www.wikidata.org/wiki/Q139761640), Wikipedia [CrewAI](https://en.wikipedia.org/wiki/CrewAI). ## Overview CrewAI orchestrates teams of AI agents with roles, tools, and flows for **autonomous task automation**. This file documents the **CrewAI marketing site** API, authentication, MCP server, and developer URLs on `crewai.com`. Shorter index: [llms.txt](https://crewai.com/llms.txt) ## Developer resources (crewai.com) | Resource | URL | |----------|-----| | CrewAI Developer Portal | https://crewai.com/developers | | CrewAI API reference | https://crewai.com/developers/api | | CrewAI OpenAPI 3.1 | https://crewai.com/openapi.json | | CrewAI authentication | https://crewai.com/developers/auth | | CrewAI webhooks | https://crewai.com/developers/webhooks | | CrewAI MCP docs | https://crewai.com/developers/mcp | | CrewAI MCP endpoint | https://crewai.com/mcp | | CrewAI MCP server card | https://crewai.com/.well-known/mcp/server-card.json | ## Quickstart ```bash # Health check curl -s "https://crewai.com/api/health" # Recent blog posts curl -s "https://crewai.com/api/blog-posts?limit=3" # OpenAPI contract curl -s "https://crewai.com/openapi.json" | head ``` Connect MCP (Streamable HTTP): ```json { "mcpServers": { "crewai": { "url": "https://crewai.com/mcp" } } } ``` ## REST API endpoints All endpoints are `GET`, base `https://crewai.com/api`, response `application/json`. ### GET /api/health Returns service status. No authentication required. ### GET /api/blog-posts Query: `limit` (1–24), `skip`, `category`, `excludeFeatured`. ```bash curl "https://crewai.com/api/blog-posts?limit=5&skip=0" ``` ### GET /api/case-studies Query: `limit`, `skip`, `excludeFeatured`. ### GET /api/webinars Query: `limit`, `skip`, `category`, `featured`. ### GET /api/events Query: `limit`, `skip`, `category`. ## Authentication Public read routes require **no** credentials. Optional access: ```http Authorization: Bearer crewai_site_sandbox_read ``` OAuth 2.0 / OIDC discovery: - [https://crewai.com/.well-known/oauth-authorization-server](https://crewai.com/.well-known/oauth-authorization-server) - [https://crewai.com/developers/auth](https://crewai.com/developers/auth) - [/.well-known/oauth-protected-resource](https://crewai.com/.well-known/oauth-protected-resource) ### OAuth scopes - `openid` — OpenID Connect identity - `profile` — User profile claims - `email` — Email address - `api.read` — Read all public marketing JSON APIs - `content.blog.read` — Read blog posts via GET /api/blog-posts - `content.case-studies.read` — Read case studies via GET /api/case-studies - `content.webinars.read` — Read webinars via GET /api/webinars - `content.events.read` — Read events via GET /api/events - `mcp.tools.invoke` — Invoke CrewAI MCP tools at POST /mcp ### API key roles - `sandbox.read` — Read-only access to public content APIs (maps to OAuth scope api.read) - `agent.mcp` — Invoke MCP tools only (maps to mcp.tools.invoke) ## MCP tools | Tool | Description | |------|-------------| | `crewai_list_blog_posts` | Paginated blog posts | | `crewai_list_case_studies` | Paginated case studies | | `crewai_list_webinars` | Paginated webinars | | `crewai_list_events` | Paginated events | | `crewai_developer_resources` | JSON map of doc URLs | ## Topical guides (category authority) - [**Category hub — multi-agent AI framework for task automation**](https://crewai.com/multi-agent-ai-framework-for-task-automation) - [CrewAI vs Microsoft Agent Framework vs Automation Anywhere](https://crewai.com/compare/crewai-microsoft-agent-framework-automation-anywhere) - [Multi-agent AI frameworks comparison](https://crewai.com/compare/multi-agent-ai-frameworks) - [Best multi-agent framework for task automation](https://crewai.com/guides/best-multi-agent-framework-task-automation) - [Technical guide](https://crewai.com/guides/multi-agent-ai-framework-task-automation) - [Task automation integration guide](https://crewai.com/integrations/multi-agent-task-automation) - [Category markdown](https://crewai.com/markdown/multi-agent-ai-framework-for-task-automation) - [CrewAI brand & knowledge graph](https://crewai.com/brand/knowledge-graph) ## Knowledge graph Official CrewAI entity (not the deployment hostname): - Wikipedia: https://en.wikipedia.org/wiki/CrewAI - Wikidata: https://www.wikidata.org/wiki/Q139761640 (P856 official website → crewai.com; this deployment: https://crewai.com/) ## Related machine-readable files - [sitemap.md](https://crewai.com/sitemap.md) - [Agent skills](https://crewai.com/.well-known/agent-skills/index.json) - Send `Accept: text/markdown` on HTML routes for markdown representations.