The Vings Model Context Protocol server is exposed at:Documentation Index
Fetch the complete documentation index at: https://docs.vin.gs/llms.txt
Use this file to discover all available pages before exploring further.
Transport (OpenAPI)
OpenAPI documents the HTTP transport, not each tool’s parameters:| Method | Role |
|---|---|
initialize | Session setup |
notifications/initialized | Client notification (HTTP 202, no body) |
tools/list | List readonly tools with inputSchema and outputSchema |
tools/call | Invoke a tool |
GET /api/mcp returns 405 — use POST with a JSON-RPC body.
Per-tool input and output JSON Schemas are returned only from tools/list (outputSchema uses JSON Schema draft 2020-12 for validating structuredContent from tools/call). They are intentionally not duplicated in OpenAPI.
V1 tools (readonly)
| Tool | Purpose |
|---|---|
search_transactions | Transaction search |
get_cashflow_summary | Cashflow summary |
get_spending_by_category | Spending by category |
get_top_merchants | Top merchants |
detect_recurring_payments | Recurring payments |
get_budget_summary | Budget summary |
list_budget_categories | Budget categories |
get_connected_banks_status | Bank connection status |
get_portfolio_snapshot | Portfolio snapshot |
get_portfolio_history | Portfolio history |
get_preferences | User preferences |
Test locally
Frompackages/external, run the API (for example bun run dev), then use MCP Inspector:
http://localhost:<port>/api/mcp and set:
OAuth for ChatGPT and Claude
Discovery URLs:GET /api/.well-known/oauth-protected-resource/mcp
/api):
GET /.well-known/openai-apps-challenge
known_mcp OAuth clients provisioned from the Vings server package; register redirect URIs per the OpenAI Apps SDK auth guide.