https://github.com/hyprmcp/mcp-install-instructions-generator
Generate MCP Server Installation Instructions for Cursor, Visual Studio Code, Claude Code, Claude Desktop, Windsurf, ChatGPT, Gemini CLI and more
https://github.com/hyprmcp/mcp-install-instructions-generator
chatgpt claude-code claude-desktop code gemini hyprmcp mcp mcp-server remote-mcp-server typescript
Last synced: 9 months ago
JSON representation
Generate MCP Server Installation Instructions for Cursor, Visual Studio Code, Claude Code, Claude Desktop, Windsurf, ChatGPT, Gemini CLI and more
- Host: GitHub
- URL: https://github.com/hyprmcp/mcp-install-instructions-generator
- Owner: hyprmcp
- License: mit
- Created: 2025-09-04T14:50:07.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-10-24T04:41:46.000Z (9 months ago)
- Last Synced: 2025-10-24T06:23:40.256Z (9 months ago)
- Topics: chatgpt, claude-code, claude-desktop, code, gemini, hyprmcp, mcp, mcp-server, remote-mcp-server, typescript
- Language: TypeScript
- Homepage: https://hyprmcp.com/mcp-install-instructions-generator/
- Size: 76.2 KB
- Stars: 9
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# MCP Instructions
## Usage
### Web / Cloud
We are hosting the latest version of this MCP server instructions generator on our website for free:
> https://hyprmcp.com/mcp-install-instructions-generator/
### CLI
This package comes with a CLI tool you can simply call using `npx`:
```shell
npx @hyprmcp/mcp-install-instructions-generator@latest https://mcp.example.com --target vscode --output md
npx @hyprmcp/mcp-install-instructions-generator@latest --help
```
### MCP Server
Use the MCP server to generate instructions for your own MCP server!
#### Remote MCP Server
This MCP server is hosted on [hyprmcp.com](https://hyprmcp.com/).
You can find all installation instructions by opening the remote MCP Server Url in your browser:
> ```
> https://demo.hyprmcp.cloud/mcp-install-instructions-generator/mcp
> ```
#### Local MCP Server
```shell
npx -p @hyprmcp/mcp-install-instructions-generator@latest mcp
```
### Web Component
You can use the web component by importing it into your HTML file:
```html
```
### JavaScript
This package is distributed as an npm package.
Simply install `@hyprmcp/mcp-install-instructions-generator` with your package manager of choice and you're ready to get started.
```ts
import { generateMCPInstructions } from '@hyprmcp/mcp-install-instructions';
const instructions = generateMCPInstructions({
url: 'https://mcp.example.com',
target: 'vscode',
output: 'md',
});
console.log(instructions);
```