get_biblio
Pack: epo-ops · Endpoint: https://gateway.pipeworx.io/epo-ops/mcp
Bibliographic data for a patent — title, inventors, applicants, dates, classifications.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
number | string | yes | Patent number in epodoc format, e.g. “EP1234567” |
Example call
curl -X POST https://gateway.pipeworx.io/epo-ops/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_biblio","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
publication-reference | object | Publication reference including number, date, status |
application-reference | object | Application reference details |
priority-claims | object | Priority claim information |
invention-title | object | Title of the invention |
parties | object | Inventors, applicants, and other parties |
classifications-ipcr | object | IPC classifications |
Full JSON Schema
{
"type": "object",
"description": "Bibliographic data for a patent",
"properties": {
"publication-reference": {
"type": "object",
"description": "Publication reference including number, date, status"
},
"application-reference": {
"type": "object",
"description": "Application reference details"
},
"priority-claims": {
"type": "object",
"description": "Priority claim information"
},
"invention-title": {
"type": "object",
"description": "Title of the invention"
},
"parties": {
"type": "object",
"description": "Inventors, applicants, and other parties"
},
"classifications-ipcr": {
"type": "object",
"description": "IPC classifications"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"epo-ops": {
"url": "https://gateway.pipeworx.io/epo-ops/mcp"
}
}
}
See Getting Started for client-specific install steps.