Skip to content

neynarxyz/neynar-deploy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

neynar-deploy

Deploy static sites, Vite apps, and Next.js 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 '<html><body><h1>Hello World</h1></body></html>' > /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 -- pageviews, unique visitors, top pages, referrers
  • Free tier -- 3 projects, 10 deploys/hour, 50MB max upload

Full API Reference

See the complete API documentation in the SKILL.md file.

License

MIT

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors