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.

URIremnus://workspace/{workspaceId}/schema

Mime typeapplication/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.

URIremnus://page/{pageId}

Mime typetext/markdown

Listresources/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.

URIremnus://database/{databaseId}/schema

Mime typeapplication/json

Listresources/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.

URIremnus://audit-log/recent

Mime typeapplication/json

Returns — array of activity records with tool, status, targetType, targetId, and createdAt.

We use cookies We use analytics cookies to understand how Remnus is used and improve it. Privacy Policy