Metadados do recurso MCP
curl --request GET \
--url https://api.notifique.dev/.well-known/oauth-protected-resourceconst options = {method: 'GET'};
fetch('https://api.notifique.dev/.well-known/oauth-protected-resource', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/.well-known/oauth-protected-resource"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/.well-known/oauth-protected-resource"
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": "https://mcp.notifique.dev/mcp",
"authorization_servers": [
"https://api.notifique.dev"
],
"scopes_supported": [
"email:send",
"whatsapp:send",
"sms:send"
]
}Metadados
Metadados do recurso MCP
Usado por hosts MCP (ChatGPT, Claude, Gemini) para descobrir o Authorization Server do recurso https://mcp.notifique.dev/mcp.
GET
/
.well-known
/
oauth-protected-resource
Metadados do recurso MCP
curl --request GET \
--url https://api.notifique.dev/.well-known/oauth-protected-resourceconst options = {method: 'GET'};
fetch('https://api.notifique.dev/.well-known/oauth-protected-resource', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/.well-known/oauth-protected-resource"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/.well-known/oauth-protected-resource"
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": "https://mcp.notifique.dev/mcp",
"authorization_servers": [
"https://api.notifique.dev"
],
"scopes_supported": [
"email:send",
"whatsapp:send",
"sms:send"
]
}Esta página foi útil?

