Skip to main content
Install the Aident MCP skill to access 1000+ integrations, playbooks, templates, and dashboard directly from your AI assistant.

One-Command Install

If your MCP client supports Skills.sh, install with a single command:
npx skills add aident-ai/aident-skill
This automatically configures the Aident MCP server for your client.

Manual Setup

Add the Aident server URL to your client’s MCP configuration file.
Run in your terminal:
claude mcp add --transport http aident https://app.aident.ai/api/mcp
Or add to ~/.claude.json:
{
  "mcpServers": {
    "aident": {
      "type": "http",
      "url": "https://app.aident.ai/api/mcp"
    }
  }
}
Add to your config file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "aident": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://app.aident.ai/api/mcp"]
    }
  }
}
Or on Pro/Max/Team/Enterprise plans: Settings → Connectors → Add and enter https://app.aident.ai/api/mcp.
Add to .cursor/mcp.json in your project root:
{
  "mcpServers": {
    "aident": {
      "url": "https://app.aident.ai/api/mcp"
    }
  }
}
Add to .vscode/mcp.json in your project root:
{
  "servers": {
    "aident": {
      "type": "http",
      "url": "https://app.aident.ai/api/mcp"
    }
  }
}
Add to ~/.codeium/windsurf/mcp_config.json:
{
  "mcpServers": {
    "aident": {
      "serverUrl": "https://app.aident.ai/api/mcp"
    }
  }
}
Go to Settings → MCP Servers → Add Server, then enter:
https://app.aident.ai/api/mcp
Add to ~/.gemini/settings.json:
{
  "mcpServers": {
    "aident": {
      "httpUrl": "https://app.aident.ai/api/mcp"
    }
  }
}
Any MCP-compatible client (Codex, Goose, Kiro, OpenCode, Antigravity, Factory, etc.) can connect using the server URL https://app.aident.ai/api/mcp. Refer to your client’s documentation for where to add MCP server configurations.

Authenticate

On first use, your MCP client will automatically:
  1. Discover Aident’s OAuth endpoints
  2. Open your browser for login (Google OAuth or magic link)
  3. Store your access token locally
No manual token management needed — the client handles everything.

Verify

Ask your AI assistant to use an Aident tool. You should see 22 tools available across auth, skills, integrations, playbooks, templates, and dashboard.
Try asking: “Use Aident to list my available skills” or “Check my Aident integration status”

Next Steps