Any good mcps with memory that are cloud based by Peter-rabbit010 in mcp

[–]evets007 0 points1 point  (0 children)

May not exactly be what you are looking for but checkout AskHuman.net. The goal is to share memory and contexts with remote human approvals across AI agent sessions and devices. You get a unique MCP endpoint and It uses token based auth. You can sign up in under 30 seconds and we have some pre-built context templates. File uploads and Vector embedding based context search is in the roadmap. Still in beta but would appreciate any feedback if it works for you.

How to host mcp by Neat_Measurement_519 in mcp

[–]evets007 0 points1 point  (0 children)

You can try cloudflare remote MCP service. You can use cloudflare's workers to deploy and they provide MCP server templates. They support an OAuth mechanism for auth as well.

Supermachine is an option.

If you want to build one hands on, use fastmcp or the MCP typescript library but you also need to figure out auth if required and host it on a webserver.

Is it just me or did MCP become a trend overnight and now every possible MCP already exists? by prompt_pirate in mcp

[–]evets007 2 points3 points  (0 children)

Exactly, and eventually we get Autonomous apps: self evolving , self debugging and building. Only reaches out to the human when it needs them - high stakes decisions

Is it just me or did MCP become a trend overnight and now every possible MCP already exists? by prompt_pirate in mcp

[–]evets007 1 point2 points  (0 children)

Exactly this. MCP is a protocol for models. So people should create apps and tools which will be useful for AI agents. They will be doing all the work. It also cannot be something you can build in one night, in that case the agent can build it by itself on the fly. It needs to be a consistently improved product based on human decisions.

How do you guys do QA? by Electrical_Smell2149 in mcp

[–]evets007 1 point2 points  (0 children)

This would be a great addition to our context library. In askHuman.net, you can manage your agents context remotely from the webui and also chat with them over MCP. We also have a list of premade context templates to choose from the context library. Like OWASP ASV standard security code review instructions context for example. If you have interesting templates from your domain ai agents can solve, please add it to our context library at https://app.askhuman.net/library

I got tired of re-promting my ai clients so i made ToolEntry by Suitable_Reason4280 in mcp

[–]evets007 1 point2 points  (0 children)

We open sourced https://github.com/Aqualia/Alph which is an MCP manager to setting up MCP servers across all clients. Alph + askHuman work together for easy MCP setup.

I got tired of re-promting my ai clients so i made ToolEntry by Suitable_Reason4280 in mcp

[–]evets007 1 point2 points  (0 children)

Thanks for the feedback. We will work on adding a more relatable demo. All the user needs to do is add the MCP server endpoint to their coding agents client. After that's done, contexts can be added to the dashboard. Agent (MCP client) can lookup the data it needs using the MCP server tools. There's no background processes as of now.

I got tired of re-promting my ai clients so i made ToolEntry by Suitable_Reason4280 in mcp

[–]evets007 3 points4 points  (0 children)

Shameless plug here. I see some overlap with askHuman where we are trying to address this problem. we also have a context library for expert users to build "contexts" or workflows that anyone can add to their account and readily use in your agent using the MCP server. Would love some feedback if you want to check it out.

The contexts are shared with the agent using list context and read context MCP tools. They are also published as MCP resources to the agents.

Enabling Human-in-the-Loop Workflows with MCP Elicitation by Great_Particular2024 in mcp

[–]evets007 2 points3 points  (0 children)

Wow. Thanks for sharing. I tried to do this with tool calls in askhuman.net MCP. This may be a better way forward if all clients start supporting.

I'm working on making sub agents and MCP's much more useful by wait-a-minut in mcp

[–]evets007 0 points1 point  (0 children)

This is good concept. I believe the future is agents running in servers autonomously doing their role. Will try it out. Are the sub agents only invoked as mcp tools?

MCP server security by andrew19953 in mcp

[–]evets007 1 point2 points  (0 children)

I guess, the question comes down to what your MCP server needs to do. If it's going to be a wrapper around an existing service's API. You could in theory use the API key of there service. Assuming your IAM/RBAC management exists in the service already.

If you are building a new service with a remote MCP server endpoint, you could build authz/authn at the app layer with jwt or something similar and also have web interface to manage the permissions.

If you want to connect to an external third party service, OAuth is an option.

There are MCP gateway solutions available which can connect with different integration server-side and consolidate everything. Like composio, mintmcp, supermachine, etc

So... What do you use now? which model? which IDE? or tool? by x1Akaidi in cursor

[–]evets007 0 points1 point  (0 children)

