@boverse/mcp
v0.1.0
Published
MCP server for BoVerse workflow integration (read-only)
Downloads
9
Maintainers
Readme
@boverse/mcp
MCP (Model Context Protocol) server for BoVerse workflow integration.
Read-only by design - This server can only execute workflows and read data. API key creation must be done manually in BoVerse for security.
Installation
npm install -g @boverse/mcpUsage with Claude Desktop / Lovable
Add to your MCP configuration:
{
"mcpServers": {
"boverse": {
"command": "npx",
"args": ["@boverse/mcp"]
}
}
}Available Tools
boverse_execute_workflow
Execute a BoVerse workflow and return the result.
Parameters:
api_key(required): Your BoVerse API keyworkflow_id(required): The workflow to executequery(required): Input for the workflow
Example:
Execute my content generator workflow with the topic "AI in healthcare"boverse_list_workflows
List all workflows accessible with your API key.
Parameters:
api_key(required): Your BoVerse API key
Example:
Show me all my BoVerse workflowsboverse_get_workflow_runs
Get recent execution history for a workflow.
Parameters:
api_key(required): Your BoVerse API keyworkflow_id(required): The workflow IDlimit(optional): Max runs to return (default: 10)
Example:
Show me the last 5 runs of my summarizer workflowSecurity
This MCP server is intentionally read-only:
- ✅ Execute workflows
- ✅ List workflows
- ✅ View execution history
- ❌ Create/delete API keys
- ❌ Modify workflows
- ❌ Access billing/account settings
API keys must be created manually at boverse.io → Workflow → Embed → API Keys.
Environment Variables
| Variable | Default | Description |
|----------|---------|-------------|
| BOVERSE_API_URL | Production URL | Custom API endpoint |
How It Works
- User creates an API key manually in BoVerse
- User adds the API key to their environment or passes it to tools
- AI can use the MCP tools to execute workflows
- Results are returned to the AI for further processing
License
MIT
