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
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,30 @@ Add the following to your `.cursor/mcp.json` or `claude_desktop_config.json` (Ma
}
```

Optional local guardrail with [Armorer Guard](https://github.com/ArmorerLabs/Armorer-Guard):

```json
{
"mcpServers": {
"notionApi": {
"command": "armorer-guard",
"args": [
"mcp-proxy",
"--",
"npx",
"-y",
"@notionhq/notion-mcp-server"
],
"env": {
"NOTION_TOKEN": "ntn_****"
}
}
}
}
```

This wraps the same Notion MCP server with a local proxy that inspects tool-call arguments for prompt injection, credential leakage, exfiltration risk, and dangerous actions before forwarding safe calls to Notion.

###### Option 2: Using OPENAPI_MCP_HEADERS (for advanced use cases)

```json
Expand Down