monitor-jump-mcp
v1.0.1
Published
MCP Server for Industry Monitoring Platform Page Jump
Readme
Monitor Page Jump MCP Server
This is an MCP server that provides a tool monitor_page_jump to simulate industry monitoring platform operations and perform page jumps.
Publishing to NPM
Before using npx, you need to publish this package to npm:
- Login to npm (if not already logged in):
npm login - Publish the package:
npm publish --access public
Usage
Option 1: SSE (Server-Sent Events) with npx - Recommended
This method allows you to run the server using npx (no installation required) and connect via SSE.
1. Start the Server:
Run this command in a terminal. It will download and run the server, listening on port 8000.
npx -y monitor-jump-mcp2. MCP Client Configuration:
Add this to your MCP client configuration (e.g., claude_desktop_config.json):
{
"mcpServers": {
"monitor-jump": {
"url": "http://localhost:8000/sse"
}
}
}Option 2: Stdio (Standard Input/Output)
This method runs the server directly via the MCP client process.
MCP Configuration:
{
"mcpServers": {
"monitor-jump": {
"command": "npx",
"args": [
"-y",
"monitor-jump-mcp",
"--stdio"
],
"env": {
"PORT": "8000"
}
}
}
}Features
- monitor_page_jump: A tool that takes a
keyword, logs the action, and opens a browser to the monitoring dashboard. - Static Demo Pages: Served at
http://localhost:8000/static/index.html.
Development
- Install dependencies:
npm install - Build:
npm run build - Start locally:
npm start
