New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

petstoreewew

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

petstoreewew

Model Context Protocol (MCP) Server for the *petstoreewew* API.

latest
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

petstoreewew

Model Context Protocol (MCP) Server for the petstoreewew API.



[!IMPORTANT] This MCP Server is not yet ready for production use. To complete setup please follow the steps outlined in your workspace. Delete this notice before publishing to a package manager.

Summary

Petstore - OpenAPI 3.1: This is a sample Pet Store Server based on the OpenAPI 3.1 specification.

Some useful links:

For more information about the API: Find out more about Swagger

Table of Contents

Installation

[!TIP] To finish publishing your MCP Server to npm and others you must run your first generation action.

DXT (Desktop Extension)

Install the MCP server as a Desktop Extension using the pre-built mcp-server.dxt file:

Simply drag and drop the mcp-server.dxt file onto Claude Desktop to install the extension.

The DXT package includes the MCP server and all necessary configuration. Once installed, the server will be available without additional setup.

[!NOTE] DXT (Desktop Extensions) provide a streamlined way to package and distribute MCP servers. Learn more about Desktop Extensions.

Cursor

Install MCP Server

Or manually:

  • Open Cursor Settings
  • Select Tools and Integrations
  • Select New MCP Server
  • If the configuration file is empty paste the following JSON into the MCP Server Configuration:
{
  "mcpServers": {
    "Petstore": {
      "type": "mcp",
      "url": "https://example-cloudflare-worker.com/mcp",
      "headers": {
        "api_key": "${PETSTOREEWEW_API_KEY}"
      }
    }
  }
}
Claude Code CLI
claude mcp add --transport sse Petstore undefined/sse --header "api_key: ..."
Windsurf

Refer to Official Windsurf documentation for latest information

  • Open Windsurf Settings
  • Select Cascade on left side menu
  • Click on Manage MCPs. (To Manage MCPs you should be signed in with a Windsurf Account)
  • Click on View raw config to open up the mcp configuration file.
  • If the configuration file is empty paste the full json
{
  "mcpServers": {
    "Petstore": {
      "command": "npx",
      "args": [
        "petstoreewew",
        "start",
        "--api-key",
        "..."
      ]
    }
  }
}
VS Code

Refer to Official VS Code documentation for latest information

  • Open Command Palette
  • Search and open MCP: Open User Configuration. This should open mcp.json file
  • If the configuration file is empty paste the full json
{
  "mcpServers": {
    "Petstore": {
      "command": "npx",
      "args": [
        "petstoreewew",
        "start",
        "--api-key",
        "..."
      ]
    }
  }
}
Stdio installation via npm To start the MCP server, run:
npx petstoreewew start --api-key ...

For a full list of server arguments, run:

npx petstoreewew --help

Development

Run locally without a published npm package:

  • Clone this repository
  • Run npm install
  • Run npm run build
  • Run node ./bin/mcp-server.js start --api-key ... To use this local version with Cursor, Claude or other MCP Clients, you'll need to add the following config:
{
  "mcpServers": {
    "Petstore": {
      "command": "node",
      "args": [
        "./bin/mcp-server.js",
        "start",
        "--api-key",
        "..."
      ]
    }
  }
}

Or to debug the MCP server locally, use the official MCP Inspector:

npx @modelcontextprotocol/inspector node ./bin/mcp-server.js start --api-key ...

Cloudflare Deployment

To deploy to Cloudflare Workers:

npm install 
npm run deploy

To run the cloudflare deployment locally:

npm install 
npm run dev

The local development server will be available at http://localhost:8787

Then install with Claude Code CLI:

claude mcp add --transport sse Petstore http://localhost:8787/sse --header "api_key: ..."

Contributions

While we value contributions to this MCP Server, the code is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation. We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.

MCP Server Created by Speakeasy

FAQs

Package last updated on 09 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts