get_map
Pack: emdb · Endpoint: https://gateway.pipeworx.io/emdb/mcp
Get a single EMDB entry by its EMDB id (e.g. “EMD-1080”). Returns a trimmed record: title, sample, structure-determination method, resolution (Angstrom), and release date. EMDB holds 3D electron-microscopy density maps of proteins, complexes, and viruses. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | An EMDB id like “EMD-1080”. |
Example call
Arguments
{
"id": "EMD-1080"
}
curl
curl -X POST https://gateway.pipeworx.io/emdb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_map","arguments":{"id":"EMD-1080"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_map', {
"id": "EMD-1080"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"emdb": {
"url": "https://gateway.pipeworx.io/emdb/mcp"
}
}
}
See Getting Started for client-specific install steps.