Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Notion
file-text

Notion MCP Server

Official Notion MCP server for workspace integration

notionproductivitynoteswikidatabase

About

## Notion MCP Server: All-in-One Workspace The **Notion MCP Server** integrates Notion's powerful workspace into Google Antigravity, enabling developers to manage notes, databases, and documentation through AI-assisted knowledge workflows. ### Why Notion MCP? - **Blocks System**: Build anything with flexible, nested blocks - **Databases**: Powerful databases with views, filters, and relations - **Templates**: Start fast with templates for any use case - **Collaboration**: Real-time editing with team members - **API Access**: Full programmatic access to all content ### Key Features #### 1. Page and Database Operations ```javascript // Create page const page = await notion.createPage({ parent: { database_id: "database_123" }, properties: { "Name": { title: [{ text: { content: "API Documentation" } }] }, "Status": { select: { name: "In Progress" } }, "Tags": { multi_select: [{ name: "Backend" }, { name: "API" }] } }, children: [ { object: "block", type: "heading_1", heading_1: { rich_text: [{ text: { content: "Overview" } }] } }, { object: "block", type: "paragraph", paragraph: { rich_text: [{ text: { content: "This document..." } }] } } ] }); // Query database const results = await notion.queryDatabase({ database_id: "database_123", filter: { property: "Status", select: { equals: "In Progress" } }, sorts: [{ property: "Created", direction: "descending" }] }); ``` #### 2. Block Management ```javascript // Append blocks to page await notion.appendBlocks({ block_id: page.id, children: [ { type: "code", code: { rich_text: [{ text: { content: "const api = new API();" } }], language: "javascript" } } ] }); // Search across workspace const searchResults = await notion.search({ query: "authentication", filter: { property: "object", value: "page" } }); ``` ### Configuration ```json { "mcpServers": { "notion": { "command": "npx", "args": ["-y", "@anthropic/mcp-notion"], "env": { "NOTION_API_KEY": "your-integration-token" } } } } ``` ### Use Cases **Documentation**: Build and maintain technical documentation with databases. **Project Wiki**: Create team wikis with linked pages and databases. **Knowledge Base**: Organize institutional knowledge with search and relations. The Notion MCP Server brings powerful workspace capabilities to your development workflow.

Installation

Configuration
{
  "mcpServers": {
    "notion": {
      "mcpServers": {
        "notionApi": {
          "env": {
            "NOTION_TOKEN": "ntn_YOUR_TOKEN"
          },
          "args": [
            "-y",
            "@notionhq/notion-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Create an integration at notion.so/profile/integrations
  2. 22. Copy your integration token (starts with ntn_)
  3. 33. Replace ntn_YOUR_TOKEN with your actual token
  4. 44. Grant the integration access to specific pages in Notion

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers