v0.1.0 http_post active net: external by system ~$0.001/call

Search Crossref for scholarly works by query, author, or journal.

Runtime config

show config
{
  "url_env": "SCIDEX_V1_TOOLS_CROSSREF_SEARCH_URL",
  "url_default": "http://v1.scidex.ai/internal/tools/crossref_search",
  "timeout_secs": 60
}

Input schema

JSON 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

JSON 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"
          }
        }
      }
    }
  }
}

Invoke

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

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

Examples

Find LRRK2/PD papers from 2020+.

input
{
  "limit": 10,
  "query": "LRRK2 Parkinson",
  "from_year": 2020
}
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": "crossref_search",
    "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.