@voxity/workflows-mcp-server
v1.5.1
Published
MCP server for Voxity Workflow Platform exposing workflow management, secrets, and automation tools
Downloads
15
Maintainers
Readme
Voxity Workflows MCP Server
Model Context Protocol (MCP) server for the Voxity Workflow Platform. Manage workflows, secrets, nodes, and executions directly from Claude Desktop or Cursor.
Installation
npm install -g @voxity/workflows-mcp-serverOr use with npx (no installation required):
npx @voxity/workflows-mcp-serverSetup
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"actions": {
"command": "npx",
"args": ["-y", "@voxity/workflows-mcp-server"],
"env": {
"VOXITY_API_KEY": "your-api-key-here",
"ORGANIZATION_ID": "your-org-id-here",
"BASE_URL": "https://actions.voxity.ai"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"actions": {
"command": "npx",
"args": ["-y", "@voxity/workflows-mcp-server"],
"env": {
"VOXITY_API_KEY": "your-api-key-here",
"ORGANIZATION_ID": "your-org-id-here",
"BASE_URL": "https://actions.voxity.ai"
}
}
}
}Configuration
VOXITY_API_KEY- Your Voxity API keyORGANIZATION_ID- Your organization/agent IDBASE_URL- API endpoint- Production:
https://actions.voxity.ai - Development:
https://actions.dev.voxity.ai - Local:
http://localhost:8080
- Production:
License
MIT
