ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

flowyteam

Manage FlowyTeam projects, tasks, OKRs, KPIs, HR, CRM, finance, support tickets, attendance, and more via MCP — 34 tools for complete workspace management.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/agungksidik/flowyteam-mcp
Or

FlowyTeam 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

EndpointAuthPurpose
POST /api/mcp/gatewayNone (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/rpcBearer tokenRPC — 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 for auth_register / auth_verify_email / auth_login)
  • Protocol Version: 2024-11-05

All workspace tools share a method parameter to select the HTTP verb:

methodOperation
GETRead / list records
POSTCreate a new record
PUTUpdate an existing record
DELETEDelete 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_TOKEN Bearer token. See Setup above.


1. tasks (requires Bearer token)

Manage tasks and assignments

Methods: GET POST PUT DELETE

ParameterTypeDescription
methodstringGET / POST / PUT / DELETE
idinteger | stringTask ID — required for PUT / DELETE
project_idinteger | stringFilter by project (GET) or assign to project (POST)
headingstringTask title — required for POST
descriptionstringTask description
statusstringTask status (e.g.

Metadata

Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-agungksidik-flowyteam-mcp": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.