Project Atlas MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Project Atlas MCP Serversearch for projects on sustainable energy"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Project Atlas: a standard MCP App you can fork
Project Atlas is a complete open-source MCP App development repository. It includes a Vite + React UI, a real Streamable HTTP MCP server, deterministic mock data, a browser playground, a self-contained published resource, and protocol-level checks.
You can clone it, give it to your own coding agent, change the interface or tools, test everything locally, deploy the server anywhere that supports Node.js, and add that MCP server to OpenWork Connect. There is no OpenWork-specific runtime manifest or generated wrapper-tool contract.
Run the complete local loop
Requires Node.js 20+ and pnpm.
pnpm install
pnpm verify
pnpm devVite opens http://localhost:5173/playground.html. The playground embeds the app, performs the MCP Apps postMessage handshake, delivers launch data in tool-result structuredContent, and handles the native search_projects same-server call with records from src/mock-data.json.
In another terminal, run the real MCP server:
pnpm start:mcp
# http://127.0.0.1:8787/mcpThat endpoint is a stateless Streamable HTTP MCP server. It advertises:
open_project_atlas, with_meta.ui.resourceUriset toui://project-atlas/view.html;search_projects, an app-visible native read-only tool;the exact
ui://project-atlas/view.htmlresource astext/html;profile=mcp-app; andthe stable
io.modelcontextprotocol/uiextension.
pnpm check:mcp connects through the official SDK and verifies the tool definitions, exact resource URI, MIME type, UI metadata, structuredContent, and result _meta.
Related MCP server: poc5-mcp-http-remote
Build with your own agent
AGENTS.md gives coding agents the repository contract. The main surfaces are:
Surface | Purpose |
| React-authored MCP App UI |
| Deterministic data shared by the browser playground and MCP server |
| Local browser MCP Apps host |
| Standard Streamable HTTP MCP server |
| Protocol-level contract check |
| Published self-contained UI resource |
| Second immutable resource for cache/lifecycle testing |
React is only the authoring implementation. Vite compiles it into one self-contained client document. The server returns that immutable document as the MCP App resource; OpenWork does not run this repository, Vite, or React source at render time, and this is not React SSR.
Add it to OpenWork
Full tool-backed MCP App through Connect
Deploy this repository's Node server to a public HTTPS service.
Ensure its Streamable HTTP endpoint is available at
/mcp.Add that endpoint as a normal server in OpenWork Connect.
Grant the appropriate organization, team, or member access in Connect.
OpenWork agents discover the server's native tools. Calling
open_project_atlasrenders the attached resource; the app'ssearch_projectscall stays on that same server.
OpenWork may proxy an authorized Connect server on an OpenWork-owned URL, but it preserves the MCP server's native tool names, schemas, resource URIs, UI metadata, content, structuredContent, and _meta. Provider credentials stay server-side.
Static URL adapter
GitHub Pages publishes the generated document at:
https://reachjalil.github.io/openwork-remote-mcp-app-example/index.htmlAn OpenWork build with the URL-import adapter can download that document into the Library, validate it, digest it, and serve it later as an immutable standard MCP App resource. The cached copy no longer depends on GitHub at runtime.
The Pages URL is deliberately static. It cannot host search_projects. Use the MCP server path above when the app needs native tools; use URL import when a self-contained static view is sufficient.
Execution boundary
The standard flow is:
Agent -> tools/list -> open_project_atlas (_meta.ui.resourceUri)
Agent -> tools/call -> content + structuredContent + _meta
Host -> resources/read(ui://project-atlas/view.html)
Host -> sandboxed MCP App iframe
App -> tools/call(search_projects) on the same MCP serverThe UI bundle contains presentation logic and the stable native tool name. It contains no credentials, OpenWork connection IDs, or mock records. Artifact data arrives at render time from standard MCP tool results.
See EXECUTION_CONTRACT.md for the full boundary. The OpenWork integration is developed in OpenWork PR #3758, on top of the merged Plugin foundation from PR #3759.
License
MIT. Fork it, replace Project Atlas, keep the MCP contract standard, and publish your own server and UI resource.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA production-ready FastMCP server template supporting local development with stdio and secure web deployment with HTTPS and OAuth.4MIT
- Flicense-qualityBmaintenanceThis MCP server provides a Streamable HTTP endpoint with bearer token authentication, exposing echo and add tools, and an info resource for remote client integration.
- FlicenseBqualityBmaintenanceA production-ready MCP server offering text analysis tools, an in-memory key-value store, and system info resources with support for both stdio and HTTP transports.4
- Alicense-qualityAmaintenancePyPI-launched MCP server that exposes a living project model and outcome telemetry as read-only resources for MCP-aware clients.1Apache 2.0
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Streamable HTTP MCP server for Google Calendar and Sheets with OAuth login.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/reachjalil/openwork-remote-mcp-app-example'
If you have feedback or need assistance with the MCP directory API, please join our Discord server