# get-article-fulltext

`station__europepmc-org__get-article-fulltext` · external (needs EXECUTION_BACKEND_URL configured) · domain `europepmc-org` · pv-relevance `pv-adjacent`

Retrieve full core metadata for a single article by its source ID (MED=PubMed, PMC=PubMed Central, PPR=preprint, AGR=Agricola, CBA=Chinese Biological Abstracts). Returns title, authors, abstract, journal, DOI, MeSH terms, full chemicalList, and keyword list. Primary use: causality assessment literature citation, benefit-risk dossier evidence capture.

> **Note:** This tool routes through an external execution backend. If `EXECUTION_BACKEND_URL` is unset on the server, calls return JSON-RPC error `-32603 "Tool execution backend not configured"`. Tools with `backend: native` execute in-process and are always callable.

## Agent metadata

- `idempotent`: unknown
- `read_only`: unknown
- `expected_latency_ms`: unknown (not yet contract-tested)
- `cost_tokens_estimate`: unknown

## Input schema

- `source` *string* (required) — Source database: MED (PubMed), PMC (PubMed Central), PPR (preprint server), AGR (Agricola), CBA (Chinese Biological Abstracts). Most PV literature uses MED.
- `id` *string* (required) — Article identifier within the source (e.g., PubMed PMID '18502943').

## Example call

```json
POST /api/mcp
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__europepmc-org__get-article-fulltext",
    "arguments": {
      "source": "",
      "id": ""
    }
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/europepmc-org__get-article-fulltext](/tools/europepmc-org__get-article-fulltext) — HTML page
- [/tools/europepmc-org__get-article-fulltext/json](/tools/europepmc-org__get-article-fulltext/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
