euipo_search_trademarks
Pack: euipo · Endpoint: https://gateway.pipeworx.io/euipo/mcp
Search EU trademarks (EUTM) at the EUIPO — “find EU trademarks containing NIKE in Nice classes 9 and 25”. Use for EU brand clearance and competitor trademark portfolios. Returns matching marks (application number, mark text, status, owner, Nice classes, filing date) plus raw. Example: euipo_search_trademarks({ verbal_element: “nike”, nice_classes: [9, 25], status: “REGISTERED”, _apiKey: “client_id:client_secret” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
verbal_element | string | no | Text/word element of the mark to match (wildcards added automatically), e.g. “nike”. Multi-word values are quoted safely. |
applicant | string | no | Applicant / owner name to match, e.g. “Nike Innovate”. |
nice_classes | array | no | Nice classification classes to filter by, e.g. [9, 25]. |
items | integer | no | |
status | string | no | Trademark status filter, e.g. “REGISTERED”, “APPLICATION_FILED”, “EXPIRED”. Comma-separate for multiple. |
query | string | no | Advanced: raw RSQL filter passed through verbatim (e.g. verbalElement==“nike”;niceClasses=in=(9,25)). Overrides the friendly params above. |
size | integer | no | Max results per page (default 20, max 100). |
page | integer | no | Zero-based page index for pagination (default 0). |
_apiKey | string | yes | EUIPO OAuth credentials as “client_id:client_secret” from dev.euipo.europa.eu. |
Example call
Arguments
{
"verbal_element": "nike",
"nice_classes": [
9,
25
],
"status": "REGISTERED",
"_apiKey": "your-euipo-client-id:your-euipo-client-secret"
}
curl
curl -X POST https://gateway.pipeworx.io/euipo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"euipo_search_trademarks","arguments":{"verbal_element":"nike","nice_classes":[9,25],"status":"REGISTERED","_apiKey":"your-euipo-client-id:your-euipo-client-secret"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('euipo_search_trademarks', {
"verbal_element": "nike",
"nice_classes": [
9,
25
],
"status": "REGISTERED",
"_apiKey": "your-euipo-client-id:your-euipo-client-secret"
});
More examples
{
"applicant": "Apple Inc.",
"nice_classes": [
42
],
"_apiKey": "your-euipo-client-id:your-euipo-client-secret"
}
Connect
Add this to your MCP client config:
{
"mcpServers": {
"euipo": {
"url": "https://gateway.pipeworx.io/euipo/mcp"
}
}
}
See Getting Started for client-specific install steps.