Version history

1 version on record. Newest first; the live version sits at the top with a live indicator.

  1. Live 298ad0a2f19a
    4/29/2026, 5:32:53 PM
    Content snapshot
    {
      "version": "0.1.0",
      "summary": "Search PubMed for biomedical papers matching a query. Bridges to v1's pubmed_search service.",
      "runtime": "http_post",
      "runtime_config": {
        "url_env": "SCIDEX_V1_TOOLS_PUBMED_URL",
        "url_default": "http://v1.scidex.ai/internal/tools/pubmed_search",
        "timeout_secs": 60
      },
      "input_schema": {
        "type": "object",
        "required": [
          "query"
        ],
        "properties": {
          "sort": {
            "enum": [
              "relevance",
              "date"
            ],
            "type": "string",
            "default": "relevance"
          },
          "limit": {
            "type": "integer",
            "default": 20,
            "maximum": 200,
            "minimum": 1
          },
          "query": {
            "type": "string",
            "description": "PubMed search syntax."
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "pmid": {
                  "type": "string"
                },
                "year": {
                  "type": "integer"
                },
                "title": {
                  "type": "string"
                },
                "authors": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "abstract": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "resource_caps": {
        "network": "external",
        "max_duration_secs": 60
      },
      "cost_model": {
        "per_call_usd": 0.01
      },
      "examples": [
        {
          "input": {
            "limit": 10,
            "query": "LRRK2 mitochondria 2024"
          },
          "description": "Find recent papers on LRRK2 + mitochondrial function."
        }
      ],
      "lifecycle_state": "active"
    }