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

@nonetss/none.api

v1.2.0

Published

Professional OpenAPI Explorer MCP server

Downloads

73

Readme

none.api - OpenAPI Explorer MCP Server

Professional OpenAPI explorer for the Model Context Protocol (MCP), optimized for Frontend Development and Backend Contract Verification.

What is this?

This MCP server allows Large Language Models (LLMs) like Claude or Cursor to dynamically explore, understand, and interact with any API that has an OpenAPI/Swagger specification.

It is specifically designed to:

  1. Accelerate Frontend Development: Generate types, Zod schemas, mock data, and data-fetching hooks (Axios/TanStack Query) directly from the API definition.
  2. Verify Backend Implementation: Validate backend response objects against the OpenAPI contract to ensure the implementation matches the specification.

Installation

Using npx (Recommended)

You can run the server directly without installation:

npx @nonetss/none.api

Global Installation

npm install -g @nonetss/none.api

Key Features

  • Smart Exploration: Categorized endpoint listing and keyword-based search (with multilingual synonym support).
  • Frontend Factory:
    • Generate TypeScript Interfaces for requests and responses.
    • Generate Zod Schemas for form validation.
    • Generate React/Axios/TanStack Query snippets.
    • Generate Mock Data for UI prototyping.
  • Backend Guard:
    • Response Validation: Compare JSON data against OpenAPI schemas using AJV.
    • Dependency Mapping: Understand relationships between resources (e.g., which endpoint provides the ID needed for another).
  • Security: Automatic authentication support (Bearer/API Key) and secure environment-locked configuration.

Tools Overview

| Tool | Focus | Description | | :---------------------- | :----------- | :------------------------------------------------------------- | | list_endpoints | Exploration | Lists all endpoints grouped by functional categories. | | list_tags | Exploration | Lists all tags (functional categories) in the API. | | search_by_tag | Exploration | Lists all endpoints associated with a specific tag. | | find_endpoint | Exploration | Intelligent search by intent or keyword (e.g., "delete user"). | | get_endpoint_info | Analysis | Detailed documentation, parameters, and response codes. | | get_request_schema | Analysis | Returns the JSON schema for an endpoint's request body. | | get_response_schema | Analysis | Returns the JSON schema for a specific response status code. | | get_typescript_types | Frontend | Generates ready-to-use TypeScript interfaces. | | get_zod_schema | Frontend | Generates Zod validation schemas. | | get_framework_snippet | Frontend | Generates Axios or TanStack Query code. | | get_fetch_snippet | Frontend | Generates a native fetch snippet for quick integration. | | get_mock_data | Prototyping | Generates high-fidelity mock data based on schemas. | | map_dependencies | Architecture | Analyzes data flow and ID relationships between routes. | | get_security_info | Security | Shows security requirements for the API or specific routes. | | set_security_context | Security | Sets authentication headers for subsequent requests. | | call_endpoint | Debug | Executes real HTTP calls to the configured API. | | validate_response | Backend | Validates a JSON object against the API contract. |

Configuration

Add this to your claude_desktop_config.json or Cursor MCP settings:

{
  "mcpServers": {
    "none.api": {
      "command": "npx",
      "args": ["-y", "@nonetss/none.api"],
      "env": {
        "OPENAPI_URL": "http://localhost:3000/doc",
        "AUTH_EMAIL": "[email protected]",
        "AUTH_PASSWORD": "your-password",
        "AUTH_PATH": "/api/auth/login"
      }
    }
  }
}

Development Workflow

  1. Build: npm run build (uses tsc + tsc-alias for path resolution).
  2. Formatting: Prettier is included.
  3. Git Hooks: Automated formatting on commit via husky and lint-staged.