| name | lindy-install-auth |
| description | Set up Lindy AI account, API access, and webhook authentication.
Use when onboarding to Lindy, configuring API keys for webhook triggers,
or connecting Lindy agents to your application.
Trigger with phrases like "install lindy", "setup lindy",
"lindy auth", "configure lindy API key", "lindy webhook secret".
|
| allowed-tools | Read, Write, Edit, Bash(npm:*), Bash(pip:*), Bash(curl:*), Grep |
| version | 1.15.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","lindy","api","authentication"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
Lindy Install & Auth
Overview
Lindy AI is a no-code/low-code AI agent platform. Agents ("Lindies") are built in the
web dashboard at . External integration uses webhook endpoints,
the HTTP Request action, and optional Node.js/Python SDKs for programmatic access.
Prerequisites
- Lindy account at (Free tier: 400 credits/month)
- For SDK access: Node.js 18+ or Python 3.10+
- For webhook receivers: HTTPS endpoint in your application
Instructions
Step 1: Obtain API Key
- Log in at
- Navigate to Settings > API Keys
- Click Generate New Key — copy immediately (shown only once)
- Store securely:
export LINDY_API_KEY="lnd_live_xxxxxxxxxxxxxxxxxxxx"
echo 'LINDY_API_KEY=lnd_live_xxxxxxxxxxxxxxxxxxxx' >> .env
Step 2: Install SDK (Optional)
npm install lindy-ai
pip install lindy-ai
Step 3: Initialize Client
import { Lindy } from 'lindy-ai';
const lindy = new Lindy({
apiKey: process.env.LINDY_API_KEY,
});
const agents = await lindy.agents.list();
console.log(`Connected: ${agents.length} agents found`);
os
lindy Lindy
client = Lindy(api_key=os.environ[])
agents = client.agents.()
()