forked from RafalWilinski/mcp-apple-notes
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
42 lines (42 loc) · 1.61 KB
/
Copy pathserver.json
File metadata and controls
42 lines (42 loc) · 1.61 KB
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
39
40
41
42
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.connerkward/mcp-apple-notes",
"description": "Semantic search + connection-discovery across your own Apple Notes (bridges, synthesis).",
"title": "Apple Notes",
"websiteUrl": "https://github.com/connerkward/mcp-apple-notes",
"repository": {
"url": "https://github.com/connerkward/mcp-apple-notes",
"source": "github"
},
"version": "1.0.2",
"packages": [
{
"registryType": "mcpb",
"identifier": "https://github.com/connerkward/mcp-apple-notes/releases/download/v1.0.2/mcp-apple-notes.mcpb",
"version": "1.0.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "OPENAI_API_KEY",
"description": "Only required for synthesis. Set to 'local' when pointing SYNTH_BASE_URL at a local OpenAI-compatible server (LM Studio / Ollama); set to a funded key for real OpenAI. Search, bridges, entities run on-device with no key.",
"isRequired": false,
"isSecret": true
},
{
"name": "SYNTH_BASE_URL",
"description": "Optional OpenAI-compatible base URL for synthesis (e.g. http://localhost:1234/v1 for LM Studio). Keeps notes on-device.",
"isRequired": false,
"isSecret": false
},
{
"name": "SYNTH_MODEL",
"description": "Optional model id for synthesis when SYNTH_BASE_URL is set (defaults to gpt-4o-mini for real OpenAI).",
"isRequired": false,
"isSecret": false
}
]
}
]
}