MCP server
Model Context Protocol (MCP) is an open standard that lets AI assistants securely access external data sources. Privy’s MCP server connects your AI coding assistant directly to our documentation, giving it live access to search and retrieve the exact information you need in real time.Setup with Cursor
Setup with Claude Desktop
Find your config file
Open your Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Agent skill
Privy publishes an Agent Skill — a structured capability file that tells AI coding agents what Privy can do, what inputs are needed, and common pitfalls to avoid. Unlike MCP (live doc search) or static files (raw doc dump), the skill gives your agent decision guidance, implementation workflows, and quick references that are automatically loaded when relevant.Setup with Claude Code
Install the skill
Run this from your project root:This creates
.claude/skills/privy/SKILL.md in your project directory.Verify it works
Open Claude Code and run
/skills to confirm the Privy skill appears. Your agent now
automatically loads Privy context when you work on authentication, wallets, or blockchain
interactions.Setup with other agents
The Privy skill works with any tool that supports the Agent Skills standard, including Cursor, VS Code Copilot, Gemini CLI, OpenAI Codex, and more.What the skill provides
| Feature | Description |
|---|---|
| Quick references | SDK install commands, common API patterns, wallet operation tables |
| Decision guidance | When to use embedded vs external wallets, client vs server signing |
| Workflows | Step-by-step implementation sequences for auth, wallets, and policies |
| Common gotchas | Known pitfalls like missing the ready flag or authorization signatures |
| Verification checklist | Pre-submission checks for credentials, chain IDs, error handling |
Static docs files
If your AI tool doesn’t support MCP yet, you can use one of Privy’s static documentation files instead.Which file should I use?
llms.txtis a curated overview of Privy. It is best for routing an agent to the right docs, understanding product structure, and choosing the right integration path.llms-full.txtis a full static snapshot of the documentation. It is best when your tool needs more exhaustive reference material in one file.
Setup with Cursor
Optionally add the full snapshot
If your agent needs deeper static reference coverage, add:
https://docs.privy.io/llms-full.txtSetup with Claude Desktop
Optionally download the full snapshot
Download the full documentation snapshot from:
https://docs.privy.io/llms-full.txtAdd to your project
Save one or both files in your project directory or a known location on your system

