Model Context Protocol (MCP) server for AI-assisted development of MDK applications.
MCPpedia last refreshed this data
io.github.SAP/mdk-mcp-server is an MCP server that model Context Protocol (MCP) server for AI-assisted development of MDK applications. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 92/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-sap-mdk-mcp-server": {
"args": [
"-y",
"@sap/mdk-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This open-source server provides AI agents with comprehensive MDK knowledge and tools. By combining best practice guidelines, project-aware context information, templates for creating new projects, and access to the MDK CLI tools, the MDK MCP server transforms AI agents into MDK development experts.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@sap/mdk-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @sap/mdk-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
Chrome DevTools for coding agents
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for io.github.SAP/mdk-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This open-source server provides AI agents with comprehensive MDK knowledge and tools. By combining best practice guidelines, project-aware context information, templates for creating new projects, and access to the MDK CLI tools, the MDK MCP server transforms AI agents into MDK development experts.
The mobile development kit is a powerful framework that enables developers to build cross-platform mobile applications using a metadata-driven approach. It is part of SAP Business Technology Platform and integrates tightly with SAP Mobile Services. Some of SAP’s larger and complex mobile apps are built using MDK. An example is SAP Service and Asset Manager.
The MDK MCP server supports the following platforms:
If you're on an Intel Mac, you may need to:
Install node.js 24.11.1.
To install the MDK MCP server, you have two options:
a. Use npm to install it from the public npmjs registry at @sap/mdk-mcp-server.
npm install -g @sap/mdk-mcp-server
b. Clone the open-source code repository at https://github.com/SAP/mdk-mcp-server, and use npm to install.
git clone https://github.com/SAP/mdk-mcp-server.git
cd mdk-mcp-server
npm i
npm run build
npm i -g @sap/mdk-mcp-server@.
Configure your MCP client (AI agent) to connect to the server. Note that configuration will vary depending on the AI agent used.
Cline in VS Code: Example using the Cline extension.
cline_mcp_settings.json file in your editor.mcpServers section, and save the file. The supported schema versions include 26.6 (default), 26.3, 25.9, 25.6, 24.11, and 24.7.{
"mcpServers": {
"mdk-mcp": {
"type": "stdio",
"command": "mdk-mcp",
"args": ["--schema-version", "26.6"]
}
}
}
Note:
If the MCP server is not listed with its available tools in the Cline extension immediately, restart VS Code.
Claude Code discovers MCP servers from its configuration.