Remix.run Logo
spennant 12 days ago

I built this to fill a specific need. It's not really made to talk to Claude Desktop (although it can). It's built to take multiple connections from agents who bring their own LLM (via API key or whatever) and provide context to the LLM model. Yes, it does import the standard Python MCP package, however it does quite a few non-standard things in order to achieve the multi-tenancy. I encourage you to look at the code.

koakuma-chan 12 days ago | parent [-]

What is multi-tenancy?

spennant 12 days ago | parent | next [-]

Just a fancy way of saying that multiple agents (with their own LLMs) can concurrently connect, also that pg-mcp can simultaneously connect to multiple Postgres servers as well.

yroc92 12 days ago | parent | prev [-]

User isolation in a single data store. Basically, many customers sharing a single database securely without sharing their data.