Skip to main content
Glama

PI API MCP Server

smithery.yaml924 B
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: - apiUrl properties: apiUrl: type: string description: The base API URL for the PI Dashboard API. authToken: type: string description: Optional authentication token if required. description: Configuration for starting the PI API MCP Server. commandFunction: # A JS function that produces the CLI command based on the given config to start the MCP on stdio. |- (config) => { const args = ['build/index.js', '--api-url', config.apiUrl]; if (config.authToken) { args.push('--auth-token', config.authToken); } return { command: 'node', args }; } exampleConfig: apiUrl: http://localhost:8224/pi/api/v2 authToken: YOUR_PI_API_KEY

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mingzilla/pi-api-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server