Skip to main content
Glama

digital-mgmt-mcp

Akij Resource 디지털 관리 팀을 위한 Model Context Protocol (MCP) 서버로, TypeScript와 공식 MCP SDK로 구축되었습니다. Streamable HTTP 전송을 사용하므로 Vercel 서버리스 함수로 실행할 수 있으며(로컬에서는 stdio로도 실행 가능), 로컬에서도 stdio로 실행할 수 있습니다.

도구

도구

설명

get_time

현재 UTC 시간 / ISO 타임스탬프 / epoch ms

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 스키마를 사용하여 타입이 지정된 인수로 새 도구를 등록하세요:

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 키, DB 자격 증명)은 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