|
1 | 1 | # :rainbow: Taskade MCP |
2 | 2 |
|
3 | | -All things related to Taskade's MCP initiatives |
| 3 | +All things related to [Taskade](https://taskade.com/)'s MCP (Model Context Protocol) initiatives. |
4 | 4 |
|
5 | | -- [Official MCP server](https://github.com/taskade/mcp/tree/main/packages/server) - Connect MCP clients to interact with Taskade |
6 | | -- [OpenAPI Codegen](https://github.com/taskade/mcp/tree/main/packages/openapi-codegen) - Generate MCP tools from any OpenAPI schema in minutes |
| 5 | +- [Official MCP server](https://github.com/taskade/mcp/tree/main/packages/server) - Connect Taskade’s API to any MCP-compatible client like Claude or Cursor. |
| 6 | +- [OpenAPI Codegen](https://github.com/taskade/mcp/tree/main/packages/openapi-codegen) - Generate MCP tools from any OpenAPI schema in minutes. |
| 7 | + |
| 8 | +## ⚡ Taskade MCP Demo |
| 9 | +MCP-powered Taskade agent running inside Claude Desktop by Anthropic: |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | +## 🛠 Codegen for OpenAPI |
| 15 | + |
| 16 | +Use our generator to build MCP tools from any OpenAPI spec. |
| 17 | + |
| 18 | +```bash |
| 19 | +npm install --dev @taskade/mcp-openapi-codegen @readme/openapi-parser |
| 20 | +``` |
| 21 | + |
| 22 | +Script example: |
| 23 | + |
| 24 | +```ts |
| 25 | +import { dereference } from '@readme/openapi-parser'; |
| 26 | +import { codegen } from '@taskade/mcp-openapi-codegen'; |
| 27 | + |
| 28 | +const document = await dereference('taskade-public.yaml'); |
| 29 | + |
| 30 | +await codegen({ |
| 31 | + path: 'src/tools.generated.ts', |
| 32 | + document, |
| 33 | +}); |
| 34 | +``` |
| 35 | + |
| 36 | +--- |
| 37 | + |
| 38 | +## 🐑 What is Taskade? |
| 39 | + |
| 40 | +Taskade ([YC S19](https://www.ycombinator.com/companies/taskade)) is building the execution layer for AI — a unified workspace to deploy agents, automate workflows, and get work done. |
| 41 | + |
| 42 | +- Deploy autonomous agents with memory and tools |
| 43 | + |
| 44 | +- Automate tasks and workflows (no-code) |
| 45 | + |
| 46 | +- Chat, plan, and collaborate in real-time |
| 47 | + |
| 48 | +- Integrate via API, OpenAPI, or MCP |
| 49 | + |
| 50 | +Developer docs: <https://developers.taskade.com> |
| 51 | + |
| 52 | +Try: <https://www.taskade.com/create> |
| 53 | + |
| 54 | +More at <https://www.taskade.com> |
| 55 | + |
| 56 | + |
| 57 | +--- |
| 58 | + |
| 59 | +## 🚀 Roadmap |
| 60 | + |
| 61 | +* `agent.js` → Open-source autonomous agent toolkit: Coming soon. |
| 62 | +* `TaskOS` → Agent platform at [https://developers.taskade.com](https://developers.taskade.com) |
| 63 | +* `TechnologyFramework` → Future [home](https://technologyframework.com/) for open agentic standards and extensions |
| 64 | + |
| 65 | +--- |
| 66 | + |
| 67 | +## 🤝 Contribute |
| 68 | + |
| 69 | +Help us improve MCP tools, OpenAPI workflows, and agent capabilities. |
| 70 | + |
| 71 | +Community: [https://www.taskade.com/community](https://www.taskade.com/community) |
| 72 | + |
| 73 | +GitHub: [https://github.com/taskade](https://github.com/taskade) |
| 74 | + |
| 75 | +Contact: [hello@taskade.com](mailto:hello@taskade.com) |
0 commit comments