- Home
- MCP servers
- PulseMCP Server
PulseMCP Server
- javascript
28
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"orliesaurus-pulsemcp-server": {
"command": "npx",
"args": [
"-y",
"pulsemcp-server"
]
}
}
}PulseMCP Server is a dedicated MCP server that lets you discover, filter, and explore MCP servers and their integrations through a unified PulseMCP API. It provides a simple way to browse available servers, search by name or functionality, and view integration details, all with full TypeScript support.
How to use
You can use PulseMCP Server to query, filter, and explore MCP servers from your MCP client. Start by configuring your client so it can connect to PulseMCP Server, then run the server locally or host it where your MCP ecosystem lives. You can list available servers, filter by integration types, and view all available integrations to understand what each MCP server offers.
How to install
Prerequisites: ensure you have Node.js and npm installed on your machine.
Step 1: Clone the PulseMCP Server repository.
Step 2: Install dependencies.
git clone <repository-url>
cd pulsemcp-server
npm install
Step 3: Build the project.
npm run build
Step 4: Run the server.
./build/index.js
Or start it with npm for convenience.
npm start
Optional development helpers.
npm run watch
bash npm run inspector
## Available tools
### list\_servers
Lists MCP servers with optional filtering and pagination. You can filter by query terms, integrations, and control pagination with count\_per\_page and offset.
### list\_integrations
Lists all available MCP integrations. This tool takes no parameters.