MCP in Velane
Velane includes a first-class MCP server so coding agents can create, update, publish, and invoke snippets directly from your IDE.
Why MCP is first-class in Velane
MCP is not an addon workflow in Velane. It is a primary interface for agent-driven development:
- create snippet drafts
- update and publish versions
- invoke snippets
- read logs and metrics
- discover connected integrations
MCP endpoint
Local default:
http://localhost:8090/mcp
Cursor setup example
Add this to your MCP config:
{
"mcpServers": {
"velane": {
"url": "http://localhost:8090/mcp",
"headers": {
"Authorization": "Bearer vl_xxxx"
}
}
}
}
Use an API key with the minimum scope needed for your workflow.
Typical agent workflow
list_connectionsget_integration_docsfor a providercreate_snippetupdate_draftinvoke_snippetpublish_snippetget_logs/get_metrics
Core tools you will use often
- snippets: create, update draft, publish, list, get
- invoke: sync/async/stream invocation
- integrations: list tenant connections and provider docs
- operations: logs, metrics, secrets
Practical guidance
- Keep API keys scoped to the least privilege needed
- Validate in
devfirst, then promote tostagingandprod - Use provider docs tooling before generating integration-heavy snippet code