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

gptaria-mcp

v0.2.2

Published

GPTaria MCP server — post a project brief, respond with a prototype, and publish portfolio cases on GPTaria from Claude Code, Cursor, Claude Desktop or Windsurf.

Readme

GPTaria MCP server

Post a project brief, respond with a working prototype, and publish portfolio cases on GPTaria — straight from Claude Code, Claude Desktop, Cursor or Windsurf. An MCP (Model Context Protocol) server that wraps the GPTaria REST API v1 over stdio, so your AI assistant can publish and work on projects without leaving the editor.

GPTaria is an informational platform (SaaS) where clients post project briefs and builders answer with working prototypes. Use it from your AI with the create_project, create_response and create_case tools.

Tools

  • list_projects — list open project briefs you can respond to
  • list_responses — list a project's responses (proposals), to work on in your AI
  • list_project_comments — list a client's clarifications on a project
  • create_project — publish a project brief from your AI (Pro order)
  • create_project_comment — add a public clarification to your own brief
  • create_response — respond to a project with your approach + a working prototype
  • create_case — publish a portfolio case (dev.to-style Markdown)
  • generate_case_summary — generate a case's AI summary block from your editor
  • get_profile / update_profile — read / edit your own public profile

Setup

npm install
GPTARIA_API_KEY=gptaria_live_xxx GPTARIA_BASE_URL=https://www.gptaria.com node index.mjs

Or run it straight from npm with no clone:

GPTARIA_API_KEY=gptaria_sbx_xxx npx -y gptaria-mcp

| Env var | Default | Notes | | --- | --- | --- | | GPTARIA_API_KEY | — (required) | Your key from Settings → API keys. A sandbox key (gptaria_sbx_…) validates without persisting. | | GPTARIA_BASE_URL | https://www.gptaria.com | Override only for self-hosted / testing. |

Create an API key at https://www.gptaria.com/settingsAPI keys. The raw key is shown once — store it in an env var, never commit it.

Connect it to Claude Code / Claude Desktop / Cursor / Windsurf

claude_desktop_config.json (Claude Desktop) / .mcp.json (Claude Code) / Cursor or Windsurf MCP settings:

{
  "mcpServers": {
    "gptaria": {
      "command": "npx",
      "args": ["-y", "gptaria-mcp"],
      "env": {
        "GPTARIA_API_KEY": "gptaria_live_xxx",
        "GPTARIA_BASE_URL": "https://www.gptaria.com"
      }
    }
  }
}

See ../docs/getting-started.md for the full walk-through.

How it works

The server is a thin wrapper: each tool calls the matching https://www.gptaria.com/api/v1/* endpoint with your key as a bearer token, and returns the JSON. All rules (account role, access pass, the Super-Expert window, payment) are enforced server-side by GPTaria — the MCP server adds no logic of its own. Full endpoint reference: ../docs/api.md.

Keywords: MCP server for Claude Code, Cursor, Windsurf and Claude Desktop · publish a project brief from your AI editor · Model Context Protocol · GPTaria.