Skip to main content
Glama

PulseMCP Server

by orliesaurus

PulseMCP 服务器

模型上下文协议 (MCP) 服务器,通过 PulseMCP API 提供发现和探索 MCP 服务器和集成的工具。

特征

  • 使用筛选和分页功能列出可用的 MCP 服务器
  • 按名称或功能搜索特定的 MCP 服务器
  • 按集成类型过滤服务器
  • 列出所有可用的集成
  • 全面支持 TypeScript

安装

在 MCP 客户端中安装

将其添加到您的 MCP 客户端配置中,并根据客户的偏好进行调整。例如:

{ "mcpServers": { "pulsemcp": { "command": "npx", "args": ["-y", "pulsemcp-server"] } } }
  1. 克隆存储库:
git clone <repository-url> cd pulsemcp-server
  1. 安装依赖项:
npm install
  1. 构建项目:
npm run build

用法

运行服务器

构建后即可直接运行服务器:

./build/index.js

或者通过 npm:

npm start

发展

观察开发过程中的变化:

npm run watch

要检查服务器的 MCP 实现:

npm run inspector

可用工具

列表服务器

列出具有可选过滤和分页功能的 MCP 服务器。

参数:

  • query (可选):用于过滤服务器的搜索词
  • integrations (可选):用于过滤的集成数组
  • count_per_page (可选):每页结果数(最大值:5000)
  • offset (可选):分页时要跳过的结果数

例子:

{ "query": "toolhouse", "integrations": ["github"], "count_per_page": 10, "offset": 0 }

列表集成

列出所有可用的集成。此工具不接受任何参数。

响应格式

两种工具都返回具有以下结构的 JSON 响应:

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 }

list_integrations 响应

{ "integrations": [ { "name": "Integration Name", "slug": "integration-slug", "url": "https://integration-url.com" } ] }

错误处理

该服务器包括强大的错误处理功能:

  • 参数无效
  • API 连接问题
  • 速率限制
  • 身份验证错误

错误以标准格式返回,并带有适当的错误代码和消息。

发展

项目结构

pulsemcp-server/ ├── src/ │ └── index.ts # Main server implementation ├── build/ # Compiled JavaScript ├── package.json # Project configuration └── tsconfig.json # TypeScript configuration

依赖项

  • @modelcontextprotocol/sdk: ^0.6.0
  • axios:^1.7.9
  • TypeScript:^5.3.3

执照

阅读LICENSE.MD

贡献

打开 PR - 表现友善,您将获得奖励!

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

PulseMCP Server 是一个基于 TypeScript 的 MCP 服务器,实现了简单的笔记系统,允许用户通过模型上下文协议创建、访问和总结文本笔记,并具有基于 URI 的资源管理和 LLM 摘要提示。

  1. 特征
    1. 安装
      1. 在 MCP 客户端中安装
    2. 用法
      1. 运行服务器
      2. 发展
    3. 可用工具
      1. 列表服务器
      2. 列表集成
    4. 响应格式
      1. list\_servers 响应
      2. list\_integrations 响应
    5. 错误处理
      1. 发展
        1. 项目结构
        2. 依赖项
      2. 执照
        1. 贡献

          Related MCP Servers

          • A
            security
            A
            license
            A
            quality
            This TypeScript-based MCP server enables users to manage a simple notes system with capabilities to create and summarize notes through structured prompts and resources.
            Last updated -
            5
            0
            TypeScript
            MIT License
            • Apple
          • -
            security
            F
            license
            -
            quality
            This TypeScript-based server implements a simple notes system, allowing users to create and manage text notes and generate summaries, showcasing core MCP concepts.
            Last updated -
            2
            7
            TypeScript
            • Apple
          • -
            security
            F
            license
            -
            quality
            This TypeScript-based MCP server allows users to manage a simple notes system through creating and summarizing text notes using Model Context Protocol (MCP).
            Last updated -
            410
            5
            TypeScript
            • Apple
          • A
            security
            A
            license
            A
            quality
            This 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.
            Last updated -
            1
            JavaScript
            MIT License
            • Apple

          View all related MCP servers

          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