{
"mcpServers": {
"daprmcpserver": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 191 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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)