digital-mgmt-mcp
digital-mgmt-mcp
Akij Resource 디지털 관리 팀을 위한 Model Context Protocol (MCP) 서버로, TypeScript와 공식 MCP SDK로 구축되었습니다. Streamable HTTP 전송을 사용하므로 Vercel 서버리스 함수로 실행할 수 있으며(로컬에서는 stdio로도 실행 가능), 로컬에서도 stdio로 실행할 수 있습니다.
도구
도구 | 설명 |
| 현재 UTC 시간 / ISO 타임스탬프 / epoch ms |
| 메시지를 다시 에코합니다 |
| 안전한 산술 평가 ( |
| 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에 배포
Vercel CLI 설치:
npm i -g vercelvercel(프로젝트 연결) 후vercel --prodMCP 엔드포인트는
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=. --pushMCP에 연결
클라이언트(예: 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 환경 변수에 넣어야 하며, 절대 커밋하지 마세요.
This server cannot be installed
Maintenance
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
- AlicenseNot gradedqualityDmaintenanceA 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
- AlicenseNot gradedqualityDmaintenanceA 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
- AlicenseNot gradedqualityDmaintenanceA 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
- AlicenseNot gradedqualityDmaintenanceNext.js-based MCP server using mcp-handler for Vercel deployment, supporting SSE transport and Redis integration.1MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for Appcircle mobile CI/CD platform.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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