Version history

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

  1. Live f73de101a44f
    4/29/2026, 5:32:53 PM
    Content snapshot
    {
      "version": "0.1.0",
      "summary": "Search Crossref for scholarly works by query, author, or journal.",
      "runtime": "http_post",
      "runtime_config": {
        "url_env": "SCIDEX_V1_TOOLS_CROSSREF_SEARCH_URL",
        "url_default": "http://v1.scidex.ai/internal/tools/crossref_search",
        "timeout_secs": 60
      },
      "input_schema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 20,
            "maximum": 200,
            "minimum": 1
          },
          "query": {
            "type": "string",
            "description": "Free-text search."
          },
          "author": {
            "type": "string"
          },
          "journal": {
            "type": "string"
          },
          "from_year": {
            "type": "integer"
          },
          "until_year": {
            "type": "integer"
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "doi": {
                  "type": "string"
                },
                "year": {
                  "type": "integer"
                },
                "title": {
                  "type": "string"
                },
                "authors": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "journal": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "resource_caps": {
        "network": "external",
        "max_duration_secs": 60
      },
      "cost_model": {
        "per_call_usd": 0.001
      },
      "examples": [
        {
          "input": {
            "limit": 10,
            "query": "LRRK2 Parkinson",
            "from_year": 2020
          },
          "description": "Find LRRK2/PD papers from 2020+."
        }
      ],
      "lifecycle_state": "active"
    }