Skip to main content
POST
/
mcp
cURL
curl --request POST \
  --url https://external.vin.gs/api/mcp \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "method": "tools/list"
}
'
{
  "id": "<string>",
  "result": null,
  "error": {
    "code": 123,
    "message": "<string>"
  }
}

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.

Authorizations

Authorization
string
header
required

Vings OAuth access token or personal access token (vng_pat_…). Use Authorization: Bearer ….

Body

application/json
jsonrpc
enum<string>
required
Available options:
2.0
method
string
required

JSON-RPC method (initialize, notifications/initialized, tools/list, tools/call)

Example:

"tools/list"

id
params
object

Response

JSON-RPC result (single object or batch array)

jsonrpc
enum<string>
required
Available options:
2.0
id
result
unknown
error
object