euipo_search_designs

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

Search registered Community designs (RCD) at the EUIPO — “find registered EU designs owned by Adidas in Locarno class 02”. Use for design-filing landscape and competitor design portfolios. Returns matching designs (design number, indication of product, status, owner, Locarno classes, filing date) plus raw. Example: euipo_search_designs({ owner: “adidas”, locarno_classes: [“02”], _apiKey: “client_id:client_secret” })

Parameters

NameTypeRequiredDescription
indicationstringnoIndication of product / design keyword to match (wildcards added automatically), e.g. “footwear”.
ownerstringnoDesign owner / applicant name to match, e.g. “adidas”.
locarno_classesarraynoLocarno classification classes to filter by, e.g. [“02”, “09”].
itemsstringno
statusstringnoDesign status filter, e.g. “REGISTERED”, “EXPIRED”. Comma-separate for multiple.
querystringnoAdvanced: raw RSQL filter passed through verbatim (e.g. indicationOfProduct==“footwear”;locarnoClasses=in=(02)). Overrides the friendly params above.
sizeintegernoMax results per page (default 20, max 100).
pageintegernoZero-based page index for pagination (default 0).
_apiKeystringyesEUIPO OAuth credentials as “client_id:client_secret” from dev.euipo.europa.eu.

Example call

Arguments

{
  "owner": "adidas",
  "locarno_classes": [
    "02"
  ],
  "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_designs","arguments":{"owner":"adidas","locarno_classes":["02"],"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_designs', {
  "owner": "adidas",
  "locarno_classes": [
    "02"
  ],
  "status": "REGISTERED",
  "_apiKey": "your-euipo-client-id:your-euipo-client-secret"
});

More examples

{
  "indication": "footwear",
  "locarno_classes": [
    "09"
  ],
  "_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