# 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: []
properties:
coincapApiKey:
type: string
description: CoinCap API key required for access to v3 API. Get yours at https://pro.coincap.io/api-docs/
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
config => ({
command: 'npx',
args: ['@bujaayjaay/mcp-coincap-jj'],
env: config.coincapApiKey ? { COINCAP_API_KEY: config.coincapApiKey } : {}
})