
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@zuplo/mcp-app-instructions
Advanced tools
Provides instructions for adding or connecting various apps to an MCP server.
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.
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.
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
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);
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:
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";
}[];
}[];
}
| Platform | Status | One-Click Install |
|---|---|---|
| 🤖 Claude Desktop | ✅ Supported | ❌ |
| 💬 ChatGPT | ✅ Supported | ❌ |
| ⚡ Cursor | ✅ Supported | ✅ |
| 🆚 VS Code | ✅ Supported | ❌ |
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.
FAQs
Provides instructions for adding or connecting various apps to an MCP server.
We found that @zuplo/mcp-app-instructions demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.