←back to thread

76 points murb | 3 comments | | HN request time: 0.627s | source

Hello! We open sourced all our current MCP servers to platforms like Slack, Google sheets, Linear, Perplexity and will be contributing a few more integrations every day to the project.

problems we're hoping to solve:

- Many people are creating MCP servers for the same apps. They're scattered across different repos but flavors of the same thing. We're making one standardized mono project for all MCP servers.

- Startups are charging for hosting MCP servers. This is blocking tons of people from being able to play around with MCP casually. We're hosting them for free.

- Non-technical people should be able to use MCP without needing to learn how to clone a repo and set up a venv. We're trying to enable a one click integration if people want to use the free hosted service.

The plan is to keep contributing until we have an MCP server for basically every useful app anyone could want.

1. rbehal1729 ◴[] No.43536211[source]
Thanks HN! (cofounder here)

Just a couple of things that I think makes GuMCP different than other options out there:

- Having a unified way to run each server via stdio and sse. Basically all existing providers either let you connect through their hosted sse service or let you clone and run stdio locally. Rarely is there a very simple way to do either/or, especially when it comes to hosting your own sse server out-of-the-box. Existing options like Zapier's MCP are closed source, so it's not so simple.

- Setting a flexible and generic framework for integration auth with MCP servers. Currently, methods of authentication vary from server to server. We provide a unified mechanism of auth for every single server that is importantly generic enough for you to be able to host it on your own. We do this through having a base 'AuthClient' that is used across each of our servers, which supports any arbitrary implementation. For local use, we provide a LocalAuthClient that sets a standard for integrations, OAuth and otherwise.

- We also have a GumloopAuthClient that uses your existing credentials for Gumloop, which will then exact similarly to how Zapier or Composio do their MCP servers, with auth taken care of easily. Difference is you have the flexibility to also host it on your own with your own AuthClient, or run locally with stdio and local auth as well.

- Ready-to-deploy sse through one URL. If you want to host on your own, the repository out-of-the box can be deployed with ALL sse servers hosted under a single URL.

- For open source contributions, your server will be deployed and hosted instantly. No need to fiddle with devops to get a SSE server available remotely for your implementation. This makes it way simpler for less technical folks (or just those who don't want to deal with infra) to make their ideas a reality.

replies(1): >>43537172 #
2. abrichr ◴[] No.43537172[source]
Interesting, thanks!

Would something like https://github.com/OpenAdaptAI/OmniMCP make sense to include here?

replies(1): >>43537579 #
3. rbehal1729 ◴[] No.43537579[source]
Oh this is really interesting!

I think this is a good complement for use WITH guMCP rather than having it in the core repo itself, definitely will be playing around with this.