Skip to main content
Glama

OneSearch MCP Server

# 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: searchProvider: type: string default: searxng description: "Search provider to use. Options: searxng, duckduckgo, bing, tavily." searchApiUrl: type: string description: API URL for the search provider (required for searxng). searchApiKey: type: string description: API Key for the search provider (required for tavily or bing). firecrawlApiUrl: type: string description: API URL for firecrawl. firecrawlApiKey: type: string description: API Key for firecrawl if required. commandFunction: # A JS function that produces the CLI command based on the given config to start the MCP on stdio. |- (config) => ({ command: 'node', args: ['dist/index.js'], env: { SEARCH_PROVIDER: config.searchProvider || 'searxng', SEARCH_API_URL: config.searchApiUrl || '', SEARCH_API_KEY: config.searchApiKey || '', FIRECRAWL_API_URL: config.firecrawlApiUrl || '', FIRECRAWL_API_KEY: config.firecrawlApiKey || '' } }) exampleConfig: searchProvider: searxng searchApiUrl: http://127.0.0.1:8080 searchApiKey: YOUR_API_KEY firecrawlApiUrl: http://127.0.0.1:3002 firecrawlApiKey: YOUR_API_KEY

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yokingma/one-search-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server