flowyteam
Manage FlowyTeam projects, tasks, OKRs, KPIs, HR, CRM, finance, support tickets, attendance, and more via MCP — 34 tools for complete workspace management.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/agungksidik/flowyteam-mcpFlowyTeam MCP
Connect Claude Code (or any MCP-compatible AI agent) to your FlowyTeam workspace. Manage projects, tasks, OKRs, KPIs, employees, leads, clients, tickets, attendance, leave, invoices, estimates, contracts, expenses, events, notices, time logs, and more — all via natural language.
Platform: flowyteam.com — All-in-one SaaS for team productivity and performance management. 7,000+ organizations, 140+ countries.
Endpoints
| Endpoint | Auth | Purpose |
|---|---|---|
POST /api/mcp/gateway | None (per-call) | Gateway — single URL for everything; auth_register, auth_verify_email & auth_login run without token, all other tools read Bearer from header |
POST /api/v2/mcp/rpc | Bearer token | RPC — authenticated-only endpoint for all 31 workspace tools |
Setup
Recommended — Connect with API token
claude mcp add flowyteam \
--transport http \
--url https://flowyteam.com/api/v2/mcp/rpc \
--header "Authorization: Bearer $FLOWYTEAM_API_TOKEN"
Get your token: FlowyTeam → Settings → MCP & AI Integration → copy token.
Claude Desktop / Cursor (mcp.json)
{
"mcpServers": {
"flowyteam": {
"transport": "http",
"url": "https://flowyteam.com/api/v2/mcp/rpc",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
}
}
}
}
Protocol
- Gateway:
POST https://flowyteam.com/api/mcp/gateway - RPC:
POST https://flowyteam.com/api/v2/mcp/rpc - Transport: Streamable HTTP (JSON-RPC 2.0)
- Auth:
Authorization: Bearer <api_token>(not required forauth_register/auth_verify_email/auth_login) - Protocol Version:
2024-11-05
All workspace tools share a method parameter to select the HTTP verb:
method | Operation |
|---|---|
GET | Read / list records |
POST | Create a new record |
PUT | Update an existing record |
DELETE | Delete a record |
Auth tools (auth_register, auth_verify_email, auth_login) only use POST and do not need a method field.
Tools (34)
All tools require a valid
FLOWYTEAM_API_TOKENBearer token. See Setup above.
1. tasks (requires Bearer token)
Manage tasks and assignments
Methods: GET POST PUT DELETE
| Parameter | Type | Description |
|---|---|---|
method | string | GET / POST / PUT / DELETE |
id | integer | string | Task ID — required for PUT / DELETE |
project_id | integer | string | Filter by project (GET) or assign to project (POST) |
heading | string | Task title — required for POST |
description | string | Task description |
status | string | Task status (e.g. |
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-agungksidik-flowyteam-mcp": {
"enabled": true,
"auto_update": true
}
}
}