Remnus
Remnus
Open-source MCP-native workspace for humans and AI agents.
Kanban boards, databases, and pages that Claude, Cursor, and any AI agent can read and write via MCP — alongside you.
What is Remnus?
Remnus is the Human-Agent Collaborative Workspace, built around the Model Context Protocol (MCP). Every page, database, and kanban board in your workspace is accessible to AI agents via a first-class MCP server — connect editors with one-click OAuth 2.1 (PKCE), or use a scoped bearer token for headless / CI agents.
Unlike Notion's MCP integration, Remnus is designed for headless, CI/CD, and coding agent workflows from day one.
Related MCP server: Notion MCP Server
OKF-native context, not a workspace dump
Remnus uses Open Knowledge Format (OKF) ideas as a portable knowledge contract. Pages can carry descriptions, types, tags, sources, lifecycle state, freshness dates, and revision-bound review signals. OKF v0.2 import/export is the interchange layer; the editable Remnus workspace remains canonical.
The prepare_context MCP tool turns a concrete task into Context Pack v2: a token-budgeted set of concepts ranked by BM25 relevance, native metadata, page links, freshness, and trust. Smart mode advertises this context-first flow automatically for meaningful work. Strict mode additionally requires the same agent's short-lived contextRunId before Remnus MCP mutations.
This does not let an MCP server control local files, shell commands, or Git. Repository-level enforcement uses the supplied AGENTS.md and CLAUDE.md snippets. Read the public Context-First MCP guide and the implementation story, How Remnus Uses OKF to Give AI Agents Better Context.
Features
Pages — Markdown editor with slash commands, nested sub-pages, and icons
Databases — Customizable columns, Table / Kanban / Calendar views, filters, sorts
MCP Server — 20 tools + 6 resources + 7 prompts over stateless Streamable HTTP
OKF-native context — Portable knowledge metadata, exact-revision reviews, Context Pack v2, and Smart/Strict MCP policies
Agent auth — One-click OAuth 2.1 + PKCE (RFC 7591 dynamic registration) for editors, or scoped read/write personal access tokens for headless agents
Multi-workspace — Invite members, role-based access (owner / member / viewer)
Desktop app — Tauri v2 shell for Windows, macOS, Linux
Mobile — Capacitor v8 for iOS and Android (loads remnus.com)
i18n — English, Türkçe, हिन्दी, Español, Français, Deutsch, 中文, Русский
Quick Start — Self-host
Local Development
git clone https://github.com/Ranork/remnus-app.git
cd remnus-app
cp .env.example .env # fill in AUTH_SECRET + OAuth credentials
npm install
npm run db:migrate
npm run devOpen http://localhost:3000. The first user to sign up is auto-promoted to admin.
Docker Compose (5-minute setup)
If you prefer to run Remnus using Docker:
Clone the repository and navigate into it:
git clone https://github.com/Ranork/remnus-app.git cd remnus-appCopy the environment template and fill in the required variables (especially
AUTH_SECRETand OAuth credentials):cp .env.example .envStart the application:
docker compose up -dAccess Remnus at
http://localhost:3000. The SQLite database will be persisted automatically using a Docker volume.
Deploy
Add MCP to your editor
After signing in, open the AI Agents panel from the sidebar and click Connect editor. It walks you through every supported editor (Cursor, VS Code, Claude Code, Codex, Windsurf, and more).
Install from a registry
Remnus is published on the official MCP Registry (io.github.Ranork/remnus) and on Smithery, so MCP-aware clients and directories can discover it automatically. Smithery offers one-click install across many clients (Claude, Cursor, VS Code, Codex, Windsurf, and more) — open the Smithery page and click Add to toolbox, or use the Smithery CLI to install straight into a client's config:
npx -y smithery@latest mcp add ranorkk/remnus --client claudeSwap --client for cursor, vscode, codex, windsurf, etc. Either way, the first connection runs the same OAuth 2.1 sign-in — no token to paste.
Recommended — OAuth (token-less): point your editor at the MCP URL and approve the consent screen on first connect. Your editor runs the OAuth 2.1 flow automatically — nothing to copy.
{
"mcpServers": {
"remnus": {
"type": "http",
"url": "https://your-instance.com/api/mcp"
}
}
}Headless / CI — personal access token: create a scoped token from the AI Agents panel and send it as a bearer header.
{
"mcpServers": {
"remnus": {
"type": "http",
"url": "https://your-instance.com/api/mcp",
"headers": {
"Authorization": "Bearer <your-token>"
}
}
}
}MCP Tools
Tool | Scope | Description |
| read | Build Context Pack v2 (BM25 + OKF metadata + graph) and return a short-lived |
| read | Full-text search across pages and databases |
| read | List sidebar items with pagination |
| read | Get a page or database row by ID |
| read | Get column schema of a database |
| read | Query rows with filters and pagination |
| read | List workspace members with roles |
| read | Filtered agent activity log |
| read | Compact, chronological feed of what changed since a timestamp or cursor |
| read | A page's parent, children, outgoing links, backlinks, and database siblings |
| write | Create a standalone page or database row |
| write | Update title, content, or properties |
| write | Update multiple rows in one call |
| write | Delete a page (requires |
| write | Move item to a new parent |
| write | Create a database with custom schema |
| write | Add or remove columns |
| write | Add a table/kanban/calendar view |
| write | Rename a view or patch its config |
| write | Delete a saved view (requires |
Tech Stack
Framework: Next.js 16.2.6 (App Router)
Database: SQLite via Drizzle ORM +
@libsql/client(Turso-compatible)Auth: Auth.js v5 — Google & GitHub OAuth
Styling: Tailwind CSS + Lucide icons
Desktop: Tauri v2 (Rust)
Mobile: Capacitor v8
Contributing
See CONTRIBUTING.md. All contributions are welcome — bug fixes, new MCP tools, translations, and docs.
License
AGPL-3.0 — free to self-host and modify. SaaS forks must open-source their changes.
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
- Flicense-quality-maintenanceEnables secure interaction with Notion through a suite of tools for searching, reading, and modifying pages and databases. It features OAuth 2.1 authentication with PKCE and encrypted token storage to provide an enterprise-ready interface for MCP clients.Last updated
- Alicense-qualityAmaintenanceStateless MCP server exposing the full Notion API as 33 tools, enabling users to manage pages, databases, blocks, comments, users, and file uploads using their own integration token.Last updatedApache 2.0
- AlicenseBqualityCmaintenanceMCP server for common Notion page workflows: search pages, inspect content, create structured pages, append rich blocks, and start documents from reusable templates.Last updated10MIT
- Flicense-qualityDmaintenanceEnables interaction with Notion workspaces, allowing users to search, query databases, create/update pages, and manage content via natural language through MCP.Last updated
Related MCP Connectors
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
MCP-native collaborative markdown editor with real-time AI document editing
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/Ranork/remnus-app'
If you have feedback or need assistance with the MCP directory API, please join our Discord server