search_participants
Pack: peppol · Endpoint: https://gateway.pipeworx.io/peppol/mcp
Search the Peppol Directory (directory.peppol.eu, OpenPEPPOL’s opt-in business-card index) by company name, VAT/organisation number or country to find a participant identifier. Use this to turn a company name into the “{schemeCode}:{value}” identifier that lookup_participant needs. Registration on the network does not require publishing a business card, so absence here is not proof a company is not on Peppol — confirm with lookup_participant.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
q | string | yes | Free-text query: company name, VAT number, or organisation number, e.g. “Atelier OSLO” or “1021916675”. |
country | string | no | Optional 2-letter ISO country code filter, e.g. “NO”, “BE”, “DE”. |
limit | number | no | Max matches to return, 1-100. Default 10. |
Example call
Arguments
{
"q": "Atelier OSLO",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/peppol/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_participants","arguments":{"q":"Atelier OSLO","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_participants', {
"q": "Atelier OSLO",
"limit": 5
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"peppol": {
"url": "https://gateway.pipeworx.io/peppol/mcp"
}
}
}
See Getting Started for client-specific install steps.