# 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:
- metamcpApiKey
properties:
metamcpApiKey:
type: string
description: The API key from metamcp.com/api-keys. Required.
metamcpApiBaseUrl:
type: string
description: Optional override for the MetaMCP App URL (default is https://api.metamcp.com).
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
# Note: Command line arguments can also be used directly:
# --metamcp-api-key <your-api-key> --metamcp-api-base-url <base-url>
|-
(config) => ({ command: 'node', args: ['dist/index.js'], env: { METAMCP_API_KEY: config.metamcpApiKey, ...(config.metamcpApiBaseUrl && { METAMCP_API_BASE_URL: config.metamcpApiBaseUrl }) } })