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
Get an API key
Sign up at aaddyy.com (50 free credits, no card needed), then create a key:
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"
}
}
}
}Use it
Just ask your AI agent naturally. It will use AADDYY tools automatically:
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' })