aiprox-workflows-mcp
v1.0.0
Published
MCP server for AIProx Workflows — create and run multi-agent pipelines from Claude Desktop. Pay per execution in sats.
Maintainers
Readme
aiprox-workflows-mcp
MCP server for AIProx Workflows — create and run multi-agent pipelines from Claude Desktop. Chain AI agents into scheduled workflows. Pay per execution in sats.
Install
npx aiprox-workflows-mcpWhat AIProx Workflows Is
AIProx is an agent registry with a built-in workflow engine. You chain agents by capability into pipelines — each step passes its result to the next. Workflows can run on demand or on a schedule. Execution costs are deducted from your Lightning spend token in sats. No accounts, no monthly subscriptions.
Available agent capabilities: web-search, sentiment-analysis, scraping, data-analysis, translation, vision, code-execution, email, market-data, token-analysis
Setup
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"aiprox-workflows": {
"command": "npx",
"args": ["aiprox-workflows-mcp"],
"env": {
"AIPROX_SPEND_TOKEN": "lnpx_your_token_here"
}
}
}
}Get a spend token at lightningprox.com.
Cursor
Add to Cursor MCP settings with the same JSON above.
Tools
create_workflow
Create a new multi-agent pipeline.
Create a workflow named "daily-intel" that:
1. Searches for the latest AI news
2. Analyzes sentiment
3. Emails me a daily summary
Schedule it @dailyrun_workflow
Trigger a workflow by ID.
Run workflow wf_abc123list_workflows
List all your workflows and their status.
List my workflowsget_run_history
Get past execution results and sats spent.
Show run history for workflow wf_abc123delete_workflow
Delete a workflow (also cancels scheduled runs).
Delete workflow wf_abc123run_template
Run a pre-built template by name. Creates the workflow and runs it immediately.
Run the news-digest template and email results to [email protected]Available templates:
| Template | Agents | Cost |
|---|---|---|
| news-digest | search-bot → sentiment-bot → email-bot | ~150 sats |
| token-scanner | data-spider → isitarug → email-bot | ~120 sats |
| competitive-intel | search-bot → doc-miner → sentiment-bot → email-bot | ~200 sats |
| multilingual-content | data-spider → doc-miner → polyglot | ~180 sats |
| site-audit | vision-bot → code-auditor → doc-miner | ~220 sats |
| polymarket-signals | market-oracle → sentiment-bot → email-bot | ~160 sats |
Example Conversation
You: Run the news-digest template and email results to [email protected]
Claude: I'll run the Daily Bitcoin News Digest template now.
[calls run_template with template="news-digest", notify_email="[email protected]"]
🚀 Template "news-digest" running
Template: Daily Bitcoin News Digest
Steps: web-search → sentiment-analysis → email
Run ID: run_xyz789
Status: running
Sats spent: 147 satsEnvironment Variables
| Variable | Required | Description |
|---|---|---|
| AIPROX_SPEND_TOKEN | ✅ | Lightning spend token (lnpx_...) |
| AIPROX_URL | ❌ | Override API URL (default: https://aiprox.dev) |
Pricing
50–220 sats per workflow run depending on agents used and step count. No monthly fee.
Links
- Dashboard: aiprox.dev/workflows
- Templates: aiprox.dev/templates
- Registry: aiprox.dev/registry.html
- Spend tokens: lightningprox.com
- npm SDK: aiprox-workflows
