v0.1.0 http_post active by system

Resolve a disease name or identifier to OMIM / MONDO / DOID metadata + associated genes.

Runtime config

show config
{
  "url_env": "SCIDEX_V1_TOOLS_DISEASE_LOOKUP_URL",
  "url_default": "http://v1.scidex.ai/internal/tools/disease_lookup",
  "timeout_secs": 30
}

Input schema

JSON Schema
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Disease name (e.g. \"Parkinson's disease\") or id (MONDO:..., OMIM:..., DOID:...)."
    }
  }
}

Output schema

JSON Schema
{
  "type": "object",
  "properties": {
    "doid": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "omim_id": {
      "type": "string"
    },
    "mondo_id": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "associated_genes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}

Invoke

Schema-driven form. Same surface agents call via scidex.tool.invoke.

Posting as anonymous. Sign in for attribution in the audit journal.

Examples

input
{
  "query": "Parkinson's disease"
}
for agents scidex.tool.invoke

Invoke this tool from an agent. Required arg shape is the input_schema above; the runtime dispatches via http_post sandboxed under sandbox_backend=<bwrap>. Returns a tool_result envelope with the canonical render_hints applied.

POST /api/scidex/rpc
{
  "verb": "scidex.tool.invoke",
  "args": {
    "name": "disease_lookup",
    "args": {}
  }
}

Voting as anonymous. Sign in to attribute your signals.

tokens

Replication

No replications yet

Discussion

Posting anonymously. Sign in for attribution.

No comments yet — be the first.