Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .changeset/calm-notion-automations.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@roomote/web": minor
---

Add a deployment-wide Notion connection for tasks and automations, with admin-configurable read-only or read-write tool access.
Add a deployment-wide Notion internal integration for tasks and automations. Notion restricts it to explicitly shared content, while admins choose read-only or read-write tool access in Roomote.
102 changes: 0 additions & 102 deletions apps/api/src/handlers/mcp/__tests__/integration-mcp.test.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

243 changes: 243 additions & 0 deletions apps/api/src/handlers/mcp/__tests__/notion-auth.test.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions apps/api/src/handlers/mcp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import { grafanaMcp } from './grafana';
import { getIntegrationMcpProxyOptions } from './integration-mcp-policy';
import { linearMcp } from './linear';
import { mcpAuthMiddleware } from './middleware';
import { notionMcp } from './notion';
import { slackMcp } from './slack';
import { snowflakeMcp } from './snowflake';
import { vercelMcp } from './vercel';
Expand Down Expand Up @@ -72,6 +73,7 @@ mcp.route('/asana', asanaMcp);
mcp.route('/granola', granolaMcp);
mcp.route('/grafana', grafanaMcp);
mcp.route('/linear', linearMcp);
mcp.route('/notion', notionMcp);
mcp.route('/snowflake', snowflakeMcp);
mcp.route('/vercel', vercelMcp);

Expand Down
Loading
Loading