euipo_trademark

Pack: euipo · Endpoint: https://gateway.pipeworx.io/euipo/mcp

Retrieve a single EU trademark by its application or registration number from the EUIPO — “look up EUTM 018123456”. Returns the full record (mark text, status, owner/representative, Nice classes, goods & services, filing/registration/expiry dates) plus raw. Example: euipo_trademark({ number: “018123456”, _apiKey: “client_id:client_secret” })

Parameters

NameTypeRequiredDescription
numberstringyesEUTM application or registration number, e.g. “018123456”.
_apiKeystringyesEUIPO OAuth credentials as “client_id:client_secret” from dev.euipo.europa.eu.

Example call

Arguments

{
  "number": "018123456",
  "_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_trademark","arguments":{"number":"018123456","_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_trademark', {
  "number": "018123456",
  "_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.

Regenerated from source · build August 29, 2026