Neynar Deploy banner
neynarxyz neynarxyz

Neynar Deploy

DevOps community

Description

Deploy websites with a single API call. Built-in versioning with instant rollback. Agent skill for Claude Code, Codex, and other AI agents.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

neynar-deploy

Deploy static sites, Vite apps, Next.js apps, and Hono apps to a live URL with a single API call. Built-in versioning with instant rollback -- no git required.

**API:** `https://api.host.neynar.app` **Deployed sites:** `https://{project-name}.host.neynar.app`

Install

For all your projects (personal skill)

git clone https://github.com/neynarxyz/neynar-deploy.git ~/.claude/skills/neynar-deploy

Or without git:

mkdir -p ~/.claude/skills/neynar-deploy
curl -o ~/.claude/skills/neynar-deploy/SKILL.md \
  https://raw.githubusercontent.com/neynarxyz/neynar-deploy/main/SKILL.md

For a single project

mkdir -p .claude/skills/neynar-deploy
curl -o .claude/skills/neynar-deploy/SKILL.md \
  https://raw.githubusercontent.com/neynarxyz/neynar-deploy/main/SKILL.md

Commit `.claude/skills/` to your repo so everyone on the team gets it.

As an MCP server

If your agent supports MCP, connect directly instead of using the skill file:

{
  "mcpServers": {
    "neynar-deploy": {
      "command": "npx",
      "args": ["-y", "@neynar/service.agent-deploy"]
    }
  }
}

Quick Start

# Create and archive a site
mkdir -p /tmp/my-site
echo '

Hello World

' > /tmp/my-site/index.html tar czf /tmp/my-site.tar.gz -C /tmp/my-site . # Deploy (no API key needed -- one is auto-generated) curl -X POST https://api.host.neynar.app/v1/deploy \ -F "files=@/tmp/my-site.tar.gz" \ -F "projectName=my-site" \ -F "framework=static"

The response includes a live URL and an API key for subsequent deploys.

What You Get

  • One-call deploy -- tar.gz your files, POST, get a URL
  • Built-in versioning -- every deploy auto-increments a version number
  • Instant rollback -- revert to any previous version
  • Project context -- structured deploy history and analytics in one API call
  • Custom domains -- {project-name}.host.neynar.app automatically
  • Analytics -