Back to MCP directory
publicPublicdnsLocal runtime

pushinator-mcp

Pushinator MCP是一个需要通过API密钥配置的MCP服务客户端插件。

article

README

🚀 Pushinator MCP集成项目

本项目帮助您将Pushinator MCP集成到MCP客户端,通过简单的步骤完成依赖安装、构建,并配置相关API密钥。

🚀 快速开始

📦 安装指南

首先,您需要安装项目所需的依赖。在项目根目录下,执行以下命令:

bun install

🏗️ 构建项目

安装完依赖后,进行项目构建。在项目根目录下,执行以下命令:

bun run build

⚙️ 配置MCP客户端

构建完成后,您需要将Pushinator MCP添加到您的MCP客户端。API令牌可在您的Pushinator API令牌页面获取。 在您的MCP客户端配置文件中添加以下内容:

{
    "mcpServers": {
        "pushinator": {
            "command": "node",
            "args": ["路径到仓库/build/index.js"],
            "env": {
                "PUSHINATOR_API_KEY": "您的Pushinator API密钥"
            }
        }
    }
}

⚠️ 重要提示

请确保将路径到仓库/build/index.js替换为实际的项目构建文件路径,并将您的Pushinator API密钥替换为您从Pushinator API令牌页面获取的真实API密钥。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client