Skip to main content
GET
/
.well-known
/
oauth-protected-resource
/
mcp
cURL
curl --request GET \
  --url https://external.vin.gs/api/.well-known/oauth-protected-resource/mcp
const options = {method: 'GET'};

fetch('https://external.vin.gs/api/.well-known/oauth-protected-resource/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://external.vin.gs/api/.well-known/oauth-protected-resource/mcp"

response = requests.get(url)

print(response.text)
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://external.vin.gs/api/.well-known/oauth-protected-resource/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))

}
{
  "resource": "<string>",
  "authorization_servers": [
    "<string>"
  ],
  "scopes_supported": [
    "<string>"
  ],
  "bearer_methods_supported": [
    "<string>"
  ],
  "resource_name": "<string>"
}

Response

200 - application/json

OAuth 2.0 Protected Resource Metadata (RFC 9728) for the Vings MCP server at /api/mcp

resource
string<uri>
required
authorization_servers
string<uri>[]
required
scopes_supported
string[]
required
bearer_methods_supported
string[]
required
resource_name
string
required