Skip to main content
Glama

Claidex MCP

Server Details

Biomedical failure intelligence platform for terminated trials and translational analysis.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.

Tool Definition Quality

Score is being calculated. Check back soon.

Available Tools

24 tools
claidex_capabilitiesClaidex MCP CapabilitiesInspect

Return the Claidex MCP feature map, configured storage/model providers, safety controls, resources, prompts, and tool counts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

claidex_claim_risk_matrixClaidex Claim Risk MatrixInspect

Search claims and summarize MRS bands, trial phases, failure archetypes, and high-risk programs for rapid diligence.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitYes
queryYesDrug, target, disease, sponsor, or failure archetype.
claidex_health_snapshotClaidex Health SnapshotInspect

Return Sentinel metrics, coverage, graph counts, recent automation runs, MRS bands, and preprint-watch summaries.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

claidex_research_promptClaidex Research PromptInspect

Compose a rigorous, reusable investigation prompt that tells an MCP client which Claidex tools and resources to use.

ParametersJSON Schema
NameRequiredDescriptionDefault
diseaseNoOptional disease area.
objectiveYesThe investigation objective to turn into a reusable MCP prompt.
target_geneNoOptional HGNC target symbol.
risk_toleranceYesmedium
claidex_tool_catalogClaidex Tool CatalogInspect

Return the complete MCP tool catalog, optionally including full input schemas and filtering native versus agent-backed tools.

ParametersJSON Schema
NameRequiredDescriptionDefault
sourceYesall
include_schemasYesInclude full JSON Schemas in the catalog.
consult_specialist_modelConsult Specialist ModelInspect

Ask a specialist Gateway model for code, database/tool-calling, statistics, literature, preprint, or mechanistic synthesis support. Use for hard subproblems, second opinions, code generation/review, or complex synthesis.

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesFocused task for the specialist model.
contextNoRelevant context, snippets, or data. Do not include secrets.
task_typeYesSpecialist routing target.
fetchFetch Claidex ResultInspect

Fetch a specific result returned by search. This compatibility tool supports OpenAI and ChatGPT remote MCP retrieval flows.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesResult id returned by the search tool.
fetch_research_urlFetch Research UrlInspect

Fetch a public HTTPS research URL, JSON API response, package metadata endpoint, documentation page, or dataset preview. Blocks private/internal hosts and truncates large responses.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic HTTPS URL to fetch.
max_charsYes
get_claim_contentGet Claim ContentInspect

Retrieve the complete text content of a specific Claidex Claim by its slug. Use this when you need to read the full post-mortem analysis, including hypothesis, failure mechanism, and prevention analysis.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe Claidex claim slug, e.g. exicorilant-mcrpc-gr-bypass-fourth-failure
query_chemblQuery ChemblInspect

Look up a drug or compound in ChEMBL. Returns mechanism of action, primary target, ChEMBL ID, max development phase, molecular type, and synonyms.

ParametersJSON Schema
NameRequiredDescriptionDefault
drug_nameYesDrug or compound name
query_clinicaltrialsQuery ClinicaltrialsInspect

Search ClinicalTrials.gov for clinical trials. Can search by drug name, condition, target, or NCT ID. Returns trial status, phase, sponsor, primary endpoints, and why_stopped if terminated.

ParametersJSON Schema
NameRequiredDescriptionDefault
phaseYesany
queryYesSearch term: drug name, condition, NCT ID, or target
statusYesany
max_resultsYes
query_failure_graphQuery Failure GraphInspect

Query the Claidex failure graph for a specific gene target. Returns the Mechanism Risk Score (MRS), failure counts by phase and archetype, and all related claim slugs.

ParametersJSON Schema
NameRequiredDescriptionDefault
target_geneYesHGNC gene symbol, e.g. PIK3CA, KRAS, EGFR
query_openfdaQuery OpenfdaInspect

Query the FDA FAERS database for adverse event signals for a drug. Returns top adverse event terms, serious case count, and death count.

ParametersJSON Schema
NameRequiredDescriptionDefault
drug_nameYesDrug name as it appears in FAERS
max_resultsYes
query_opentargetsQuery OpentargetsInspect

Query Open Targets for target-disease association evidence. Returns genetic evidence score, clinical evidence, known drugs, tractability, and safety liabilities for a gene-disease pair.

ParametersJSON Schema
NameRequiredDescriptionDefault
target_geneYesHGNC gene symbol
disease_termYesDisease name or EFO term
query_package_registryQuery Package RegistryInspect

Look up package metadata from npm or PyPI before recommending code, analysis packages, API clients, or dataset tooling.

ParametersJSON Schema
NameRequiredDescriptionDefault
ecosystemYesPackage registry to query.
package_nameYesPackage name.
rank_documents_by_embeddingRank Documents By EmbeddingInspect

Embed a query and candidate documents, then rank documents by cosine similarity. Use for semantic matching, retrieval checks, clustering triage, and lightweight RAG over user-provided passages.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
top_kYes
documentsYes
rerank_documentsRerank DocumentsInspect

Rerank candidate documents/passages against a query using a dedicated reranking model. Use after retrieval/search when exact relevance ordering matters.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
top_nYes
documentsYes
run_computationRun ComputationInspect

Evaluate deterministic mathematical expressions with optional variables. Use for algebra, matrices, vectors, transformations, descriptive numerical checks, and reproducible calculations. Does not execute arbitrary JavaScript or install packages.

ParametersJSON Schema
NameRequiredDescriptionDefault
variablesYesVariables available to the expression. Values must be numbers, strings, vectors, or matrices.
expressionYesMathJS expression, e.g. mean(values), std(values), multiply(A, b), inv(A).
run_statistical_analysisRun Statistical AnalysisInspect

Run a statistical analysis computation. Supports: Wilson confidence intervals, binomial proportions, phase transition success rates, power calculations, Bayesian posterior estimates, descriptive statistics, and two-proportion comparisons. Returns computed values, interpretation, and LaTeX formula.

ParametersJSON Schema
NameRequiredDescriptionDefault
inputsYesNamed input parameters. wilson_ci: {successes, n, confidence}. phase_transition_rate: {phase, indication, n_succeeded, n_total}. power_calculation: {n, effect_size, alpha}. bayesian_posterior: {prior_success_rate, n_observed, n_success, prior_strength?}. descriptive_stats: {values: number[]}. failure_rate_comparison: {a_success, a_n, b_success, b_n}.
contextNoOptional context about what this analysis is for
analysis_typeYes
search_claimsSearch ClaimsInspect

Search the Claidex failure database for post-mortems matching a drug name, gene target, disease, failure archetype, or sponsor. Returns matching claims with title, slug, drug, target, disease, phase, failure archetype, Open Targets score, and MRS score.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitYes
queryYesSearch term: drug name, gene symbol, disease, or failure archetype
categoryYesany
failure_archetypeYesany
search_preprint_flagsSearch Preprint FlagsInspect

Search the Claidex Preprint Watch database for bioRxiv preprints flagged as contradicting the clinical failure record. Search by target gene, disease, or preprint title.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch term: gene symbol, disease, or preprint title fragment
severityYesany
search_pubmedSearch PubmedInspect

Search PubMed for biomedical literature. Returns title, authors, journal, year, DOI, abstract, and PMID for each result.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesPubMed search query
max_resultsYes

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources