Skip to main content
AI/MLjeremylongshore

lucidchart-install-auth

'Install and configure Lucidchart SDK/API authentication.

Stars
2,267
Source
jeremylongshore/claude-code-plugins-plus-skills
Updated
2026-05-31
Slug
jeremylongshore--claude-code-plugins-plus-skills--lucidchart-install-auth
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/HEAD/plugins/saas-packs/lucidchart-pack/skills/lucidchart-install-auth/SKILL.md -o .claude/skills/lucidchart-install-auth.md

Drops the SKILL.md into .claude/skills/lucidchart-install-auth.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Lucidchart Install & Auth

Overview

Set up Lucid REST API for programmatic diagram creation and document management.

Prerequisites

  • Lucidchart account and API access
  • API key/credentials from Lucidchart dashboard
  • Node.js 18+ or Python 3.8+

Instructions

Step 1: Install SDK

npm install @lucid-co/sdk
# OAuth2 app credentials from developer.lucid.co

Step 2: Configure Authentication

export LUCID_API_KEY="your-api-key-here"
echo 'LUCID_API_KEY=your-api-key' >> .env

Step 3: Verify Connection (TypeScript)

import { LucidClient } from '@lucid-co/sdk';
const client = new LucidClient({
  clientId: process.env.LUCID_CLIENT_ID,
  clientSecret: process.env.LUCID_CLIENT_SECRET
});
const docs = await client.documents.list();
console.log(`Found ${docs.length} documents`);

Step 4: Verify Connection (Python)

import lucid
client = lucid.Client(client_id=os.environ['LUCID_CLIENT_ID'],
                      client_secret=os.environ['LUCID_CLIENT_SECRET'])
docs = client.documents.list()
print(f'Found {len(docs)} documents')

Error Handling

Error Code Solution
Invalid API key 401 Verify credentials in dashboard
Permission denied 403 Check API scopes/permissions
Rate limited 429 Implement backoff

Resources

Next Steps

After auth, proceed to lucidchart-hello-world.