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

@shoplinepayments/slpayment-developer-mcp

v1.0.1

Published

SHOPLINE Payments provides a Model Context Protocol (MCP) bridge that can be integrated into AI-powered IDEs like Cursor or any other AI tool supporting MCP. Once added, your AI tool can utilize this MCP to search SHOPLINE Payments documentation, retrieve

Readme

@shoplinepayments/slpayment-developer-mcp

@shoplinepayments/slpayment-developer-mcp is a Model Context Protocol (MCP) bridge (stdio ↔ HTTP) for shoplinepayments API.

It starts a local MCP STDIO server (for clients like Cursor/Claude Desktop/Cline) and forwards MCP JSON-RPC requests to your configured HTTP MCP endpoint (for example: https://ai.shoplinepayments.com/mcp).

Configure the MCP client

To communicate with the slpayment MCP bridge, the MCP client requires specific configurations.

Note: This bridge uses MCP STDIO (Standard Input/Output), runs locally, and does not require authentication on the bridge itself (authentication is handled by the HTTP MCP endpoint you configure).

Prerequisites

  • Ensure that you have Node.js version 18.0.0 or higher installed.
  • Install any AI tool that supports MCP, such as Cursor, Claude Desktop, or Cline.

Cursor

  1. Open Cursor, then navigate to Cursor Settings > Tools & MCP > MCP > New MCP Server, and add the following configuration:
{
  "mcpServers": {
    "slpayment-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@shoplinepayments/[email protected]"
      ],
      "env": {
        "SLPAYMENT_MCP_HTTP_URL": "https://ai.shoplinepayments.com/mcp",
        "SLPAYMENT_MCP_HTTP_TIMEOUT_MS": "30000"
      }
    }
  }
}
  1. After saving the configuration, terminate all Cursor processes and restart Cursor to apply the new settings.
  2. Verify the connection by checking the MCP server's connection status or by asking questions.

Claude Desktop

  1. Open Claude Desktop, then go to Settings > Developer > Edit Config, and add the following configuration:
{
  "mcpServers": {
    "slpayment-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@shoplinepayments/[email protected]"
      ],
      "env": {
        "SLPAYMENT_MCP_HTTP_URL": "https://ai.shoplinepayments.com/mcp",
        "SLPAYMENT_MCP_HTTP_TIMEOUT_MS": "30000"
      }
    }
  }
}
  1. Save the configuration, terminate all Claude Desktop processes, and restart Claude Desktop to apply the new settings.
  2. Verify the connection by checking the MCP server's connection status or by asking questions.

Cline

  1. Open the Cline plugin, navigate to MCP Servers > Configure MCP Servers, and add the following configuration:
{
  "mcpServers": {
    "slpayment-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@shoplinepayments/[email protected]"
      ],
      "env": {
        "SLPAYMENT_MCP_HTTP_URL": "https://ai.shoplinepayments.com/mcp",
        "SLPAYMENT_MCP_HTTP_TIMEOUT_MS": "30000"
      }
    }
  }
}
  1. Save the configuration, terminate all processes of the IDE, and restart it to apply the new settings.
  2. Verify the connection by checking the MCP server's connection status or by asking questions.

Use MCP

Once configured, AI tools can use MCP to access the necessary technical documents or API information.

Instruct the AI on what you want to accomplish, for example:

  • Summarize “shoplinepayments API” from the latest docs.
  • What are the required steps to integrate SHOPLINE Payments?
  • Explain auth/signature requirements and callback verification.

Available tools

This MCP currently offers the following tool(s):

| Tool | Description | | --- |---------------------------------| | get_slpayment_docs | Fetches SHOPLINE Payments docs. |

Environment variables

  • SLPAYMENT_MCP_HTTP_URL: HTTP MCP endpoint (default https://ai.shoplinepayments.com/mcp)
  • SLPAYMENT_MCP_HTTP_TIMEOUT_MS: per-request timeout (default 30000)