JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 471
  • Score
    100M100P100Q100468F
  • License MIT

MCP server for mockzilla. Lets agents (Claude Desktop, Cursor, etc.) drive mockzilla on a user's behalf: list sims, deploy mocks from the catalog, and more.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@mockzilla/mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    @mockzilla/mcp

    MCP server for mockzilla. Lets agents like Claude Desktop and Cursor list sims, deploy mocks from the catalog, and act on a user's behalf via mockzilla's hosted MCP endpoint.

    Install

    Get a bearer token from https://app.mockzilla.org/account/connected-apps (creates an OAuth-issued token tied to one org).

    Claude Desktop

    Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

    {
      "mcpServers": {
        "mockzilla": {
          "command": "npx",
          "args": ["-y", "@mockzilla/mcp"],
          "env": {
            "MOCKZILLA_TOKEN": "mz_oauth_prod_..."
          }
        }
      }
    }

    Cursor

    Add to ~/.cursor/mcp.json:

    {
      "mcpServers": {
        "mockzilla": {
          "command": "npx",
          "args": ["-y", "@mockzilla/mcp"],
          "env": {
            "MOCKZILLA_TOKEN": "mz_oauth_prod_..."
          }
        }
      }
    }

    What you can ask

    • "List the sims I have deployed in mockzilla."
    • "Show me the catalog products available."
    • "Deploy a Stripe sandbox for me named stripe-test."
    • "Create a mock from this OpenAPI URL: https://example.com/spec.yaml."

    Configuration

    Env var Default Purpose
    MOCKZILLA_TOKEN required Bearer token (mz_oauth_* or mz_*).
    MOCKZILLA_MCP_URL https://app.mockzilla.org/mcp/ Override for staging or self-hosted.

    Publishing (maintainers only)

    npm login
    npm publish --access public

    License

    MIT.