Quick Start Guide
Get up and running with VerveKit in minutes. Connect the VerveKit MCP server to your agent — or call skills directly over REST — and make your first live skill call.
VerveKit turns 350+ real-world capabilities into skills your software can call. Connect once over MCP and every enabled skill appears as a native tool your agent invokes automatically; or call them over REST as a simple GET request per skill.
Either way the pattern is consistent: connect, then call. Learn it for one skill and you know how to use them all.
1. Connect over MCP
VerveKit is a remote MCP server. Point your agent or MCP client at one URL and every enabled skill becomes a native tool the model can call. Add it to your client config:
{
"mcpServers": {
"vervekit": {
"url": "https://api.vervekit.com/v1/mcp"
}
}
}MCP auth is handled by OAuth in your browser the first time you connect — there's no key in the config. One authorization covers every skill.
2. Or call over REST
Prefer to call from a backend? Every skill is also a single GET /v1/{skill} request. Get your key from the dashboard and send it in the x-api-key header:
curl "https://api.vervekit.com/v1/weatherforecast?city=Austin" \
-H "x-api-key: YOUR_VERVEKIT_KEY"3. Make your first call
Over MCP, just ask your agent something that needs live data — “What's the weather in Austin?” — and it invokes the vervekit · weatherforecast skill on its own, then answers from the result. Over REST you get the same clean, structured JSON back. Learn one skill and you know them all — the pattern is identical across the catalog.