Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ mcpServers:
X-User-ID: "{{LIBRECHAT_USER_ID}}"
X-API-Key: "${SOME_API_KEY}"
serverInstructions: true # Use server-provided instructions
run_python:
type: stdio
command: deno
args:
- run
- -N
- -R=node_modules
- -W=node_modules
- --node-modules-dir=auto
- jsr:@pydantic/mcp-run-python
- stdio
puppeteer:
type: stdio
command: npx
Expand Down Expand Up @@ -177,13 +188,13 @@ mcpServers:
```yaml
# Use server-provided instructions
serverInstructions: true

# Use custom instructions
serverInstructions: |
When using this filesystem server:
1. Always use absolute paths for file operations
2. Check file permissions before attempting write operations

# Explicitly disable instructions
serverInstructions: false
```
Expand Down