PulseMCP Server
Servidor PulseMCP
Un servidor de Protocolo de Contexto de Modelo (MCP) que proporciona herramientas para descubrir y explorar servidores e integraciones de MCP a través de la API PulseMCP.
Características
Lista de servidores MCP disponibles con filtrado y paginación
Busque servidores MCP específicos por nombre o funcionalidad
Filtrar servidores por tipos de integración
Lista de todas las integraciones disponibles
Compatibilidad total con TypeScript
Related MCP server: Notes MCP Server
Instalación
Instalación en clientes MCP
Agregue esto a la configuración de su cliente MCP y adáptelo según sus preferencias. Por ejemplo:
{
"mcpServers": {
"pulsemcp": {
"command": "npx",
"args": ["-y", "pulsemcp-server"]
}
}
}Clonar el repositorio:
git clone <repository-url>
cd pulsemcp-serverInstalar dependencias:
npm installConstruir el proyecto:
npm run buildUso
Ejecución del servidor
El servidor se puede ejecutar directamente después de la compilación:
./build/index.jsO a través de npm:
npm startDesarrollo
Para observar los cambios durante el desarrollo:
npm run watchPara inspeccionar la implementación de MCP del servidor:
npm run inspectorHerramientas disponibles
servidores de lista
Enumera los servidores MCP con filtrado y paginación opcionales.
Parámetros:
query(opcional): término de búsqueda para filtrar servidoresintegrations(opcional): Matriz de slugs de integración para filtrar porcount_per_page(opcional): Número de resultados por página (máximo: 5000)offset(opcional): Número de resultados a omitir para la paginación
Ejemplo:
{
"query": "toolhouse",
"integrations": ["github"],
"count_per_page": 10,
"offset": 0
}integraciones de lista
Enumera todas las integraciones disponibles. Esta herramienta no admite parámetros.
Formato de respuesta
Ambas herramientas devuelven respuestas JSON con la siguiente estructura:
Respuesta de list_servers
{
"servers": [
{
"name": "Server Name",
"url": "https://example.com",
"external_url": "https://external-link.com",
"short_description": "Server description",
"source_code_url": "https://github.com/example/repo",
"github_stars": 123,
"package_registry": "npm",
"package_name": "package-name",
"package_download_count": 1000,
"integrations": [
{
"name": "Integration Name",
"slug": "integration-slug",
"url": "https://integration-url.com"
}
]
}
],
"total_count": 1,
"next": null
}Respuesta de list_integrations
{
"integrations": [
{
"name": "Integration Name",
"slug": "integration-slug",
"url": "https://integration-url.com"
}
]
}Manejo de errores
El servidor incluye un manejo robusto de errores para:
Parámetros no válidos
Problemas de conexión de API
Limitación de velocidad
Errores de autenticación
Los errores se devuelven en un formato estandarizado con códigos de error y mensajes apropiados.
Desarrollo
Estructura del proyecto
pulsemcp-server/
├── src/
│ └── index.ts # Main server implementation
├── build/ # Compiled JavaScript
├── package.json # Project configuration
└── tsconfig.json # TypeScript configurationDependencias
@modelcontextprotocol/sdk: ^0.6.0
ejes: ^1.7.9
Tipo de script: ^5.3.3
Licencia
Lea LICENCIA.MD
Contribuyendo
Abra una PR: ¡sé amable y serás recompensado!
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceThis TypeScript-based MCP server allows users to manage a simple notes system through creating and summarizing text notes using Model Context Protocol (MCP).1,2998MIT
- Flicense-qualityDmaintenanceA TypeScript-based MCP server that enables users to manage text notes with features like note creation and summary generation using a Model Context Protocol.1
- AlicenseBqualityDmaintenanceThis TypeScript-based MCP server allows users to manage and interact with a note system through Model Context Protocol, enabling note creation and summarization with URIs and metadata.1MIT
- FlicenseBqualityDmaintenanceThis TypeScript-based MCP server implements a simple notes system, allowing the creation, listing, and summarization of text notes using MCP concepts with note:// URIs and metadata.1
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP (Model Context Protocol) server for Appwrite
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/orliesaurus/pulsemcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server