Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By pipefy
Manage Pipefy business processes directly from Claude: create, update, and delete pipelines, cards, tables, automations, and AI agents; call the GraphQL API; upload attachments; monitor logs; and install the Pipefy CLI toolchain.
npx claudepluginhub pipefy/ai-toolkit --plugin pipefyUse this skill when the user wants to create, read, update, delete, or troubleshoot AI agents (conversational agents with behaviors). Covers 7 MCP tools including pre-flight validation. For traditional automations and AI automations, see skills/automations/.
Use this skill when an MCP tool fails AND the introspection skill could not resolve the problem. This is the last-resort fallback (Tier 3): call the Pipefy GraphQL API directly using curl or httpx, authenticating with the Service Account (OAuth2) or a Personal Access Token (PAT) available as env var. Follow the 3-tier resolution strategy before reaching this point.
Use this skill when the user wants to upload a file to a Pipefy card or table-record attachment field. Covers the local file_path input mode through the MCP tools and the CLI.
Use this skill when the user wants to create, read, update, or delete traditional automations (if/then rules) or AI automations (prompt-driven). Covers 16 MCP tools. For AI agents (conversational), see skills/ai-agents/.
Use this skill when the user wants to work with Pipefy Database Tables — creating/reading/updating/deleting tables, records (rows), or table fields (schema columns). Covers 17 MCP tools.
External network access
Connects to servers outside your machine
No model invocation
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code skill pack for ClickUp (24 skills)
Create, customize, and manage plugins tailored to your organization's tools and workflows. Configure MCP servers, adjust plugin behavior, and adapt templates to match how your team works.
AgenticFlow developer tools for Claude Code — build AI agents, deploy multi-agent workforces, and automate operations against the AgenticFlow platform via the `af` CLI.
Universal project manager with keep-Claude-on-task guardrails: focus anchor, scope lock, done-when contract, over-engineering detector, drift auditor, turn budget, user-prompt archive, and compaction-safe handoff. Plus interview-first init, micro-task decomposition, deep research, transactional state MCP, and 9 PM platform integrations.
Commands for orchestrating complex workflows
Corezoid AI Documentation and Templates — skills and MCP server for working with Corezoid BPM processes.
Executes directly as bash, bypassing the AI model
Executes directly as bash, bypassing the AI model
Share bugs, ideas, or general feedback.
Open-source toolkit for Pipefy developers: a Model Context Protocol (MCP) server for AI agents, a pipefy CLI for terminals and automation, a shared GraphQL SDK, and a catalog of agent skill playbooks.
Overview • Installation • Repository layout • MCP server • CLI • Agent skills • Documentation • Development • Contributing
| Component | Package / path | Purpose |
|---|---|---|
| MCP server | pipefy-mcp-server | Exposes 149 tools to MCP clients (Cursor, Claude Desktop, Claude Code, and others). |
| CLI | pipefy-cli | Terminal commands aligned with MCP capabilities; see docs/parity.md. |
| SDK | pipefy-sdk | Vendor GraphQL client, services, and models shared by MCP and CLI. |
| Skills | skills/ | Markdown playbooks (Anthropic Skills format) for common Pipefy workflows. |
Feedback and issues: GitHub Issues · dev@pipefy.com
Pre-1.0 ships from this git repo via
uvxanduv tool install. PyPI becomes the canonical source at v1.0. The current beta line isv0.2.0-beta.*(first tag:v0.2.0-beta.1). Two install paths: the Quick install script below (resolves the latest GitHub Release at runtime and runsuv tool installfor you), or Claude Code via the plugin marketplace.The CLI snippets below pin
@latest, a moving git tag the release flow updates to point at the most recent release. To pin a specific version, swap@latestfor a version tag (e.g.@v0.2.0-beta.2). The--with pipefy-sdk @ ...#subdirectory=packages/sdk/pipefy-auth @ ...#subdirectory=packages/authflags are required pre-1.0: this repo is a uv workspace, and the workspace members are not yet published to PyPI, so uv needs them named explicitly. The flags go away at v1.0 (PyPI install).
Two auth paths:
pipefy auth login runs the browser flow and stores a session in your OS keychain. Works anywhere the pipefy CLI is on PATH (uv tool install once, any client can invoke it). Claude Code additionally exposes it as the /pipefy:login slash command via the plugin marketplace. Pipe membership is whatever the signed-in user already has.PIPEFY_SERVICE_ACCOUNT_CLIENT_ID and PIPEFY_SERVICE_ACCOUNT_CLIENT_SECRET into the client config below.Full env-var reference and config.toml precedence: docs/config.md.
One command installs the CLI + MCP server, optionally adds skills, and registers the MCP server in your client config:
curl -fsSL https://raw.githubusercontent.com/pipefy/ai-toolkit/main/install.sh \
| sh -s -- --client cursor
Replace --client cursor with one of: claude-code, claude-desktop, codex, or none (prints the snippet to paste). Useful flags:
--yes skip all confirmation prompts.--no-skills skip the npx skills add step.--version vX.Y.Z pin a specific GitHub Release tag (default: most recent prerelease or release).--dry-run print every command without executing.--allow-root opt-in for root execution (refused by default).After install, run pipefy auth login to authenticate (--device on headless systems). The installer puts pipefy-mcp-server on PATH, so each client's config collapses to {"command": "pipefy-mcp-server"}.