-
-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathsmithery.yaml
More file actions
23 lines (23 loc) · 634 Bytes
/
Copy pathsmithery.yaml
File metadata and controls
23 lines (23 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
startCommand:
type: stdio
configSchema:
type: object
properties:
searchBackend:
type: string
enum:
- core
- hybrid
- searxng
default: core
description: >-
Search backend. "core" uses direct engines with local reranking
(default). "hybrid" adds an automatic fallback aggregator. "searxng"
uses the legacy aggregator only.
required: []
commandFunction: |-
(config) => ({
command: 'npx',
args: ['-y', 'wigolo', 'mcp'],
env: config.searchBackend ? { WIGOLO_SEARCH: config.searchBackend } : {}
})