mechoulam.de Cannabis Evidence Register
Server Details
GRADE-rated clinical evidence on cannabis as medicine (DE/EN). Search and cite studies.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolsfetchARead-onlyInspect
Fetch one full record by the id returned from search: the GRADE-rated evidence summary of an indication, or one study with its per-indication verdicts. Includes the source URL to cite.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Id from a search result |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | |
| text | Yes | |
| title | Yes | |
| metadata | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds behavioral value by specifying that it returns exactly one full record, that the record type is either an indication summary or a study with per-indication verdicts, and that a source URL for citation is included. No contradiction with the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler: the core action, the input provenance, the possible record types, and the citation URL are all covered. The most important scoping information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With a single well-documented parameter, a read-only annotation, and an output schema present, the description is complete for an agent to select and call the tool correctly. It also preempts confusion about which record type may be returned and provides the citation detail.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the single id parameter, and the schema description already says 'Id from a search result.' The description reinforces this same meaning but adds little new semantic detail beyond what the schema provides, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb ('Fetch'), a specific resource ('one full record by the id returned from search'), and the two possible record types (GRADE-rated evidence summary or study with verdicts). This clearly differentiates it from the search and list siblings, and even from get_indication/get_study by emphasizing the unified id-based fetch.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It tells the agent this tool is used with an id returned from search, implying it should be called after search rather than as a standalone query. It does not explicitly name alternatives or exclusion conditions, but the id-from-search guidance is clear contextual usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_indicationARead-onlyInspect
Get the GRADE-rated evidence summary for one indication (reviewed studies only). Use a slug from list_indications.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language of the answer and of the cited source URL. 'de' (default) cites mechoulam.de/..., 'en' cites mechoulam.de/en/... | |
| slug | Yes | Indication slug |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, so no safety contradiction exists. The description adds behavioral value by stating that only reviewed studies are included and that the evidence is GRADE-rated, which tells the agent what kind of content to expect without relying on the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two tight sentences, front-loading the core action and then giving the one essential usage instruction. There is no filler, repetition of schema details, or unnecessary explanation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple lookup tool with two well-documented parameters, safe read-only annotations, and a clear source of valid slugs, the description covers everything an agent needs to invoke it correctly. The absence of an output schema is mitigated by the phrase 'GRADE-rated evidence summary', which adequately conveys what will be returned.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents both parameters with 100% coverage, so the baseline is 3. The description adds meaningful semantic guidance by telling the agent that the slug should come from list_indications, which is exactly the operational knowledge needed to call the tool correctly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description begins with a specific verb and resource: 'Get the GRADE-rated evidence summary for one indication'. It adds important qualifiers ('reviewed studies only') that distinguish this from searching or fetching raw studies. It even points to the sibling list_indications as the source of valid slugs, making the tool's role in the family clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The instruction 'Use a slug from list_indications' gives a clear precondition and points to the correct data source. It does not explicitly enumerate alternatives or say when not to use this tool, but for a single-purpose lookup the context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_studyARead-onlyInspect
Get one study by DOI with its per-indication verdicts (reviewed-only).
| Name | Required | Description | Default |
|---|---|---|---|
| doi | Yes | Study DOI | |
| lang | No | Language of the answer and of the cited source URL. 'de' (default) cites mechoulam.de/..., 'en' cites mechoulam.de/en/... |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation already signals a safe read operation. The description adds value by disclosing that only reviewed verdicts are included and that the response is organized per indication, which is behavioral context beyond the annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One short, front-loaded sentence with no filler. Every word earns its place, and the key identifier and include-filter are both mentioned efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter read-only tool, the description covers the input, the lookup key, and the return content sufficiently. The absence of an output schema is partially compensated by 'per-indication verdicts (reviewed-only)', though a bit more detail on the return shape would make it fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both doi and lang. The description reinforces that the study is looked up by DOI but adds no new parameter-level detail beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb and resource ('Get one study by DOI') and adds a distinctive detail ('with its per-indication verdicts (reviewed-only)') that separates it from siblings like get_indication or list_indications. An agent can immediately infer what this tool returns and what identifier it needs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Get one study by DOI' gives a clear context for when to use this tool: when the agent already has a DOI and needs that specific study's verdicts. It does not explicitly name alternatives or exclusions, but the context is clear enough to avoid obvious misuse.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_indicationsARead-onlyInspect
List all indications on mechoulam.de with slug, name, category, count of reviewed studies and the citable page URL.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language of the answer and of the cited source URL. 'de' (default) cites mechoulam.de/..., 'en' cites mechoulam.de/en/... |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds the scope ('all indications') and expected fields, but does not disclose pagination, ordering, completeness guarantees, or response shape beyond field names.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single well-structured sentence places the core action first and lists fields compactly. No filler or duplication.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only list with one optional parameter, the description names the output fields and scope, which is nearly sufficient. It lacks only explicit ordering/pagination details, which are unlikely to be critical for an enumeration endpoint.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%; lang is fully described in the schema. The description does not add language nuances or default behavior beyond what the schema states.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('List'), a resource ('indications on mechoulam.de'), and enumerates the returned fields. This distinguishes it from sibling get_indication, which appears to target a single indication.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'List all indications' clearly implies an enumeration use case, but the description never names alternatives like get_indication or states when to prefer this tool. No explicit exclusions or conditions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchARead-onlyInspect
Search the mechoulam.de cannabis-medicine evidence register by free text (indication, condition, drug, study title, author). Returns indications and reviewed studies with citable URLs. Answer language follows the language of the query.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false, and the description does not contradict them. It adds useful behavioral context beyond the schema: the result includes citable URLs and that the answer language follows the query language, which is non-obvious and relevant for invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences with no filler. The core purpose and scope are front-loaded, followed by return contents and a language behavior note. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter read-only search tool with an output schema and clear annotations, the description covers what the tool searches, what it returns, and a language-specific behavior. Nothing critical is missing for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents the single query parameter. The description adds meaning by specifying what kinds of free text are valid (indication, condition, drug, study title, author), which is valuable beyond the bare 'Search query' schema text.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb ('Search'), a specific resource (the mechoulam.de cannabis-medicine evidence register), and enumerates the searchable fields (indication, condition, drug, study title, author). It also states what it returns, clearly distinguishing it from the more targeted sibling tools get_indication, get_study, fetch, and list_indications.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies this is the free-text search entry point across the register, which sets expectations for when to use it versus direct lookup or listing tools. It does not explicitly name alternatives or exclusion conditions, but the 'by free text' qualifier gives enough context for an agent to route correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
- First observed
fetch - First observed
get_indication - First observed
get_study - First observed
list_indications - First observed
search
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Search 36M+ PubMed biomedical articles and ClinicalTrials.gov studies.
Source-traced evidence research for AI agents. We organise the evidence; you decide.
Medical RAG: semantic search for clinical guidelines, drug interactions, diagnoses & EHR data.
Medical RAG: semantic search for clinical guidelines, drug interactions, diagnoses & EHR data.
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables medical evidence retrieval and analysis via AI-powered search and summarization tools.1420MIT
- AlicenseNot gradedqualityAmaintenanceEnables clinical question answering via OpenEvidence with citation verification, including tools to ask questions, retrieve results, and follow up, plus an integrated skill to check citations against primary sources.4MIT
- AlicenseNot gradedqualityCmaintenanceProvides medical evidence tools including PubMed search, citation verification, clinical trial lookup, drug information, drug interaction checking, PICO extraction, and medical entity recognition via MCP.1MIT
- AlicenseNot gradedqualityAmaintenanceEnables traceable scholarly literature reviews using free APIs, generating reports where every claim links to evidence IDs.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Search and list_indications are clearly distinct, but fetch overlaps with get_indication and get_study since it also retrieves a full record by ID. The descriptions help somewhat, but an agent could reasonably struggle to choose between the generic fetch and the more specific getters.
list_indications, get_indication, and get_study follow a consistent verb_noun pattern, but search and fetch are one-word verbs that break the convention. The mix is readable but not fully predictable.
Five tools is a well-scoped surface for a read-only evidence register. Each tool covers a necessary part of discovery and retrieval without unnecessary bloat.
The register's core workflow is covered: search across records, list indications, and retrieve detailed indication summaries or individual studies. A minor gap is the lack of an explicit list-studies endpoint, but search and fetch can fill that need in most cases.