# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
description: The CLIENT_ID, CLIENT_SECRET, and REFRESH_TOKEN are required to test the server without running it locally, but see the code README for an overview of how to use credential files for product usage.
required:
- CLIENT_ID
- CLIENT_SECRET
- REFRESH_TOKEN
properties:
CLIENT_ID:
type: string
description: OAuth2 client ID
CLIENT_SECRET:
type: string
description: OAuth2 client Secret
REFRESH_TOKEN:
type: string
description: Refresh token
commandFunction:
|-
(config) => ({
command: 'node',
args: ['dist/index.js'],
env: {
CLIENT_ID: config.CLIENT_ID,
CLIENT_SECRET: config.CLIENT_SECRET,
REFRESH_TOKEN: config.REFRESH_TOKEN
}
})
exampleConfig:
CLIENT_ID: your_client_id_here
CLIENT_SECRET: your_client_secret_here
REFRESH_TOKEN: your_refresh_token_here