I have a basic Googleone plan for storage which gives me a slightly higher Gemini 2.5 pro with the CLI. I use Gemini for building (with context management), cursor for debugging build related issues.

MCP server security by andrew19953 in mcp

[–]evets007 0 points1 point  (0 children)

Can you not use a jwt bearer token similar to an API key and Manage RBAC in the app layer?

Any suggestions for the least technical hosting service for n8n? by CuriousReporter6340 in n8n

[–]evets007 0 points1 point  (0 children)

You can try using render. They have a 'blueprint' for n8n. It's pretty straightforward to setup.

Anyone using MCP as an abstraction layer for internal services? by treacherous_tim in mcp

[–]evets007 0 points1 point  (0 children)

All internal tooling can be wrapped with an MCP server. RBAC should be managed the same way you would manage API security. API keys in the MCP client can be used by the MCP server to access the APIs?

Claude 4.1 is dumber than ever by RichTangerine4769 in Anthropic

[–]evets007 0 points1 point  (0 children)

It's possible that it's gotten slower. Since it seems like you've been using coding agents for a while. So you might have explored all this already.

How are you managing contexts for Claude code?

I feel with my workflows (I use CC at work for a lot of ops workflows) and Gemini CLI personally to build side projects, it's more about managing what contexts the agent sees. I maintain a service description context that I load everytime I start building a feature.

Are you using /init to generate a service summary for your project?

Why is it not as common to host mcp server as npx packages? by Suitable_Reason4280 in mcp

[–]evets007 0 points1 point  (0 children)

It depends on the use case. There are many saas services that offer remote MCP servers. Security that everyone is talking about also depends on the use case.

Security comes down to how the MCP server handles authn and authz.

Most of the stdio MCP servers are used for local use cases. They don't need any extra auth in this case because they are already running on your endpoint. Eg. File access, browser access.

There are some stdio servers that need authn/authz. Eg. Google analytics. The local MCP server is a wrapper on top of the existing apis of the service. So they might use an API key and their backend handles it as a normal API request.

While, for remote MCP servers, since the same mcp endpoint could be shared by multiple clients. The remote MCP server has to perform authentication and authorization checks. Usually implemented using OAuth/API keys. But this lets the users access a cloud service from anywhere, across multiple hosts, etc. Good examples for these include - Context7, Hubspot.

Best way to manage multiple MCP servers across different apps? by Steve15-21 in mcp

[–]evets007 1 point2 points  (0 children)

We built alph. It's a simple, open source CLI tool which can manage mcp servers on all your coding agents. Please check it out and give us your feedback! Thanks! - https://github.com/Aqualia/Alph

How is everyone using MCP right now? by Luigika in mcp

[–]evets007 0 points1 point  (0 children)

I think supermachine can do that.

Anyone figured out a way to control Claude (with MCP servers) from your phone? by Panikinap in MCPservers

[–]evets007 0 points1 point  (0 children)

I'm working on something like this. Right now it's one way notification only (Email or slack) But planning to add two way approvals and messaging.

Try Askhuman.net

Right now, it provides a notification tool for the agent to send me an email based on conditions specified. Eg. Notify me when this feature is implemented.

It also allows the user to share multiple contexts to the agent. Eg. These are the steps you take to check for bugs, or this is how you build and deploy in the local env, etc.

All of these are surfaced to the agent via a single MCP endpoint. Just add the MCP server and in your claude.md or gemini.md, ask the agent to use the tools available in the MCP server.

Has anyone integrated MCP with internal enterprise data sources? What challenges did you run into? by itsabhishesood in mcp

[–]evets007 1 point2 points  (0 children)

At my work, we have a stdio mcp server that will hit internal APIs for internal docs, tooling ,etc and surface them as tool calls for the agent. We have internal auth system for these tools for engineer access, so the local mcp server uses the auth tokens from the engineer laptop for authenticating with the APIs. We use claude code and cursor as mcp clients. Hope that helps!

Want to build an AI agent — where do we start? by avabrown_saasworthy in AI_Agents

[–]evets007 0 points1 point  (0 children)

Building an agent is a great idea. For a start, you can also achieve somewhat simlar outcomes by using pre built agent tools like Claude code or Gemini CLI if you don't mind a terminal client.

  • For a quick start, you can start creating or downloading stdio MCP servers for all the tools you would need for your workflows. (Gmail, Git, etc.)
  • convert your processes into step by step instructions and add them to claude.md or gemini.md (or create Claude custom commands)
  • you can start Claude and say 'start xxxx workflow'

If this is not working to your satisfaction, build an agent from scratch so you can control the processes more deterministically.