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
# Endpoint: https://rdfportal.org/sib/sparql
# Description: What is the expression level of the APOC1 gene?
# Parameter: gene_name: (example: APOC1)
PREFIX genex: <http://purl.org/genex#>
PREFIX orth: <http://purl.org/net/orth#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?expression_level ?gene_name
FROM <http://bgee.org>
WHERE {
VALUES ?gene_name { "APOC1" }
?Expression a genex:Expression ;
genex:hasExpressionLevel ?expression_level ;
genex:hasSequenceUnit / rdfs:label ?gene_name .
}
LIMIT 100