UNPKG

@aot-tech/clockify-mcp-server

Version:

MCP Server for Clockify time tracking integration with AI tools

26 lines (25 loc) 777 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: - clockifyApiToken properties: clockifyApiToken: type: string default: YOUR_CLOCKIFY_API_TOKEN_HERE description: Clockify API token for authentication commandFunction: # A JS function that produces the CLI command based on the given config to start the MCP on stdio. |- (config) => ({ command: 'node', args: ['build/src/index.js'], env: { CLOCKIFY_API_TOKEN: config.clockifyApiToken } }) exampleConfig: clockifyApiToken: dummy_token_12345