VS Code

SEO audits directly in VS Code.

The Indxel MCP server brings SEO tools into VS Code through Copilot Chat. Audit URLs, validate metadata, and check your SEO — all without leaving your editor.

1.Add MCP server to VS Code settings

json
// .vscode/settings.json
{
  "mcp": {
    "servers": {
      "indxel": {
        "command": "npx",
        "args": ["-y", "indxel-mcp"]
      }
    }
  }
}

2.Or add as a VS Code task

json
// .vscode/tasks.json
{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "SEO Check",
      "type": "shell",
      "command": "npx indxel check --ci",
      "group": "test",
      "problemMatcher": []
    }
  ]
}

Why use Indxel with VS Code

  • Run SEO audits directly from VS Code without switching to a terminal or browser
  • Use the MCP server with Copilot Chat for AI-powered SEO analysis and suggestions
  • Add Indxel as a VS Code task for one-click SEO validation during development
  • Validate metadata for any URL and get actionable fix suggestions in your editor

Frequently asked questions

Do I need Copilot for the MCP server?

The MCP server works with VS Code's Copilot Chat feature. Without Copilot, you can still use Indxel as a VS Code task that runs in the integrated terminal.

Can I run checks on save?

Yes. Configure a VS Code task with a file watcher to run npx indxel check automatically when you save page files. This gives instant feedback during development.