# 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:
- zoteroApiKey
- zoteroUserId
properties:
zoteroApiKey:
type: string
description: The API key for accessing your Zotero library.
zoteroUserId:
type: string
description: Your Zotero user ID.
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['build/server.js'], env: { ZOTERO_API_KEY: config.zoteroApiKey, ZOTERO_USER_ID: config.zoteroUserId } })