Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Bridges Tana personal knowledge graph and Google Calendar for AI agents, enabling semantic search and event management.

README.md

Toogle MCP

Toogle = Tana + Google

A unified Model Context Protocol (MCP) server that bridges Tana and Google services for AI agents.

!TypeScript !MCP !Bun

What is this?

This server acts as a bridge between AI coding assistants (like Claude, Cursor, or Windsurf) and your external tools:

  • Tana – Semantic search across your personal knowledge graph
  • Google Calendar – List and create events programmatically

Instead of asking an AI to run scripts, it can now call tools directly like tana_search or calendar_add_event.

Tools

| Tool | Description | |------|-------------| | tana_search | Full-text or semantic search across your Tana workspace | | tana_node_show | Retrieve full content of a specific Tana node by ID | | calendar_list_events | List upcoming Google Calendar events | | calendar_add_event | Create a new calendar event |

Prerequisites

  • Bun runtime
  • Supertag CLI – Required for Tana integration. Created by Jens-Christian Fischer, this excellent CLI provides the bridge to your Tana workspace.
  • Google Cloud OAuth credentials (for Calendar access)
  • Ollama running locally with bge-m3 model (optional, for semantic search)

Installation

git clone https://github.com/krshirkoohi/toogle-mcp.git
cd toogle-mcp
bun install

Configuration

Add to your MCP config (e.g., ~/.gemini/antigravity/mcp_config.json):

{
  "mcpServers": {
    "antigravity": {
      "command": "/path/to/bun",
      "args": ["/path/to/antigravity-server/index.ts"],
      "env": {
        "SUPERTAG_PATH": "/path/to/supertag",
        "CALENDAR_TIMEZONE": "Europe/London",
        "GOOGLE_CLIENT_ID": "your-client-id",
        "GOOGLE_CLIENT_SECRET": "your-client-secret",
        "GOOGLE_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

Usage

Once configured, your AI agent will have access to the tools. Example prompts:

  • "Search my Tana for notes about project planning"
  • "What's on my calendar this week?"
  • "Add a meeting tomorrow at 3pm"

Architecture

┌─────────────────┐     ┌──────────────────┐     ┌─────────────┐
│   AI Agent      │────▶│    Toogle MCP    │────▶│   Tana CLI  │
│ (Claude/Cursor) │     │      Server      │     │   (search)  │
└─────────────────┘     └──────────────────┘     └─────────────┘
                               │
                               ▼
                        ┌─────────────┐
                        │ Google API  │
                        │ (Calendar)  │
                        └─────────────┘

Why MCP?

The Model Context Protocol allows AI assistants to take actions in the real world, not just generate text. This server demonstrates how to:

  1. Wrap CLI tools as MCP endpoints
  2. Authenticate with OAuth APIs
  3. Return structured data to agents

License

MIT

Author

Built by Kavia Shirkoohi (shirkoohi.com) as part of the Antigravity project.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.