Getting Started

Get Glippy MCP Server running with your AI assistant in under 5 minutes.

Requirements

  • Node.js 18.0.0 or higher
  • An MCP-compatible AI client (Claude Code, Claude Desktop, Cursor, etc.)
  • A valid Glippy MCP license key

Installation

Option 1: Via npm (recommended)

npm install -g glippy-mcp

Option 2: Via npx (no install)

Use directly in your MCP configuration without installing globally:

npx -y glippy-mcp

License Key

A valid Glippy MCP license key (GLMCP-XXXX-XXXX-XXXX) is required. Get one at glippy.dev/mcp.

How licensing works

The server validates your key against the Glippy API on first use and caches the result for 24 hours. Analysis runs locally on your machine — only the license check calls our servers.

Quick Setup

Choose your AI environment and add the configuration:

Claude Code / Claude CLI

Create .mcp.json in your project root (or ~/.claude/.mcp.json for global):

{
  "mcpServers": {
    "glippy-geo": {
      "command": "npx",
      "args": ["-y", "glippy-mcp"],
      "env": {
        "GLIPPY_LICENSE_KEY": "GLMCP-XXXX-XXXX-XXXX"
      }
    }
  }
}

Claude Desktop

Edit your claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "glippy-geo": {
      "command": "npx",
      "args": ["-y", "glippy-mcp"],
      "env": {
        "GLIPPY_LICENSE_KEY": "GLMCP-XXXX-XXXX-XXXX"
      }
    }
  }
}

Cursor IDE

Create .cursor/mcp.json in your project:

{
  "mcpServers": {
    "glippy-geo": {
      "command": "npx",
      "args": ["-y", "glippy-mcp"],
      "env": {
        "GLIPPY_LICENSE_KEY": "GLMCP-XXXX-XXXX-XXXX"
      }
    }
  }
}
Restart required

After editing the configuration, restart your AI client for changes to take effect.

Verify Installation

In your AI client, check that the MCP server is connected:

Claude Code / Claude CLI

/mcp

You should see glippy-geo listed with its 9 tools.

Claude Desktop

Look for the MCP tools icon (hammer/wrench) in the interface. Click it to see available Glippy tools.

Your First Analysis

Try a simple analysis to confirm everything works:

Check if example.com has an llms.txt file

Or run a full GEO analysis:

Analyze example.com for AI readiness and show me the top 3 issues to fix

Next Steps

Environment Variables

Variable Required Default Description
GLIPPY_LICENSE_KEY Yes Your MCP license key
GLIPPY_RATE_LIMIT No 5 Default requests/second per domain