Model Context Protocol (MCP) server for AI-assisted development of MDK applications.
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
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
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 SAP Mobile Development Kit (MDK) 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.
[!NOTE] This MCP server is an early release version of the MDK. You may encounter bugs or unfinished features. We'd love your feedback to make it better! Please report issues or share suggestions via GitHub issues.
Install node.js 22.14.0.
For installing the MDK MCP server, we offer 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 --include=optional
npm run build
npm i -g @sap/mdk-mcp-server@.
Configure your MCP client (AI agent) to connect to the server. 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.3(default), 25.9, 25.6, 24.11, and 24.7.{
"mcpServers": {
"mdk-mcp": {
"type": "stdio",
"command": "mdk-mcp",
"args": ["--schema-version", "26.3"]
}
}
}
Note:
If the MCP server does not listed with its available tools in the Cline extension immediately, restart VS Code.
Example using OpenCode:
{
"mcp": {
"mdk-mcp": {
"type": "local",
"command": ["mdk-mcp", "--schema-version", "26.3"],
"enabled": true
}
}
}
Edit the file ~/.cursor/mcp.json:
{
"mcpServers": {
"mdk-mcp": {
"command": "mdk-mcp",
"args": ["--schema-version", "26.3"]