Resources
MCP resources provide structured, addressable data that clients can subscribe to or read on demand. Remnus exposes four resource templates.
remnus://workspace/{id}/schema
Get the full JSON schema of a workspace — all databases with their column definitions.
URI — remnus://workspace/{workspaceId}/schema
Mime type — application/json
Returns
{
"workspaceId": "abc123",
"databases": [
{
"id": "db456",
"title": "Work Plan",
"schema": [
{ "id": "title", "name": "Title", "type": "text" },
{ "id": "col_abc123", "name": "Status", "type": "select", "options": [
{ "value": "Backlog", "color": "default" },
{ "value": "Done", "color": "green" }
]}
]
}
]
}
remnus://page/{id}
Get the markdown content and properties of any page or database row.
URI — remnus://page/{pageId}
Mime type — text/markdown
List — resources/list returns the 20 most recently updated pages in the workspace. All other pages are accessible directly by their ID.
Returns — markdown with properties listed under a ## Properties heading, followed by the page content.
remnus://database/{id}/schema
Get the column schema of a specific database.
URI — remnus://database/{databaseId}/schema
Mime type — application/json
List — resources/list returns one entry per database in the workspace.
Returns
{
"schema": [
{ "id": "title", "name": "Title", "type": "text" },
{ "id": "col_abc123", "name": "Status", "type": "select", "options": [...] }
]
}
remnus://audit-log/recent
Get the 50 most recent audit log entries for the current MCP token.
URI — remnus://audit-log/recent
Mime type — application/json
Returns — array of activity records with tool, status, targetType, targetId, and createdAt.