conferences_search
Pack: inspire-hep · Endpoint: https://gateway.pipeworx.io/inspire-hep/mcp
Search conferences.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
size | number | no |
Example call
Arguments
{
"query": "string theory"
}
curl
curl -X POST https://gateway.pipeworx.io/inspire-hep/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"conferences_search","arguments":{"query":"string theory"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('conferences_search', {
"query": "string theory"
});
More examples
{
"query": "ICHEP 2023",
"size": 15
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Search results from INSPIRE-HEP conferences API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"inspire-hep": {
"url": "https://gateway.pipeworx.io/inspire-hep/mcp"
}
}
}
See Getting Started for client-specific install steps.