Mcp Server Card
curl --request GET \
--url https://api.agentpowers.ai/.well-known/mcp/server-card.jsonimport requests
url = "https://api.agentpowers.ai/.well-known/mcp/server-card.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/.well-known/mcp/server-card.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));well-known
Mcp Server Card
SEP-1649 MCP server card for the AgentPowers marketplace MCP server.
GET
/
.well-known
/
mcp
/
server-card.json
Mcp Server Card
curl --request GET \
--url https://api.agentpowers.ai/.well-known/mcp/server-card.jsonimport requests
url = "https://api.agentpowers.ai/.well-known/mcp/server-card.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/.well-known/mcp/server-card.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Response
200 - application/json
Successful Response
Was this page helpful?