-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.yaml
38 lines (33 loc) · 853 Bytes
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
hostname: "0.0.0.0" # Listen on all interfaces by default
port: 3000
# Debug configuration (optional)
debug:
level: "info" # Possible values: "error", "warn", "info", "debug", "verbose"
# Authentication configuration (optional)
# auth:
# basic:
# enabled: true
# credentials:
# - username: "admin"
# password: "your-secure-password"
# bearer:
# enabled: true
# tokens:
# - "your-secure-token"
servers:
# run an MCP server with npx
filesystem:
command: npx
args:
- -y
- "@modelcontextprotocol/server-filesystem"
- "/home/aaron"
# run a an MCP server from local source
puppeteer:
command: tsx
args:
- "/home/aaron/AI/MCP-Servers/src/puppeteer/index.ts"
youtube:
command: tsx
args:
- "/home/aaron/AI/mcp-server-youtube-transcript/src/index.ts"