Built something for scaling MCP apps - would love feedback #456
dhyansraj
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Pre-submission Checklist
Discussion Topic
Hi MCP community! 👋
I wanted to share a project I've been working on that extends MCP to distributed environments: MCP Mesh.
What it does:
MCP Mesh lets you scale MCP applications across Kubernetes with the same simplicity as running them locally. The core idea is dynamic dependency injection - agents declare what they need with @mesh.tool decorators, and the runtime automatically wires them together.
Key features:
Example:
@mesh.tool(dependencies=["date_service"])
def hello_mesh(date_service=None):
if date_service:
return f"Hello! Today is {date_service()}"
return "Hello! (Date service not available)"
The date_service parameter gets automatically injected with a proxy to another agent's function - no networking code required.
Links:
I'd love to hear your thoughts and feedback! The goal is to make it easier for the MCP ecosystem to scale to production environments while keeping the same elegant simplicity MCP is known for.
Beta Was this translation helpful? Give feedback.
All reactions