npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

cgsync-mcp-server

v1.0.0

Published

MCP Server for CGSync — CG/VFX artist booking platform. Search jobs, find artists, manage bookings via Claude Desktop, Cursor, or any MCP client.

Readme

@cgsync/mcp-server

npm version License: MIT MCP Compatible

MCP Server for CGSync — the CG/VFX artist booking platform.

Search jobs, find artists, manage bookings, and negotiate rates directly from Claude Desktop, Cursor, or any MCP-compatible client.


What is CGSync?

CGSync is a platform that connects CG and VFX freelance artists with studios and employers. Artists can list their availability, skills, and rates while employers post jobs and book talent. CGSync handles the entire workflow from discovery through negotiation to confirmed bookings.

Installation

Quick start (no install)

CGSYNC_API_KEY=your_key npx @cgsync/mcp-server

Global install

npm install -g @cgsync/mcp-server
CGSYNC_API_KEY=your_key cgsync-mcp

Configuration

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "cgsync": {
      "command": "npx",
      "args": ["-y", "@cgsync/mcp-server"],
      "env": {
        "CGSYNC_API_KEY": "your_api_key_here"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "cgsync": {
      "command": "npx",
      "args": ["-y", "@cgsync/mcp-server"],
      "env": {
        "CGSYNC_API_KEY": "your_api_key_here"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | search_jobs | Search open CG/VFX job listings with filters for location, skills, rates, and dates | | search_artists | Find available freelance artists by skills, location, rate range, and availability | | get_job_details | Get full details of a specific job posting including requirements and company info | | get_artist_profile | Get complete artist profile with bio, skills, portfolio, and availability | | invite_artist | Invite an artist to apply for your job (employer accounts) | | apply_to_job | Apply to a job as an artist with optional cover message and proposed rate | | negotiate_booking | Propose rates, dates, accept, decline, or counter-offer on bookings | | get_booking_status | Check current status, negotiation history, and details of a booking | | list_my_bookings | List all your active bookings with optional status filter |

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | CGSYNC_API_KEY | Yes | — | Your CGSync API key. Get one at cgsync.me/developer/api-keys | | CGSYNC_API_URL | No | https://cgsync.me | CGSync API base URL (override for self-hosted or development) |

Example Prompts

Once configured, you can ask Claude things like:

  • "Find me Houdini FX artists available next month in Vancouver"
  • "Search for remote compositing jobs paying over $800/day"
  • "Show me the details of job #42"
  • "Apply to job #15 with a proposed rate of $750/day"
  • "Invite artist #8 to my lighting job"
  • "Accept the rate on booking #23"
  • "What's the status of all my current bookings?"
  • "Counter-offer $900/day on booking #12 with a message explaining my experience"

Requirements

  • Node.js 18 or later
  • A CGSync account with an API key

Links

License

MIT