digital-mgmt-mcp
digital-mgmt-mcp
Akurioデジタルマネジメントチーム向けのModel Context Protocol (MCP)サーバー。TypeScriptと公式MCP SDKで構築されています。Streamable HTTPトランスポートを使用しているため、Vercelサーバーレス関数として実行できます(stdio経由でローカルでも実行可能)。
ツール
ツール | 説明 |
| 現在のUTC時刻 / ISOタイムスタンプ / エポックミリ秒 |
| メッセージをそのまま返す |
| 安全な算術評価( |
| 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への接続
クライアントでリモートMCPサーバーとして追加します(例: opencode.json):
{
"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