We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arkinjo/togo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mp.rq•446 B
# Endpoint: https://rdfportal.org/bioportal/sparql
# Description: List the pairs of MP ID and its label
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX oboinowl: <http://www.geneontology.org/formats/oboInOwl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?id ?label
FROM <http://rdf.integbio.jp/dataset/bioportal/mp>
WHERE {
?Class a owl:Class ;
oboinowl:id ?id ;
rdfs:label ?label .
}
LIMIT 100