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

@getmocked/mcp

v0.2.4

Published

GetMocked MCP Server - Create mock APIs from natural language

Readme

@getmocked/mcp

MCP server for GetMocked — create, manage, and test mock APIs from natural language, with built-in data persistence for sticky responses.

Works with Claude Code, Cursor, Windsurf, VS Code Copilot, and any MCP-compatible client.

Quick Start (Claude Code)

npx @getmocked/mcp login

This opens a browser to sign in. After authenticating:

  • Credentials are stored locally
  • The MCP server is registered globally (works in all projects)
  • Tool permissions are pre-approved (no per-tool prompts)

Restart Claude Code and you're ready to go.

Setup for Other Clients

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "getmocked": {
      "command": "npx",
      "args": ["@getmocked/mcp"]
    }
  }
}

VS Code (Copilot)

Add to .vscode/settings.json:

{
  "mcp": {
    "servers": {
      "getmocked": {
        "command": "npx",
        "args": ["@getmocked/mcp"]
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "getmocked": {
      "command": "npx",
      "args": ["@getmocked/mcp"]
    }
  }
}

Manual / Other Clients

Run npx @getmocked/mcp login first to authenticate, then configure your client to run npx @getmocked/mcp as a stdio MCP server.

Available Tools

| Tool | Description | |------|-------------| | create_mock_api | Create a mock API from a natural language description | | list_mock_apis | List all your mock APIs | | get_mock_api | Get details of a specific mock API | | update_mock_api | Update name, description, schemas, or persistence settings using AI | | test_mock_api | Execute a mock API and see sample response (supports persistence control) | | delete_mock_api | Delete a mock API | | list_persisted_data | List stored responses for a persisted mock API | | delete_persisted_data | Delete stored responses or clear all persisted data | | create_mock_project | Create a multi-API project from a description | | list_mock_projects | List all your mock projects | | get_mock_project | Get project details with all APIs | | add_api_to_project | Add a new API to an existing project | | delete_mock_project | Delete a mock project |

CLI Commands

npx @getmocked/mcp login      # Sign in and auto-configure
npx @getmocked/mcp status     # Check authentication status
npx @getmocked/mcp logout     # Clear stored credentials
npx @getmocked/mcp --help     # Show help
npx @getmocked/mcp --version  # Show version

Authentication

You can authenticate in two ways:

  1. Interactive login (recommended): npx @getmocked/mcp login
  2. API key: Set the GETMOCKED_API_KEY environment variable

Credentials are stored in ~/.getmocked/credentials.json.

License

MIT