PulseMCP Server
An MCP server that helps you find MCP servers that are listed on PulseMCP.com
Overview
PulseMCP Server is a Model Context Protocol (MCP) server that provides tools for discovering and exploring MCP servers and integrations through the PulseMCP API.
To use PulseMCP Server, clone the repository, install dependencies, build the project, and run the server using npm or directly from the build directory.
- List available MCP servers with filtering and pagination - Search for specific MCP servers by name or functionality - Filter servers by integration types - List all available integrations - Full TypeScript support
- Discovering and exploring various MCP servers.
- Integrating with different services through the PulseMCP API.
- Building applications that require MCP server functionalities.
Add to your AI client
Use these steps to connect PulseMCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"pulsemcp-server-orliesaurus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pulsemcp-server-orliesaurus"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"pulsemcp-server-orliesaurus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pulsemcp-server-orliesaurus"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"pulsemcp-server-orliesaurus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pulsemcp-server-orliesaurus"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"pulsemcp-server-orliesaurus": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pulsemcp-server-orliesaurus"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"pulsemcp-server-orliesaurus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pulsemcp-server-orliesaurus"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"pulsemcp-server-orliesaurus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pulsemcp-server-orliesaurus"
]
}
}
}FAQ
Can PulseMCP Server list all available MCP servers?
Yes! It can list all available MCP servers with options for filtering and pagination.
Is PulseMCP Server easy to set up?
Yes! The setup process is straightforward, requiring cloning the repository and running a few commands.
What programming language is used in PulseMCP Server?
PulseMCP Server is built using TypeScript.