CG

Installation

Updated May 29, 2026, 12:30 PM

Installation

Installation

There are two ways to install the ChainGPT Developer Kit for Claude Code: via the plugin installer (recommended) or via manual git clone.

Plugin install (recommended)

Run this command inside Claude Code:

/plugin install ChainGPT-org/chaingpt-claude-skill

This automatically sets up the skill files, configures the MCP server via .mcp.json, and makes all 5 skills and 12 MCP tools available immediately. The only additional step is setting your API key (see API Key Setup).

Manual install (git clone)

Clone the repository into your project's .claude/skills/ directory:

git clone https://github.com/ChainGPT-org/chaingpt-claude-skill .claude/skills/chaingpt

For a user-level install that applies to all projects, clone to your home directory instead:

git clone https://github.com/ChainGPT-org/chaingpt-claude-skill ~/.claude/skills/chaingpt

Configure the MCP server (manual installs only)

If you installed via git clone, you need to build the MCP server and add it to your settings:

cd .claude/skills/chaingpt/mcp-server
npm install && npm run build

Then add the following to your .claude/settings.json:

{
  "mcpServers": {
    "chaingpt": {
      "command": "node",
      "args": [".claude/skills/chaingpt/mcp-server/dist/index.js"],
      "env": { "CHAINGPT_API_KEY": "your-key-here" }
    }
  }
}

What gets installed

After installation, the following components are available:

ComponentDescription
5 skillsMain API reference, playground, debug assistant, hackathon scaffolder, update manager
12 MCP toolsDirect API access from Claude conversations
16 reference docsComplete API documentation for all 7 products
10 templatesProduction-ready project scaffolds
45+ patternsAudited Solidity smart contract patterns
8 examplesWorking code in JavaScript and Python
Mock serverZero-credit local testing server

Verifying the installation

Open Claude Code and ask it anything about ChainGPT:

"What ChainGPT products are available and how much do they cost?"

If the skill is loaded correctly, Claude will respond with detailed product information including exact credit costs, SDK package names, and endpoint URLs — not generic information from its training data.

Updating

To check for and apply updates, use the update skill inside Claude Code:

/chaingpt-update

This fetches the latest changes from GitHub and shows a changelog before applying. For manual installs, you can also run git pull in the skill directory.

Prerequisites

<table><thead><tr><th width="191.0546875">Requirement</th><th>Details</th></tr></thead><tbody><tr><td>Claude Code</td><td><a href="https://code.claude.com">code.claude.com</a></td></tr><tr><td>ChainGPT API key</td><td><a href="https://app.chaingpt.org">app.chaingpt.org</a> — connect a wallet to sign up</td></tr><tr><td>API credits</td><td><a href="https://app.chaingpt.org/addcredits">Buy credits</a> — 1,000 credits = $10</td></tr><tr><td>Node.js</td><td>Required for the MCP server (LTS version recommended)</td></tr></tbody></table>
View original source