UNPKG

@skobyn/mcp-dataforseo

Version:

Model Context Protocol server for DataForSEO API

25 lines 663 B
# Smithery configuration file: https://smithery.ai/docs/config startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP type: object required: - username - password properties: username: type: string description: Your DataForSEO API username password: type: string description: Your DataForSEO API password commandFunction: | (config) => ({ command: 'node', args: ['index.js'], env: { DATAFORSEO_USERNAME: config.username, DATAFORSEO_PASSWORD: config.password } })