Workflow86 MCP Server
A Node.js MCP server that enables interaction with the Workflow86 public API for workflow automation.
README
Workflow86 MCP Server
This is a fairly standard Node MCP Server implementation against the workflow86.com public API.
Standard Setup
Normal users will only need to follow some fairly standard setup steps:
-
Create an API Key from the Organization page of workflow86.com
-
Setup your MCP client
- If you are using Cursor your config file will be at
~/.cursor/mcp.json - Claude on MacOS has a config file at
~/Library/Application\ Support/Claude/claude_desktop_config.json - For other tools please follow their setup instructions
- Most tools use configuration in the following format:
{ "mcpServers": { "workflow86": { "command": "npx", "args": ["@npm-workflow86/mcp-server"], "env": { "W86_API_KEY": "<API Key for your W86 Organization>" } } } }To use the latest unreleased build specify the canary tag eg.
"args": ["@npm-workflow86/mcp-server@canary"], - If you are using Cursor your config file will be at
-
Check your Node Version
Make sure your system default node version is v22 or greater (20 may also work but your mileage may vary)node -v
Note: The server will start even if W86_API_KEY is not set so MCP clients can discover available tools. However, calling any Workflow86 tool requires an API key (or custom W86_HEADERS). Without it, tool calls will fail with an authorization error.
Test Integration
Cursor
Goto Cursor -> Settings -> Cursor Settings -> Tools & Integrations
There should be a workflow86 entry in the MCP Tools section. If something's gone wrong an error message will display here.
Contributor Setup
For other folk that would like to run the server against source for whatever reason setup is a little more involved. If you don't already have the source run:
git clone git@github.com:workflow86oss/mcp-server.git
Build
npm install && npm run build
Tests and Coverage
- Run unit tests:
npm test - Run module tests:
npm run moduleTest - Analyze coverage for module tests:
npm run moduleCoverage- Uses
c8(V8 coverage) so child processes spawned by module tests are included - First run
npm installto ensure dev deps (c8) are installed - HTML and lcov reports:
coverage/module/(opencoverage/module/index.html)
- Uses
Run with CLI
This is particularly useful to get at logs easily if things are going wrong or for quick testing:
First setup your Dev API Key (you might like to add this to your shell init script)
export W86_API_KEY=<api key>
Then you can invoke commands via jsonrpc like this:
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list-workflows","arguments":{}}}' | node build/server.js
Configure a MCP Client
To configure a MCP Client to run against your local checkout put this config in the correct place for your desired tool:
{
"mcpServers": {
"workflow86": {
"command": "node",
"args": ["/<absolute-checkout-path>/mcp-server/build/server.js"],
"env": {
"W86_API_KEY": "<API Key for your W86 Client>"
}
}
}
}
Regenerate Generated Client Code
src/client contains a typescript client generated based on the OpenAPI spec at https://rest.workflow86.com/v3/api-docs. This client can be regenerated if it is not up to date with the OpenAPI spec published. To update it run:
npm run genclient
References
Workflow86 homepage: https://www.workflow86.com
MCP Spec: https://modelcontextprotocol.io/specification/2025-06-18
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.