新器集 - 构建下一代智能应用

by PA-LuffyYu

151 downloads
Not rated
GitHub

About

一站式在线MCP发布和管理平台,也可云部署MCP服务。平台汇聚海量优质工具,涵盖数据库管理、地图服务、联网搜索、天气预报、本地文件管理、自动网页访问等多领域,满足不同场景需求。工具响应迅速、运行稳定,大幅提升开发效率,减少人工成本。可快速集成,统一维护,高效访问,统计日志,实时监控,智能预警。

Details

Author
PA-LuffyYu
Downloads
151
Categories
Other

- Simple API for MCP server interaction
- Easy integration with official MCP clients
- Access to community-published MCP servers
- Support for publishing and hosting your own servers
- Tool calling with customizable parameters

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name 新器集 - 构建下一代智能应用
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via npm i @smcphub/server or yarn add @smcphub/server. Then use an official MCP client to connect: import SmcphubClient, instantiate it with your api_key, call .connect() to list available tools, and .callTool(name, args) to invoke them. You can also customize the MCP server.

get_tool_sets

Include all tools sets, every tool set has multiple tools

get_tool_set

Get the tool set detail by specific tool set id

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "\u65b0\u5668\u96c6 - \u6784\u5efa\u4e0b\u4e00\u4ee3\u667a\u80fd\u5e94\u7528": {
            "smcphub-server": {
                "command": "npx",
                "args": [
                    "-y",
                    "@smcphub/server@latest"
                ],
                "env": {
                    "SMCPHUB_API_KEY": "YOUR API KEY HERE"
                }
            }
        }
    }
}

McpServers

{
    "smcphub-server": {
        "command": "npx",
        "args": [
            "-y",
            "@smcphub/server@latest"
        ],
        "env": {
            "SMCPHUB_API_KEY": "YOUR API KEY HERE"
        }
    }
}

Welcome to @smcphub/server 👋

Version Documentation License: MIT

> MCP Server of SMCPHUB

SMCP Server is a simple and easy-to-use client for smcphub.com. It provides a simple API to interact with all the MCP Servers hosted in the smcphub.com.

SMCP hub is a platform that allows you to find the MCP servers which users published, or also publish your MCP Servers and get them listed and hosted on the website.

🏠 Homepage

Install

npm i @smcphub/server
OR
yarn add @smcphub/server

Usage

Use official MCP Client to connect to the MCP Server.


// import the SDK
import SmcphubClient from '@smcphub/client';

// Instantiate the client
const smcphubClient = new SmcphubClient({
api_key: 'your-api-key'
});

// Connect the MCP Server
smcphubClient
.connect()
.then(tools => {
console.log(tools);
})
.catch(err => {
console.error(err);
});

// Call the tool
smcphubClient
.callTool('get_weather', {'city': '杭州'})
.then(content => {
console.log(content);
})
.catch(err => {
console.error(err);
});

Or customize the MCP Server.

Author

👤 SMCPHUB

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.