Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"daprmcpserver": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides AI models with access to Dapr (Distributed Application Runtime) capabilities.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
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 devops / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
40+ production-ready SwiftUI recipes for building full-stack iOS apps via MCP.
MCP Security Weekly
Get CVE alerts and security updates for DaprMcpServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides AI models with access to Dapr (Distributed Application Runtime) capabilities.
This MCP server exposes the following Dapr capabilities as MCP tools:
Dapr codifies the best practices for building microservice applications into open, independent APIs called building blocks. The Dapr building block APIs:
Enable you to build portable applications using the language and framework of your choice.
Are completely independent
Have no limit to how many you use in your application
Using Dapr, you can incrementally migrate your existing applications to a microservices architecture, thereby adopting cloud native patterns such scale out/in, resiliency, and independent deployments.
Dapr is platform agnostic, meaning you can run your applications:
Locally
On any Kubernetes cluster
On virtual or physical machines
In other hosting environments that Dapr integrates with.
This enables you to build microservice applications that can run on the cloud and edge.
dotnet build
The server communicates via stdin/stdout following the MCP protocol:
dotnet run
The server connects to Dapr on localhost:3500 by default. You can modify the constructor parameters in Program.cs to change:
Retrieve state from a Dapr state store.
{
"stateStore": "statestore",
"key": "mykey"
}
Set state in a Dapr state store.
{
"stateStore": "statestore",
"key": "mykey",
"value": {"data": "example"}
}
Invoke a method on another Dapr service.
{
"appId": "target-service",
"methodName": "process-data",
"data": {"input": "example"},
"httpVerb": "POST"
}
Publish a message to a Dapr pub/sub topic.
{
"pubsubName": "pubsub",
"topic": "orders",
"data": {"orderId": 123}
}
Invoke an external binding through Dapr.
{
"bindingName": "storage",
"operation": "create",
"data": {"filename": "test.txt", "content": "Hello World"}
}
Retrieve a secret from a Dapr secret store.
{
"secretStore": "secrets",
"key": "database-password"
}
This MCP server can be used with any MCP-compatible AI client (like Claude Desktop) to give AI models the ability to:
To use this MCP server, you'll need Dapr components configured. Here are example component files:
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: statestore
spec:
type: state.redis
version: v1
metadata:
- name: redisHost
val
... [View full README on GitHub](https://github.com/blogtheristo/DaprMcpServer#readme)