Skip to main content
Glama

digital-mgmt-mcp

为 Akij Resource Digital Management 团队打造的 Model Context Protocol (MCP) 服务器,基于 TypeScript 和官方 MCP SDK 构建。它使用 Streamable HTTP 传输方式,因此可以以 Vercel Serverless 函数的形式运行(也可以在本地通过 stdio 运行)。

工具

工具

描述

get_time

当前 UTC 时间 / ISO 时间戳 / epoch 毫秒

echo

回显一条消息

calculate

安全算术求值(+ - * / % ( )

digital_kpi_summary

FY2026 数字管理 KPI 摘要(真实 DWH 数据 + 示例营销数据),带有可选的 SBU 过滤条件

Related MCP server: Custom MCP Server

项目结构

api/mcp.ts        Vercel entry — Express app + Streamable HTTP transport (deployed function)
src/tools.ts      Tool definitions (shared)
src/server.ts     Local HTTP dev server (npm run dev)
src/stdio.ts      Local stdio runner (npm run stdio)
vercel.json       Vercel build/function config

本地开发

npm install
npm run dev        # HTTP server on http://localhost:3000/mcp
# or
npm run stdio      # stdio transport (for local MCP clients)

部署到 Vercel

  1. 安装 Vercel CLI:npm i -g vercel

  2. 运行 vercel(关联项目),然后运行 vercel --prod

  3. 你的 MCP 端点将是 https://<project>.vercel.app/api/mcp

推送到 GitHub

git init
git add .
git commit -m "init: digital management MCP server"
git branch -M main
gh repo create digital-mgmt-mcp --public --source=. --push

连接到 MCP

在客户端(例如 opencode.json)中将其添加为远程 MCP 服务器:

{
  "mcp": {
    "digital-mgmt-mcp": {
      "type": "remote",
      "url": "https://<project>.vercel.app/api/mcp",
      "enabled": true
    }
  }
}

添加工具

src/tools.ts 中使用 zod schema 注册新工具,为参数提供类型化:

server.tool(
  "my_tool",
  "What this tool does.",
  { input: z.string().describe("Description of the input") },
  async ({ input }) => ({
    content: [{ type: "text", text: `You said: ${input}` }],
  })
);

机密信息(API 密钥、数据库凭据)应放在 Vercel 环境变量中——切勿提交它们。

F
license - not found
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    A serverless MCP server deployed on Vercel that provides basic utility tools including echo, time retrieval, arithmetic operations, and mock weather information. Includes an interactive client application for testing and demonstration purposes.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A Next.js-based MCP server that provides basic utility tools including echo, current time retrieval, and safe mathematical calculations through HTTP and SSE transports.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A self-contained, dependency-free MCP server that provides utility tools for time, date, mathematical calculations, and shell command execution. It supports remote connectivity through SSE and is designed for easy deployment via Docker.
    GPL 3.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Next.js-based MCP server using mcp-handler for Vercel deployment, supporting SSE transport and Redis integration.
    1
    MIT

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

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/headdigitalmgt-mahfuj2/digital-mgmt-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server