USE AADDYY WITHAI AGENTS

Connect 100+ AI tools to Cursor, Claude Code, Windsurf, or any MCP-compatible client. One API key, one config file — your agent can generate articles, images, videos, solve math, analyze SEO, and more.

Setup in 2 minutes

1

Get an API key

Sign up at aaddyy.com (50 free credits, no card needed), then create a key:

2

Add the config to your editor

Copy the config for your editor. Replace aip_your_key_here with your actual API key.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "aaddyy": {
      "command": "npx",
      "args": ["@aaddyy/mcp-server"],
      "env": {
        "AADDYY_API_KEY": "aip_your_key_here"
      }
    }
  }
}

Claude Code

~/.claude/claude_desktop_config.json

{
  "mcpServers": {
    "aaddyy": {
      "command": "npx",
      "args": ["@aaddyy/mcp-server"],
      "env": {
        "AADDYY_API_KEY": "aip_your_key_here"
      }
    }
  }
}

Windsurf

.windsurf/mcp.json

{
  "mcpServers": {
    "aaddyy": {
      "command": "npx",
      "args": ["@aaddyy/mcp-server"],
      "env": {
        "AADDYY_API_KEY": "aip_your_key_here"
      }
    }
  }
}
3

Use it

Just ask your AI agent naturally. It will use AADDYY tools automatically:

"Generate an article about AI trends in 2026"
"Create a logo for my startup called NovaTech"
"Solve this integral: x^2 from 0 to 5"
"Analyze the SEO of example.com"
"Generate a professional headshot"

Pricing

Pay-per-use. 1 credit = $0.01. Most tools cost 1-10 credits per call.

New accounts get 50 free credits ($0.50) — no credit card required.

API Documentation

Full endpoint reference with examples

Developer Portal

Interactive API explorer

NPM SDK

npm install aaddyy

Swagger UI

Interactive API explorer

Alternative: NPM SDK

If you prefer using AADDYY in code instead of via MCP:

npm install aaddyy
import { AADDYY } from 'aaddyy'

const client = new AADDYY() // reads AADDYY_API_KEY from env
const article = await client.articles.generate({ topic: 'AI trends' })
const image = await client.images.generate({ prompt: 'sunset over mountains' })