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
Obsidian Knowledge MCP Server
book-open

Obsidian Knowledge MCP Server MCP Server

AI integration with Obsidian vaults

obsidiannotesknowledgemarkdown

About

## Obsidian Knowledge MCP Server: Personal Knowledge The **Obsidian Knowledge MCP Server** integrates Obsidian's powerful knowledge management system into Google Antigravity, enabling developers to build interconnected knowledge graphs through AI-assisted note-taking. ### Why Obsidian Knowledge MCP? - **Local-First**: Your notes are plain markdown files you own - **Bidirectional Links**: Create a web of interconnected notes - **Graph View**: Visualize connections between your notes - **Plugin Ecosystem**: Extend with 1000+ community plugins - **Customizable**: Themes, hotkeys, and workflows tailored to you ### Key Features #### 1. Note Operations ```javascript // Create note const note = await obsidian.createNote({ path: "Development/API Design.md", content: `# API Design Patterns ## Overview This note covers common [[REST API]] patterns... ## Related - [[Authentication]] - [[Error Handling]] #api #design #patterns` }); // Search notes const results = await obsidian.search({ query: "authentication", options: { searchContent: true, searchTags: true, searchLinks: true } }); // Get note with backlinks const noteWithLinks = await obsidian.getNote({ path: "Development/API Design.md", includeBacklinks: true, includeOutlinks: true }); ``` #### 2. Knowledge Graph Operations ```javascript // Get linked notes const connections = await obsidian.getConnections({ notePath: "Development/API Design.md", depth: 2 }); // Find orphan notes const orphans = await obsidian.findOrphans(); // Get notes by tag const taggedNotes = await obsidian.getNotesByTag({ tag: "#api", includeNested: true }); // Create daily note const daily = await obsidian.createDailyNote({ date: "2024-12-16", template: "Daily Template" }); ``` ### Configuration ```json { "mcpServers": { "obsidian": { "command": "npx", "args": ["-y", "@anthropic/mcp-obsidian"], "env": { "OBSIDIAN_VAULT_PATH": "/path/to/your/vault", "OBSIDIAN_REST_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Personal Knowledge Base**: Build an interconnected second brain for development knowledge. **Technical Notes**: Capture code patterns, solutions, and learnings with linked context. **Documentation**: Create linked documentation that surfaces related information. The Obsidian Knowledge MCP Server brings networked thinking to your development workflow.

Installation

Configuration
{
  "mcpServers": {
    "obsidian": {
      "mcpServers": {
        "obsidian": {
          "env": {
            "OBSIDIAN_REST_API_KEY": "YOUR_API_KEY",
            "OBSIDIAN_REST_API_URL": "http://localhost:27123"
          },
          "args": [
            "-y",
            "@cyanheads/obsidian-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Install Obsidian Local REST API plugin
  2. 2Get API key from plugin settings
  3. 3Configure REST API URL

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