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

@shashisampath/rapidcheckout-mcp-server

v1.3.1

Published

MCP server for Rapid Checkout API documentation and developer assistance with comprehensive documentation search capabilities

Downloads

54

Readme

Rapid Checkout MCP Server

A Model Context Protocol (MCP) server that provides developer assistance for the Rapid Checkout API. This server allows developers to interact with API documentation, get code examples, search endpoints, and ask questions about the API functionality.

npm version License: MIT Node.js Version

Features

  • List Endpoints: Browse all available API endpoints with filtering by tags
  • Endpoint Details: Get comprehensive information about specific endpoints including parameters, request/response schemas, and examples
  • Schema Information: Explore data models and schema definitions
  • Search Documentation: Search through API documentation AND comprehensive documentation files for specific terms or concepts
  • Code Examples: Generate code examples in multiple languages (JavaScript, Python, cURL, PHP)
  • Error Code Explanations: Understand error responses and troubleshooting
  • Authentication Guide: Get information about API authentication and security
  • 📚 Documentation Files: Access and search through comprehensive documentation including:
    • Overview and Introduction
    • Hosted Checkout Integration
    • Embedded Checkout Implementation
    • Gateway API Usage
    • P2PE (Point-to-Point Encryption)
    • Tokenization Services
    • Supported Functions Reference

Installation

Global Installation (Recommended)

npm install -g rapid-checkout-mcp-server

Local Project Installation

npm install rapid-checkout-mcp-server

From Source

git clone <repository-url>
cd rapid-checkout-mcp-server
npm install
npm run build

Quick Start

Using Global Installation

# Install globally
npm install -g rapidcheckout-mcp-server

# Run the server
rapid-checkout-mcp

Using npx (No Installation)

# Run directly with npx
npx rapid-checkout-mcp-server

Using in Node.js Project

import { RapidCheckoutMCPServer } from 'rapid-checkout-mcp-server';

const server = new RapidCheckoutMCPServer();
await server.run('http', 3000);

Usage

This MCP server uses stdio transport for communication with MCP clients:

stdio Transport

For use with MCP clients that communicate via stdin/stdout:

npm start
# or
node dist/index.js

Installation

  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Start the server:
npm start

Development

For development with auto-rebuild:

npm run dev

Usage

This MCP server is designed to be used with MCP-compatible clients. Once running, it provides the following tools:

Available Tools

API Documentation Tools

  • list_endpoints - List all API endpoints, optionally filtered by tag
  • get_endpoint_details - Get detailed information about a specific endpoint
  • get_schema_details - Get information about data schemas/models
  • search_documentation - Search through API documentation AND comprehensive documentation files
  • generate_code_example - Generate code examples for endpoints
  • explain_error_codes - Explain error codes and responses
  • get_authentication_info - Get API authentication information

📚 Documentation File Tools

  • list_documents - List all available documentation files and their sections
  • get_document_content - Get the full content of a specific documentation file
  • get_document_section - Get content from a specific section of a documentation file

Example Usage

// List all available documentation
await tools.call('list_documents', {});

// Get overview documentation
await tools.call('get_document_content', {
  filename: 'Overview'
});

// Get specific section from a document
await tools.call('get_document_section', {
  filename: 'Hosted Checkout',
  section: 'Authentication'
});

// Search across all documentation
await tools.call('search_documentation', {
  query: 'payment tokenization'
});

Example Queries

  • "List all payment-related endpoints"
  • "Show me details for the payment creation endpoint"
  • "Generate a JavaScript example for creating a customer"
  • "What does error code 422 mean for the pay endpoint?"
  • "How do I authenticate with the API?"

Project Structure

src/
├── index.ts          # Main MCP server implementation
├── api-service.ts    # API documentation service
└── types.ts          # TypeScript type definitions

rapidcheckout-corrected.json  # Corrected OpenAPI specification

API Specification

The server uses a corrected version of the Rapid Checkout OpenAPI 2.0 specification that fixes various issues found in the original specification including:

  • Fixed trailing spaces in property names
  • Corrected authentication parameter requirements
  • Improved date format consistency
  • Enhanced error response documentation

License

MIT License - See LICENSE file for details.

Support

For questions about the Rapid Checkout API itself, contact Transact Campus, Inc support. For issues with this MCP server, please check the documentation or contact the development team.