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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@zuplo/mcp-app-instructions

v0.0.13

Published

Provides instructions for adding or connecting various apps to an MCP server.

Readme

🔌 MCP App Instructions

🌟 What Is This?

mcp-app-instructions is a TypeScript library that generates step-by-step installation instructions for connecting various tools with MCP support to your MCP server. Whether your users are rocking Claude Desktop, ChatGPT, Cursor, or VS Code, we've got them covered.

🤔 Why Does This Exist?

Because writing documentation is hard. Writing good documentation is harder. MCP is moving fast and there is always another tool or changes in how you do it. This repository is a collection of instructions for various tools with MCP support. You can use it to generate instructions for your own tool or use it as a reference for your own documentation. It's open source so we can work together to keep it up to date with the latest changes in MCP.

Example

🚀 Features

  • 📝 Pre-written instructions for popular tools with MCP support
  • 🎨 Dynamic configuration generation with your server details
  • 🔗 Deep links for one-click installation (where supported)
  • 💡 Helpful hints and warnings for special requirements
  • 📦 Code snippets ready to copy-paste
  • Type-safe because we're not monsters

📦 Installation

npm install mcp-app-instructions

Or if you're fancy:

pnpm add mcp-app-instructions
# yarn add mcp-app-instructions
# bun add mcp-app-instructions

🎯 Usage

Basic Usage (TypeScript/JavaScript)

import { getMcpServerInstructions } from "mcp-app-instructions";

const instructions = getMcpServerInstructions({
  name: "MyAwesomeMCP",
  url: "https://api.myserver.com/mcp",
});

// Returns an array of configurations for:
// - Claude Desktop
// - ChatGPT
// - Cursor
// - VS Code

console.log(instructions);

React Component

We've also got a React component that renders the instructions with a nice UI:

import { McpInstructions } from "mcp-app-instructions";

function MyApp() {
  return (
    <McpInstructions name="MyAwesomeMCP" url="https://api.myserver.com/mcp" />
  );
}

The component displays:

  • ✅ All platform instructions in an organized layout
  • 📋 Formatted code snippets with syntax highlighting hints
  • 🔗 Official documentation links
  • ⚠️ Important hints and requirements
  • 🎯 Deep links for one-click installation (where available)

What You Get Back

Each configuration includes:

{
  name: string;                    // e.g., "Claude", "Cursor"
  description?: string;            // Optional description
  officialDocsLink: string;        // Link to official docs
  installDeepLink?: {              // One-click install (if supported)
    link: string;
    label: string;
  };
  hint?: {                         // Important notes or warnings
    type: "info" | "warning";
    title?: string;
    text: string;
  };
  steps?: {                        // Installation steps
    text: string;
    files?: {                      // Config files to create
      name: string;
      content: string;
      language: "json" | "typescript";
    }[];
  }[];
}

🎪 Supported Platforms

| Platform | Status | One-Click Install | | ----------------- | ------------ | ----------------- | | 🤖 Claude Desktop | ✅ Supported | ❌ | | 💬 ChatGPT | ✅ Supported | ❌ | | ⚡ Cursor | ✅ Supported | ✅ | | 🆚 VS Code | ✅ Supported | ❌ |

💡 Want to Add More Platforms?

PRs are welcome! If there's another AI assistant or IDE that supports MCP servers, we'd love to add instructions for it.


Made by the Zuplo team 💖 for Zudoku & Zuplo MCP Gateway.