get_claims
Pack: epo-ops · Endpoint: https://gateway.pipeworx.io/epo-ops/mcp
Claims text for a patent.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
number | string | yes | Patent number, epodoc format |
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_claims","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
claims | object | Claims data |
Full JSON Schema
{
"type": "object",
"description": "Claims text and structure for a patent",
"properties": {
"claims": {
"type": "object",
"description": "Claims data",
"properties": {
"claim": {
"oneOf": [
{
"type": "object"
},
{
"type": "array",
"items": {
"type": "object"
},
"description": "Individual claims with claim numbers and text"
}
]
}
}
}
}
}
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.