Search documentation

Jump to any section of the Crispy docs

Get Started

Connect Crispy to your AI

Crispy gives your AI complete access to LinkedIn: outreach, content, inbox, and your network. Get connected in under two minutes.

Overview

The primary way in is the MCP server. Connect Claude, Cursor, ChatGPT, n8n, or any MCP-compatible client and your AI can take actions on LinkedIn immediately. If you prefer to call Crispy from code, the REST API works from any language with a Bearer token. For one-liners, scripts, and CI pipelines, the CLI is the third surface: the same tools as the MCP server, over stdin/stdout.

New

Build any workflow with Crispy as your event source. Webhooks, time-based triggers, and conditional filters wired into Make, n8n, Zapier, or your own code. See the integration guides →

Before you start

  1. Create an account on Crispy
  2. Connect your LinkedIn profile from the dashboard
  3. Generate an API key (starts with crispy_)
  4. Copy your API key, it's shown only once

Claude.ai and ChatGPTuse OAuth and don't need an API key, just paste the endpoint URL and log in. All other platforms use an API key.

Connect your tool

Pick your platform. Each one connects to the same MCP server, so your tools and limits are identical everywhere.

Connect Crispy directly from Claude.ai using the built-in connector system. Claude handles authentication via OAuth automatically.

  1. Go to Claude.ai → Settings → Connectors
  2. Click Add Custom Connector
  3. Enter the MCP endpoint URL:
MCP Endpoint URL
https://crispy.sh/api/mcp
  1. Claude redirects you to Crispy to log in and pick a LinkedIn account
  2. Click Approve on the consent screen
  3. Done — Crispy tools are available in all your conversations

Your first call

Once connected, verify everything works by listing the available tools. From an AI client, just ask it to "list Crispy tools." From the command line:

Terminal
curl -X POST https://crispy.sh/api/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list"
  }'

A successful response returns the full tool catalog with input schemas. Ready to do something real? Try search_people or run the inbox_zero prompt. See the tool reference for the full list.

Next steps