-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.jsonc
More file actions
29 lines (27 loc) · 971 Bytes
/
Copy pathopencode.jsonc
File metadata and controls
29 lines (27 loc) · 971 Bytes
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
{
"mcp": {
"with-context": {
"type": "local",
"command": [
"npx",
"-y",
"with-context-mcp"
],
"environment": {
// CLIENT-SIDE environment variables (used by with-context-mcp MCP client)
// These are NOT server variables. The markdown-vault server uses MARKDOWN_VAULT_* variables.
// Using OBSIDIAN_* for compatibility with existing Obsidian-based MCP clients
// For new integrations, you can use VAULT_* variables instead:
// "VAULT_API_KEY": "test-api-key-for-mcp-testing-12345",
// "VAULT_API_URL": "https://127.0.0.1:27125",
// "VAULT_NAME": "test_vault",
"OBSIDIAN_API_KEY": "test-api-key-for-mcp-testing-12345",
"OBSIDIAN_API_URL": "https://127.0.0.1:27125",
"OBSIDIAN_VAULT": "test_vault",
"PROJECT_BASE_PATH": "."
},
"enabled": true
}
},
"$schema": "https://opencode.ai/config.json"
}