|
5 | 5 | // Keep all the credentials and private into the `.env` file |
6 | 6 | // and refer to them with `${...}` notation as needed. |
7 | 7 | { |
| 8 | + // "schema_transformations": false, |
| 9 | + |
8 | 10 | // "llm": { |
9 | 11 | // // https://docs.anthropic.com/en/docs/about-claude/pricing |
10 | 12 | // // https://console.anthropic.com/settings/billing |
|
19 | 21 | // // https://platform.openai.com/docs/pricing |
20 | 22 | // // https://platform.openai.com/settings/organization/billing/overview |
21 | 23 | // "provider": "openai", |
22 | | - // "model": "gpt-4.1-nano", |
23 | | - // // "model": "gpt-5-mini", |
| 24 | + // // "model": "gpt-4.1-nano", |
| 25 | + // "model": "gpt-5-mini", |
24 | 26 | // // "temperature": 0.0, // 'temperature' is not supported with "o4-mini" |
25 | 27 | // // "max_completion_tokens": 10000, // Use 'max_completion_tokens' instead of 'max_tokens' |
26 | 28 | // }, |
|
61 | 63 | "Are there any weather alerts in California?", |
62 | 64 | // "What's the news from Tokyo today?", |
63 | 65 | // "Open the webpage at bbc.com", |
| 66 | + // "Tell me how many github repositories I have?" |
64 | 67 | // "Tell me about my Notion account", |
65 | 68 | ], |
66 | 69 |
|
|
118 | 121 | // "Authorization": "Bearer ${GITHUB_PERSONAL_ACCESS_TOKEN}" |
119 | 122 | // } |
120 | 123 | // }, |
121 | | - // // NOTE: When accessing the GitHub MCP server, [GitHub PAT (Personal Access Token)](https://github.com/settings/personal-access-tokens) |
122 | | - // // alone is not enough; your GitHub account must have an active Copilot subscription or be assigned a Copilot license through your organization. |
123 | 124 |
|
124 | 125 | // // https://github.com/microsoft/playwright-mcp |
125 | 126 | // "playwright": { |
|
134 | 135 | // "env": { "BRAVE_API_KEY": "${BRAVE_API_KEY}" } |
135 | 136 | // }, |
136 | 137 |
|
137 | | - // notion: { |
138 | | - // "command": "npx", |
139 | | - // "args": ["-y", "@notionhq/notion-mcp-server"], |
140 | | - // "env": { |
141 | | - // // Although the following implies that this MCP server is designed for |
142 | | - // // OpenAI LLMs, it works fine with others models. |
143 | | - // // Tested with Claude and Gemini (with schema adjustments). |
144 | | - // "OPENAPI_MCP_HEADERS": '{"Authorization": "Bearer ${NOTION_INTEGRATION_SECRET}", "Notion-Version": "2022-06-28"}' |
145 | | - // }, |
| 138 | + // The following Notion local MCP server is not recommended anymore? |
| 139 | + // Refs: |
| 140 | + // - https://developers.notion.com/docs/get-started-with-mcp |
| 141 | + // - https://www.npmjs.com/package/@notionhq/notion-mcp-server |
| 142 | + // |
| 143 | + // "notionApi": { |
| 144 | + // "command": "npx", |
| 145 | + // "args": ["-y", "@notionhq/notion-mcp-server"], |
| 146 | + // "env": { |
| 147 | + // "NOTION_TOKEN": "${NOTION_INTEGRATION_SECRET}" |
| 148 | + // } |
146 | 149 | // }, |
| 150 | + |
| 151 | + // Run Notion remote MCP server via mcp-remote |
| 152 | + // "notionMCP": { |
| 153 | + // "command": "npx", |
| 154 | + // "args": ["-y", "mcp-remote", "https://mcp.notion.com/mcp"], |
| 155 | + // } |
147 | 156 | } |
148 | 157 | } |
0 commit comments