Version history

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

  1. Live 29d91fa90af2
    4/29/2026, 5:32:53 PM
    Content snapshot
    {
      "version": "0.1.0",
      "summary": "Search arXiv preprints by query, with optional category and date range filters.",
      "runtime": "http_post",
      "runtime_config": {
        "url_env": "SCIDEX_V1_TOOLS_ARXIV_SEARCH_URL",
        "url_default": "http://v1.scidex.ai/internal/tools/arxiv_search",
        "timeout_secs": 60
      },
      "input_schema": {
        "type": "object",
        "required": [
          "query"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 20,
            "maximum": 200,
            "minimum": 1
          },
          "query": {
            "type": "string"
          },
          "category": {
            "type": "string",
            "description": "arXiv category code, e.g. q-bio.NC, cs.LG"
          },
          "from_date": {
            "type": "string",
            "description": "ISO date (YYYY-MM-DD)"
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "title": {
                  "type": "string"
                },
                "authors": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "abstract": {
                  "type": "string"
                },
                "arxiv_id": {
                  "type": "string"
                },
                "category": {
                  "type": "string"
                },
                "submitted": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "resource_caps": {
        "network": "external",
        "max_duration_secs": 60
      },
      "examples": [
        {
          "input": {
            "limit": 10,
            "query": "transformer attention biological",
            "category": "q-bio.NC"
          }
        }
      ],
      "lifecycle_state": "active"
    }