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

Resolve a DOI to canonical metadata (title, authors, journal, year, abstract).

Runtime config

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

Input schema

JSON Schema
{
  "type": "object",
  "required": [
    "doi"
  ],
  "properties": {
    "doi": {
      "type": "string",
      "description": "DOI in canonical form, e.g. 10.1038/nature12373"
    }
  }
}

Output schema

JSON Schema
{
  "type": "object",
  "properties": {
    "pmid": {
      "type": "string"
    },
    "year": {
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "authors": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "journal": {
      "type": "string"
    },
    "abstract": {
      "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

Resolve a Nature paper's metadata.

input
{
  "doi": "10.1038/nature12373"
}
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": "doi_resolve",
    "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.