DEV Community

Cover image for Building UnofficialOS: What are your favorite Cloudflare OS tools and MCP servers?
Vineet
Vineet

Posted on

Building UnofficialOS: What are your favorite Cloudflare OS tools and MCP servers?

Hey everyone! πŸ‘‹

We’re gearing up to launch UnofficialOS (https://www.unofficialos.com) β€” an open-source registry indexing 384+ Cloudflare OS gadgets, agent blueprints, and Model Context Protocol (MCP) servers.

With the rapid rise of autonomous AI assistants (Claude Desktop, Cursor IDE, Windsurf), connecting models to reliable edge execution environments is becoming essential.

We’d love to hear from fellow builders:

  1. What edge tools or MCP servers do you use in your daily AI workflow?
  2. What features would you like to see in an open-source edge tool directory?

Drop your thoughts below! πŸš€

Top comments (6)

Collapse
 
alexshev profile image
Alex Shev

The interesting MCP servers are usually the boring ones: storage, deploy logs, permissions, docs, and observability. Those are the places where an agent becomes useful because it can see the system state, not just generate code around it.

Collapse
 
vineetgoyalhuf profile image
Vineet

thanks for your comment. If you would like to see any additional feature, please let me know. I would try to implement this.

Collapse
 
alexshev profile image
Alex Shev

The feature I would prioritize is an audit view before adding more tools: which MCP servers are connected, what scopes they expose, when each was last called, and which calls touched durable state. In practice, teams trust tool catalogs faster when they can see the permission surface and recent execution trail in one place.

Thread Thread
 
vineetgoyalhuf profile image
Vineet

Hey Alex, totally agree on the importance of permission visibility! I have now built an interactive audit tool specifically for this: unofficialos.com/mcp-checker. It performs an AST capability audit on any MCP server to surface network/disk/shell scopes and breaks down every tool into Read-Only vs Durable State mutations with full client configs (Claude, Cursor, Windsurf). Would love your thoughts on it!

Collapse
 
alexshev profile image
Alex Shev

For that kind of Cloudflare OS, I would start with the least glamorous MCP surfaces: KV/R2 inventory, deployment history, worker logs, env var presence checks, and a read-only route map. Those give an agent useful context without immediately handing it risky mutation powers.

Thread Thread
 
vineetgoyalhuf profile image
Vineet

unofficialos.com/best/read-only-mc...

I hope it helps you. I am working on other things.