streamable-httpMITupdated 2mo ago
Official metadata for the ZERNO Lite Model Context Protocol (MCP) server.
What can you do with zerno lite?
ZERNO Lite โ MCP Server
Official metadata for the ZERNO Lite Model Context Protocol (MCP) server.
ZERNO Lite is a remote MCP server that connects AI agents to ZERNO project context โ project briefs, task and agent context, and structured intake workflows โ over a secure, OAuth-authorized endpoint. It's built for coding agents, product agents, and automation workflows that need to understand a project before acting, without unrestricted backend access.
This repository is the public "front door" for the hosted server: metadata,
server.json, and the tool catalog for MCP directories. It does not contain the backend source โ the server runs as a hosted service at the endpoint below.
Endpoint
https://zerno.one/mcp
| Transport | Streamable HTTP (JSON-RPC 2.0 over POST) |
| Auth | OAuth 2.1 with PKCE (S256); bearer tokens; per-project authorization |
| Registration | Dynamic Client Registration (RFC 7591) โ no static API key |
| Capabilities | 8 tools ยท 0 resources ยท 0 prompts |
| Registry name | one.zerno/zerno-lite |
| Manifest | https://zerno.one/.well-known/mcp |
Quickstart
Add a remote connector named zerno with URL https://zerno.one/mcp, then complete the OAuth
consent in the browser.
- Claude Code / Claude Desktop: Settings โ Connectors โ add custom connector (name
zerno, URL above). - Codex CLI:
codex mcp add zerno --url https://zerno.one/mcp - Cursor: Settings โ MCP โ Add server โ URL
https://zerno.one/mcp
For user-scoped tokens, tell the agent which project with a project_slug (e.g. zerno-one).
Tools (8)
| Tool | Does | Writes? |
|---|---|---|
zerno_get_project_brief |
Project orientation: focus, next action, do-not-do, memory index | no |
zerno_get_agent_context |
Compiled project memory + recent events for an agent run | no |
zerno_list_tasks |
Filtered backlog listing | no |
zerno_get_task |
Full detail for one task | no |
zerno_update_task |
Patch task fields/status (ICE recomputed) | mutates |
zerno_submit_task_triage |
Submit triage proposals (pending human approval) | creates proposals |
zerno_create_agent_intake_task |
File a review task from an agent report | creates a task |
zerno_capture_session_event |
Append a session summary to project memory | creates memory event |
Full machine-readable schemas: tools-list.json. No tool deletes data or calls
third-party services. tools/list is scope-filtered โ a read-only token sees only the four read tools.
Security & privacy
Every call requires OAuth; nothing is exposed unauthenticated. Bearer tokens are hashed at rest, no secrets are returned in tool output, and every call is audit-logged. Access is tied to the user's authorized ZERNO workspace/project.
Limitations
Requires a ZERNO account and an authorized project. Remote/hosted only (no stdio or packaged distribution). Tools only โ no MCP resources or prompts.
Files in this repo
server.jsonโ Official MCP Registry manifesttools-list.jsonโ fulltools/list(8 tools, exact schemas)smithery-server-card.jsonโ static server card for SmitheryLICENSEโ MIT
Links
- Website: https://zerno.one
- Docs: https://zerno.one/docs/mcp
License
MIT โ applies to this metadata repository.
Install
Add zerno lite to your client. Pick the one you use.
claude mcp add --transport http zerno-lite https://zerno.one/mcpcodex mcp add zerno-lite --url https://zerno.one/mcp{
"mcpServers": {
"zerno-lite": {
"url": "https://zerno.one/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"zerno-lite": {
"type": "http",
"url": "https://zerno.one/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"zerno-lite": {
"url": "https://zerno.one/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"zerno-lite": {
"serverUrl": "https://zerno.one/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
8 tools
zerno lite exposes 8 tools to a connected agent.
- zerno_get_project_brief
- Project orientation: focus, next action, do-not-do, memory index
- zerno_get_agent_context
- Compiled project memory + recent events for an agent run
- zerno_list_tasks
- Filtered backlog listing
- zerno_get_task
- Full detail for one task
- zerno_update_task
- Patch task fields/status (ICE recomputed)
- zerno_submit_task_triage
- Submit triage proposals (pending human approval)
- zerno_create_agent_intake_task
- File a review task from an agent report
- zerno_capture_session_event
- Append a session summary to project memory
Score
64 / 100
Good
- Documentation17/25
- Maintenance16/25
- Trust13/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 78 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jun 15, 2026 |