cURL
curl --request GET \
--url https://external.vin.gs/api/mcpconst options = {method: 'GET'};
fetch('https://external.vin.gs/api/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://external.vin.gs/api/mcp"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://external.vin.gs/api/mcp"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"error": {
"code": "UNAUTHORIZED",
"message": "Missing bearer token",
"details": null,
"requestId": "<string>"
}
}MCP
Get mcp
MCP requires JSON-RPC POST requests
GET
/
mcp
cURL
curl --request GET \
--url https://external.vin.gs/api/mcpconst options = {method: 'GET'};
fetch('https://external.vin.gs/api/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://external.vin.gs/api/mcp"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://external.vin.gs/api/mcp"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"error": {
"code": "UNAUTHORIZED",
"message": "Missing bearer token",
"details": null,
"requestId": "<string>"
}
}Response
405 - application/json
Method not allowed — use POST with a JSON-RPC body
Show child attributes
Show child attributes
⌘I