dt-app-mcp
v0.1.0
Published
Dynatrace Apps MCP Server – provides Strato component docs, SDK docs, DQL knowledge base, and experience standards to AI coding assistants via the Model Context Protocol.
Maintainers
Readme
dt-app-mcp
Dynatrace Apps MCP Server – provides Strato component documentation, SDK documentation, DQL knowledge base, and experience standards to AI coding assistants via the Model Context Protocol (MCP).
What it does
The dt-app-mcp server exposes the following tools to any MCP-compatible AI client:
| Tool | Description |
| --- | --- |
| strato_search | Search for Strato components by name or keyword |
| strato_get_component | Get detailed component docs, props, and examples |
| strato_get_usecase_details | Get full code for Strato component use cases |
| sdk_search | List available Dynatrace SDK documentation packages |
| sdk_get_doc | Get complete documentation for a specific SDK package |
| dql_search | Semantic search over the DQL knowledge base |
| get_exp_standard | Retrieve app experience standards by keywords |
Installation
npm install -g dt-app-mcpOr use it directly with npx:
npx dt-app-mcpUsage with Claude Code
Option 1: Add via CLI
claude mcp add dt-app-mcp -- npx -y dt-app-mcpOption 2: Add to project config
Create or edit .mcp.json in your project root:
{
"mcpServers": {
"dt-app-mcp": {
"command": "npx",
"args": ["-y", "dt-app-mcp"]
}
}
}Option 3: Add to global Claude config
Add to ~/.claude.json:
{
"mcpServers": {
"dt-app-mcp": {
"command": "npx",
"args": ["-y", "dt-app-mcp"]
}
}
}Usage with VS Code (GitHub Copilot)
If you have the Dynatrace Apps VS Code extension installed, the MCP server is automatically registered with GitHub Copilot. No additional configuration is needed.
Usage with other MCP clients
The server communicates over stdio using the MCP JSON-RPC protocol. You can integrate it with any MCP-compatible client by running:
npx dt-app-mcp