roam-research-mcp 0.30.2 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -15
- package/build/Roam_Markdown_Cheatsheet.md +118 -0
- package/build/config/environment.js +3 -2
- package/build/markdown-utils.js +2 -2
- package/build/search/tag-search.js +15 -6
- package/build/server/roam-server.js +42 -99
- package/build/tools/operations/block-retrieval.js +74 -0
- package/build/tools/operations/blocks.js +0 -8
- package/build/tools/operations/outline.js +3 -0
- package/build/tools/operations/pages.js +2 -2
- package/build/tools/schemas.js +40 -8
- package/build/tools/tool-handlers.js +25 -0
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
# Roam Research MCP Server
|
|
2
4
|
|
|
3
5
|
[](https://badge.fury.io/js/roam-research-mcp)
|
|
@@ -8,6 +10,7 @@
|
|
|
8
10
|
A Model Context Protocol (MCP) server that provides comprehensive access to Roam Research's API functionality. This server enables AI assistants like Claude to interact with your Roam Research graph through a standardized interface. It supports standard input/output (stdio), HTTP Stream, and Server-Sent Events (SSE) communication. (A WORK-IN-PROGRESS, personal project not officially endorsed by Roam Research)
|
|
9
11
|
|
|
10
12
|
<a href="https://glama.ai/mcp/servers/fzfznyaflu"><img width="380" height="200" src="https://glama.ai/mcp/servers/fzfznyaflu/badge" alt="Roam Research MCP server" /></a>
|
|
13
|
+
<a href="https://mseep.ai/app/2b3pro-roam-research-mcp"><img width="380" height="200" src="https://mseep.net/pr/2b3pro-roam-research-mcp-badge.png" alt="MseeP.ai Security Assessment Badge" /></a>
|
|
11
14
|
|
|
12
15
|
## Installation and Usage
|
|
13
16
|
|
|
@@ -105,21 +108,23 @@ The server provides powerful tools for interacting with Roam Research:
|
|
|
105
108
|
- Enhanced documentation for Roam Tables in `Roam_Markdown_Cheatsheet.md` for clearer guidance on nesting.
|
|
106
109
|
|
|
107
110
|
1. `roam_fetch_page_by_title`: Fetch page content by title. Returns content in the specified format.
|
|
108
|
-
2. `
|
|
109
|
-
3. `
|
|
110
|
-
4. `
|
|
111
|
-
5. `
|
|
112
|
-
6. `
|
|
113
|
-
7. `
|
|
114
|
-
8. `
|
|
115
|
-
9. `
|
|
116
|
-
10. `
|
|
117
|
-
11. `
|
|
118
|
-
12. `
|
|
119
|
-
13. `
|
|
120
|
-
14. `
|
|
121
|
-
15. `
|
|
122
|
-
16. `
|
|
111
|
+
2. `roam_fetch_block_with_children`: Fetch a block by its UID along with its hierarchical children down to a specified depth. Automatically handles `((UID))` formatting.
|
|
112
|
+
3. `roam_create_page`: Create new pages with optional content and headings.
|
|
113
|
+
4. `roam_import_markdown`: Import nested markdown content under a specific block. (Internally uses `roam_process_batch_actions`.)
|
|
114
|
+
5. `roam_add_todo`: Add a list of todo items to today's daily page. (Internally uses `roam_process_batch_actions`.)
|
|
115
|
+
6. `roam_create_outline`: Add a structured outline to an existing page or block, with support for `children_view_type`. Best for simpler, sequential outlines. For complex nesting (e.g., tables), consider `roam_process_batch_actions`. If `page_title_uid` and `block_text_uid` are both blank, content defaults to the daily page. (Internally uses `roam_process_batch_actions`.)
|
|
116
|
+
7. `roam_search_block_refs`: Search for block references within a page or across the entire graph.
|
|
117
|
+
8. `roam_search_hierarchy`: Search for parent or child blocks in the block hierarchy.
|
|
118
|
+
9. `roam_find_pages_modified_today`: Find pages that have been modified today (since midnight).
|
|
119
|
+
10. `roam_search_by_text`: Search for blocks containing specific text.
|
|
120
|
+
11. `roam_search_by_status`: Search for blocks with a specific status (TODO/DONE) across all pages or within a specific page.
|
|
121
|
+
12. `roam_search_by_date`: Search for blocks or pages based on creation or modification dates.
|
|
122
|
+
13. `roam_search_for_tag`: Search for blocks containing a specific tag and optionally filter by blocks that also contain another tag nearby.
|
|
123
|
+
14. `roam_remember`: Add a memory or piece of information to remember. (Internally uses `roam_process_batch_actions`.)
|
|
124
|
+
15. `roam_recall`: Retrieve all stored memories.
|
|
125
|
+
16. `roam_datomic_query`: Execute a custom Datomic query on the Roam graph for advanced data retrieval beyond the available search tools.
|
|
126
|
+
17. `roam_markdown_cheatsheet`: Provides the content of the Roam Markdown Cheatsheet resource, optionally concatenated with custom instructions if `CUSTOM_INSTRUCTIONS_PATH` environment variable is set.
|
|
127
|
+
18. `roam_process_batch_actions`: Execute a sequence of low-level block actions (create, update, move, delete) in a single, non-transactional batch. Provides granular control for complex nesting like tables. (Note: For actions on existing blocks or within a specific page context, it is often necessary to first obtain valid page or block UIDs using tools like `roam_fetch_page_by_title`.)
|
|
123
128
|
|
|
124
129
|
**Deprecated Tools**:
|
|
125
130
|
The following tools have been deprecated as of `v.0.30.0` in favor of the more powerful and flexible `roam_process_batch_actions`:
|
|
@@ -135,6 +140,8 @@ The following tools have been deprecated as of `v.0.30.0` in favor of the more p
|
|
|
135
140
|
**Pre-computation and Context Loading:**
|
|
136
141
|
✅ Before attempting any Roam operations, **it is highly recommended** to load the `Roam Markdown Cheatsheet` resource into your context. This ensures you have immediate access to the correct Roam-flavored Markdown syntax, including details for tables, block references, and other special formatting. Example prompt: "Read the Roam cheatsheet first. Then, … <rest of your instructions>"
|
|
137
142
|
|
|
143
|
+
- **Specific notes and preferences** concerning my Roam Research graph. Users can add their own specific notes and preferences for working with their own graph in the Cheatsheet.
|
|
144
|
+
|
|
138
145
|
**Identifying Pages and Blocks for Manipulation:**
|
|
139
146
|
To ensure accurate operations, always strive to identify target pages and blocks using their Unique Identifiers (UIDs) whenever possible. While some tools accept case-sensitive text titles or content, UIDs provide unambiguous references, reducing the risk of errors due to ambiguity or changes in text.
|
|
140
147
|
|
|
@@ -207,6 +214,14 @@ This demonstrates moving a block from one location to another and simultaneously
|
|
|
207
214
|
"Move the block 'Important note about client feedback' (from page 'Meeting Notes 2025-06-30') under the 'Action Items' section on the 'Project Alpha Planning' page, and change its content to 'Client feedback reviewed and incorporated'."
|
|
208
215
|
```
|
|
209
216
|
|
|
217
|
+
### Example 4: Making a Table
|
|
218
|
+
|
|
219
|
+
This demonstrates moving a block from one location to another and simultaneously updating its content.
|
|
220
|
+
|
|
221
|
+
```
|
|
222
|
+
"In Roam, add a new table on the page "Fruity Tables" that compares four types of fruits: apples, oranges, grapes, and dates. Choose randomly four areas to compare."
|
|
223
|
+
```
|
|
224
|
+
|
|
210
225
|
---
|
|
211
226
|
|
|
212
227
|
## Setup
|
|
@@ -258,6 +273,9 @@ This demonstrates moving a block from one location to another and simultaneously
|
|
|
258
273
|
Note: The server will first try to load from .env file, then fall back to environment variables from MCP settings.
|
|
259
274
|
|
|
260
275
|
3. Build the server (make sure you're in the root directory of the MCP):
|
|
276
|
+
|
|
277
|
+
Note: Customize 'Roam_Markdown_Cheatsheet.md' with any notes and preferences specific to your graph BEFORE building.
|
|
278
|
+
|
|
261
279
|
```bash
|
|
262
280
|
cd roam-research-mcp
|
|
263
281
|
npm install
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
!!!! IMPORTANT: Always consult this cheatsheet for correct Roam-flavored markdown syntax BEFORE making any Roam tool calls.
|
|
2
|
+
|
|
3
|
+
# Roam Markdown Cheatsheet
|
|
4
|
+
|
|
5
|
+
⭐️📋 > > > START 📋⭐️
|
|
6
|
+
|
|
7
|
+
## Markdown Styles in Roam:
|
|
8
|
+
|
|
9
|
+
- **Bold Text here**
|
|
10
|
+
- **Italics Text here**
|
|
11
|
+
- External Link: `[Link text](URL)`
|
|
12
|
+
- Image Embed: ``
|
|
13
|
+
- ^^Highlighted Text here^^
|
|
14
|
+
- Bullet points: - or \* followed by a space and the text
|
|
15
|
+
- {{[[TODO]]}} todo text
|
|
16
|
+
- {{[[DONE]]}} todo text
|
|
17
|
+
- LaTeX: `$$E=mc^2$$` or `$$\sum_{i=1}^{n} i = \frac{n(n+1)}{2}$$`
|
|
18
|
+
|
|
19
|
+
## Roam-specific Markdown:
|
|
20
|
+
|
|
21
|
+
- Dates are in ordinal format: `[[January 1st, 2025]]`
|
|
22
|
+
- Block references: `((block-id))` This inserts a reference to the content of a specific block.
|
|
23
|
+
- Page references: `[[Page name]]` This creates a link to another page within your Roam graph.
|
|
24
|
+
- Link to blocks: `[Link Text](<((block-id))>)` This will link to the block.
|
|
25
|
+
- Embed block in a block: `{{[[embed]]: ((block-id))}}`
|
|
26
|
+
- To-do items: `{{[[TODO]]}} todo text` or `{{[[DONE]]}} todo text`
|
|
27
|
+
- Syntax highlighting for fenced code blocks (add language next to backticks before fenced code block - all in one block) - Example:
|
|
28
|
+
```javascript
|
|
29
|
+
const foo(bar) => {
|
|
30
|
+
return bar;
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
- Tags:
|
|
34
|
+
- one-word: `#word`
|
|
35
|
+
- multiple words: `#[[two or more words]]`
|
|
36
|
+
- hyphenated words: `#self-esteem`
|
|
37
|
+
|
|
38
|
+
## Roam Tables
|
|
39
|
+
|
|
40
|
+
Roam tables are created by nesting blocks under a `{{[[table]]}}` parent block. The key to correct table rendering is to ensure proper indentation levels for headers and data cells. Each subsequent header or data cell within a row must be nested one level deeper than the previous one.
|
|
41
|
+
|
|
42
|
+
- The `{{[[table]]}}` block acts as the container for the entire table.
|
|
43
|
+
- The first header block should be at level 2 (one level deeper than `{{[[table]]}}`).
|
|
44
|
+
- Subsequent header blocks must increase their level by one.
|
|
45
|
+
- Each row starts at level 2.
|
|
46
|
+
- The first data cell in a row is at level 3 (one level deeper than the row block).
|
|
47
|
+
- Subsequent data cells within the same row must increase their level by one.
|
|
48
|
+
|
|
49
|
+
Example of a 4x4 table structure:
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
{{[[table]]}}
|
|
53
|
+
- Header 1
|
|
54
|
+
- Header 2
|
|
55
|
+
- Header 3
|
|
56
|
+
- Header 4
|
|
57
|
+
- Row 1
|
|
58
|
+
- Data 1.1
|
|
59
|
+
- Data 1.2
|
|
60
|
+
- Data 1.3
|
|
61
|
+
- Data 1.4
|
|
62
|
+
- Row 2
|
|
63
|
+
- Data 2.1
|
|
64
|
+
- Data 2.2
|
|
65
|
+
- Data 2.3
|
|
66
|
+
- Data 2.4
|
|
67
|
+
- Row 3
|
|
68
|
+
- Data 3.1
|
|
69
|
+
- Data 3.2
|
|
70
|
+
- Data 3.3
|
|
71
|
+
- Data 3.4
|
|
72
|
+
- Row 4
|
|
73
|
+
- Data 4.1
|
|
74
|
+
- Data 4.2
|
|
75
|
+
- Data 4.3
|
|
76
|
+
- Data 4.4
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Roam Mermaid
|
|
80
|
+
|
|
81
|
+
This markdown structure represents a Roam Research Mermaid diagram. It begins with a `{{[[mermaid]]}}` block, which serves as the primary container for the diagram definition. Nested underneath this block, using bullet points, is the actual Mermaid syntax. Each bullet point corresponds to a line of the Mermaid graph definition, allowing Roam to render a visual diagram based on the provided code. For example, `graph TD` specifies a top-down directed graph, and subsequent bullet points define nodes and their connections.
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
- {{[[mermaid]]}}
|
|
85
|
+
- graph TD
|
|
86
|
+
- A[Start] --> B{Decision Point}
|
|
87
|
+
- B -->|Yes| C[Process A]
|
|
88
|
+
- B -->|No| D[Process B]
|
|
89
|
+
- C --> E[Merge Results]
|
|
90
|
+
- D --> E
|
|
91
|
+
- E --> F[End]
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Roam Kanban Boards
|
|
95
|
+
|
|
96
|
+
The provided markdown structure represents a Roam Research Kanban board. It starts with a `{{[[kanban]]}}` block, under which nested bullet points define the Kanban cards. Each top-level bullet point directly under `{{[[kanban]]}}` serves as a card title, and any further nested bullet points under a card title act as details or sub-items for that specific card.
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
- {{[[kanban]]}}
|
|
100
|
+
- card title 1
|
|
101
|
+
- bullet point 1.1
|
|
102
|
+
- bullet point 1.2
|
|
103
|
+
- card title 2
|
|
104
|
+
- bullet point 2.1
|
|
105
|
+
- bullet point 2.2
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Roam Hiccup
|
|
111
|
+
|
|
112
|
+
This markdown structure allows embedding custom HTML or other content using Hiccup syntax. The `:hiccup` keyword is followed by a Clojure-like vector defining the HTML elements and their attributes in one block. This provides a powerful way to inject dynamic or custom components into your Roam graph. Example: `:hiccup [:iframe {:width "600" :height "400" :src "https://www.example.com"}]`
|
|
113
|
+
|
|
114
|
+
## Specific notes and preferences concerning my Roam Research graph
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
⭐️📋 END (Cheat Sheet LOADED) < < < 📋⭐️
|
|
@@ -41,6 +41,7 @@ if (!API_TOKEN || !GRAPH_NAME) {
|
|
|
41
41
|
' ROAM_API_TOKEN=your-api-token\n' +
|
|
42
42
|
' ROAM_GRAPH_NAME=your-graph-name');
|
|
43
43
|
}
|
|
44
|
-
const HTTP_STREAM_PORT = process.env.HTTP_STREAM_PORT || '8088'; // Default to
|
|
44
|
+
const HTTP_STREAM_PORT = process.env.HTTP_STREAM_PORT || '8088'; // Default to 8088
|
|
45
45
|
const SSE_PORT = process.env.SSE_PORT || '8087'; // Default to 8087
|
|
46
|
-
|
|
46
|
+
const CORS_ORIGIN = process.env.CORS_ORIGIN || 'http://localhost:5678';
|
|
47
|
+
export { API_TOKEN, GRAPH_NAME, HTTP_STREAM_PORT, SSE_PORT, CORS_ORIGIN };
|
package/build/markdown-utils.js
CHANGED
|
@@ -268,8 +268,8 @@ function convertNodesToBlocks(nodes) {
|
|
|
268
268
|
}));
|
|
269
269
|
}
|
|
270
270
|
function convertToRoamActions(nodes, parentUid, order = 'last') {
|
|
271
|
-
// First convert nodes to blocks with UIDs
|
|
272
|
-
const blocks = convertNodesToBlocks(
|
|
271
|
+
// First convert nodes to blocks with UIDs
|
|
272
|
+
const blocks = convertNodesToBlocks(nodes);
|
|
273
273
|
const actions = [];
|
|
274
274
|
// Helper function to recursively create actions
|
|
275
275
|
function createBlockActions(blocks, parentUid, order) {
|
|
@@ -15,9 +15,8 @@ export class TagSearchHandler extends BaseSearchHandler {
|
|
|
15
15
|
targetPageUid = await SearchUtils.findPageByTitleOrUid(this.graph, page_title_uid);
|
|
16
16
|
}
|
|
17
17
|
// Build query to find blocks referencing the page
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
:where
|
|
18
|
+
let queryArgs = [primary_tag];
|
|
19
|
+
let queryWhereClauses = `
|
|
21
20
|
[?ref-page :node/title ?title-match]
|
|
22
21
|
[(clojure.string/lower-case ?title-match) ?lower-title]
|
|
23
22
|
[(clojure.string/lower-case ?title) ?search-title]
|
|
@@ -26,9 +25,19 @@ export class TagSearchHandler extends BaseSearchHandler {
|
|
|
26
25
|
[?b :block/string ?block-str]
|
|
27
26
|
[?b :block/uid ?block-uid]
|
|
28
27
|
[?b :block/page ?p]
|
|
29
|
-
[?p :node/title ?page-title]
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
[?p :node/title ?page-title]`;
|
|
29
|
+
let inClause = `:in $ ?title`;
|
|
30
|
+
if (targetPageUid) {
|
|
31
|
+
inClause += ` ?target-page-uid`;
|
|
32
|
+
queryArgs.push(targetPageUid);
|
|
33
|
+
queryWhereClauses += `
|
|
34
|
+
[?p :block/uid ?target-page-uid]`;
|
|
35
|
+
}
|
|
36
|
+
const queryStr = `[:find ?block-uid ?block-str ?page-title
|
|
37
|
+
${inClause}
|
|
38
|
+
:where
|
|
39
|
+
${queryWhereClauses}]`;
|
|
40
|
+
const rawResults = await q(this.graph, queryStr, queryArgs);
|
|
32
41
|
// Resolve block references in content
|
|
33
42
|
const resolvedResults = await Promise.all(rawResults.map(async ([uid, content, pageTitle]) => {
|
|
34
43
|
const resolvedContent = await resolveRefs(this.graph, content);
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
|
|
2
2
|
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
|
3
3
|
import { StreamableHTTPServerTransport } from '@modelcontextprotocol/sdk/server/streamableHttp.js';
|
|
4
|
-
import { SSEServerTransport } from '@modelcontextprotocol/sdk/server/sse.js';
|
|
5
4
|
import { CallToolRequestSchema, ErrorCode, ListResourcesRequestSchema, ReadResourceRequestSchema, McpError, ListToolsRequestSchema, } from '@modelcontextprotocol/sdk/types.js';
|
|
6
5
|
import { initializeGraph } from '@roam-research/roam-api-sdk';
|
|
7
|
-
import { API_TOKEN, GRAPH_NAME, HTTP_STREAM_PORT
|
|
6
|
+
import { API_TOKEN, GRAPH_NAME, HTTP_STREAM_PORT } from '../config/environment.js';
|
|
8
7
|
import { toolSchemas } from '../tools/schemas.js';
|
|
9
8
|
import { ToolHandlers } from '../tools/tool-handlers.js';
|
|
10
9
|
import { readFileSync } from 'node:fs';
|
|
@@ -12,6 +11,7 @@ import { join, dirname } from 'node:path';
|
|
|
12
11
|
import { createServer } from 'node:http';
|
|
13
12
|
import { fileURLToPath } from 'node:url';
|
|
14
13
|
import { findAvailablePort } from '../utils/net.js';
|
|
14
|
+
import { CORS_ORIGIN } from '../config/environment.js';
|
|
15
15
|
const __filename = fileURLToPath(import.meta.url);
|
|
16
16
|
const __dirname = dirname(__filename);
|
|
17
17
|
// Read package.json to get the version
|
|
@@ -20,7 +20,7 @@ const packageJson = JSON.parse(readFileSync(packageJsonPath, 'utf8'));
|
|
|
20
20
|
const serverVersion = packageJson.version;
|
|
21
21
|
export class RoamServer {
|
|
22
22
|
constructor() {
|
|
23
|
-
console.log('RoamServer: Constructor started.');
|
|
23
|
+
// console.log('RoamServer: Constructor started.');
|
|
24
24
|
try {
|
|
25
25
|
this.graph = initializeGraph({
|
|
26
26
|
token: API_TOKEN,
|
|
@@ -42,7 +42,7 @@ export class RoamServer {
|
|
|
42
42
|
if (Object.keys(toolSchemas).length === 0) {
|
|
43
43
|
throw new McpError(ErrorCode.InternalError, 'No tool schemas defined in src/tools/schemas.ts');
|
|
44
44
|
}
|
|
45
|
-
console.log('RoamServer: Constructor finished.');
|
|
45
|
+
// console.log('RoamServer: Constructor finished.');
|
|
46
46
|
}
|
|
47
47
|
// Refactored to accept a Server instance
|
|
48
48
|
setupRequestHandlers(mcpServer) {
|
|
@@ -52,34 +52,23 @@ export class RoamServer {
|
|
|
52
52
|
}));
|
|
53
53
|
// List available resources
|
|
54
54
|
mcpServer.setRequestHandler(ListResourcesRequestSchema, async () => {
|
|
55
|
-
const resources = [
|
|
56
|
-
{
|
|
57
|
-
name: 'Roam Markdown Cheatsheet',
|
|
58
|
-
uri: 'roam-markdown-cheatsheet.md',
|
|
59
|
-
type: 'text', // Changed from ResourceType.Text to string literal 'text'
|
|
60
|
-
description: 'A cheatsheet for Roam-flavored Markdown syntax.',
|
|
61
|
-
},
|
|
62
|
-
];
|
|
55
|
+
const resources = []; // No resources, as cheatsheet is now a tool
|
|
63
56
|
return { resources };
|
|
64
57
|
});
|
|
65
|
-
// Access resource
|
|
58
|
+
// Access resource - no resources handled directly here anymore
|
|
66
59
|
mcpServer.setRequestHandler(ReadResourceRequestSchema, async (request) => {
|
|
67
|
-
|
|
68
|
-
const cheatsheetPath = join(__dirname, '../../Roam_Markdown_Cheatsheet.md');
|
|
69
|
-
try {
|
|
70
|
-
const content = readFileSync(cheatsheetPath, 'utf8');
|
|
71
|
-
return { contents: [{ type: 'text', text: content, uri: request.params.uri }] };
|
|
72
|
-
}
|
|
73
|
-
catch (error) {
|
|
74
|
-
throw new McpError(ErrorCode.InternalError, `Resource not found: ${request.params.uri}`); // Changed to InternalError
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
throw new McpError(ErrorCode.InternalError, `Resource not found: ${request.params.uri}`); // Changed to InternalError
|
|
60
|
+
throw new McpError(ErrorCode.InternalError, `Resource not found: ${request.params.uri}`);
|
|
78
61
|
});
|
|
79
62
|
// Handle tool calls
|
|
80
63
|
mcpServer.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
81
64
|
try {
|
|
82
65
|
switch (request.params.name) {
|
|
66
|
+
case 'roam_markdown_cheatsheet': {
|
|
67
|
+
const content = await this.toolHandlers.getRoamMarkdownCheatsheet();
|
|
68
|
+
return {
|
|
69
|
+
content: [{ type: 'text', text: content }],
|
|
70
|
+
};
|
|
71
|
+
}
|
|
83
72
|
case 'roam_remember': {
|
|
84
73
|
const { memory, categories } = request.params.arguments;
|
|
85
74
|
const result = await this.toolHandlers.remember(memory, categories);
|
|
@@ -196,6 +185,13 @@ export class RoamServer {
|
|
|
196
185
|
content: [{ type: 'text', text: JSON.stringify(result, null, 2) }],
|
|
197
186
|
};
|
|
198
187
|
}
|
|
188
|
+
case 'roam_fetch_block_with_children': {
|
|
189
|
+
const { block_uid, depth } = request.params.arguments;
|
|
190
|
+
const result = await this.toolHandlers.fetchBlockWithChildren(block_uid, depth);
|
|
191
|
+
return {
|
|
192
|
+
content: [{ type: 'text', text: JSON.stringify(result, null, 2) }],
|
|
193
|
+
};
|
|
194
|
+
}
|
|
199
195
|
default:
|
|
200
196
|
throw new McpError(ErrorCode.MethodNotFound, `Unknown tool: ${request.params.name}`);
|
|
201
197
|
}
|
|
@@ -210,55 +206,65 @@ export class RoamServer {
|
|
|
210
206
|
});
|
|
211
207
|
}
|
|
212
208
|
async run() {
|
|
213
|
-
console.log('RoamServer: run() method started.');
|
|
209
|
+
// console.log('RoamServer: run() method started.');
|
|
214
210
|
try {
|
|
215
|
-
console.log('RoamServer: Attempting to create stdioMcpServer...');
|
|
211
|
+
// console.log('RoamServer: Attempting to create stdioMcpServer...');
|
|
216
212
|
const stdioMcpServer = new Server({
|
|
217
213
|
name: 'roam-research',
|
|
218
214
|
version: serverVersion,
|
|
219
215
|
}, {
|
|
220
216
|
capabilities: {
|
|
221
217
|
tools: {
|
|
222
|
-
...Object.fromEntries(Object.keys(toolSchemas).map((toolName) => [toolName,
|
|
218
|
+
...Object.fromEntries(Object.keys(toolSchemas).map((toolName) => [toolName, toolSchemas[toolName].inputSchema])),
|
|
223
219
|
},
|
|
224
220
|
resources: {
|
|
225
221
|
'roam-markdown-cheatsheet.md': {}
|
|
226
222
|
}
|
|
227
223
|
},
|
|
228
224
|
});
|
|
229
|
-
console.log('RoamServer: stdioMcpServer created. Setting up request handlers...');
|
|
225
|
+
// console.log('RoamServer: stdioMcpServer created. Setting up request handlers...');
|
|
230
226
|
this.setupRequestHandlers(stdioMcpServer);
|
|
231
|
-
console.log('RoamServer: stdioMcpServer handlers setup complete. Connecting transport...');
|
|
227
|
+
// console.log('RoamServer: stdioMcpServer handlers setup complete. Connecting transport...');
|
|
232
228
|
const stdioTransport = new StdioServerTransport();
|
|
233
229
|
await stdioMcpServer.connect(stdioTransport);
|
|
234
|
-
console.log('RoamServer: stdioTransport connected. Attempting to create httpMcpServer...');
|
|
230
|
+
// console.log('RoamServer: stdioTransport connected. Attempting to create httpMcpServer...');
|
|
235
231
|
const httpMcpServer = new Server({
|
|
236
232
|
name: 'roam-research-http', // A distinct name for the HTTP server
|
|
237
233
|
version: serverVersion,
|
|
238
234
|
}, {
|
|
239
235
|
capabilities: {
|
|
240
236
|
tools: {
|
|
241
|
-
...Object.fromEntries(Object.keys(toolSchemas).map((toolName) => [toolName,
|
|
237
|
+
...Object.fromEntries(Object.keys(toolSchemas).map((toolName) => [toolName, toolSchemas[toolName].inputSchema])),
|
|
242
238
|
},
|
|
243
239
|
resources: {
|
|
244
240
|
'roam-markdown-cheatsheet.md': {}
|
|
245
241
|
}
|
|
246
242
|
},
|
|
247
243
|
});
|
|
248
|
-
console.log('RoamServer: httpMcpServer created. Setting up request handlers...');
|
|
244
|
+
// console.log('RoamServer: httpMcpServer created. Setting up request handlers...');
|
|
249
245
|
this.setupRequestHandlers(httpMcpServer);
|
|
250
|
-
console.log('RoamServer: httpMcpServer handlers setup complete. Connecting transport...');
|
|
246
|
+
// console.log('RoamServer: httpMcpServer handlers setup complete. Connecting transport...');
|
|
251
247
|
const httpStreamTransport = new StreamableHTTPServerTransport({
|
|
252
248
|
sessionIdGenerator: () => Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15),
|
|
253
249
|
});
|
|
254
250
|
await httpMcpServer.connect(httpStreamTransport);
|
|
255
|
-
console.log('RoamServer: httpStreamTransport connected.');
|
|
251
|
+
// console.log('RoamServer: httpStreamTransport connected.');
|
|
256
252
|
const httpServer = createServer(async (req, res) => {
|
|
253
|
+
// Set CORS headers
|
|
254
|
+
res.setHeader('Access-Control-Allow-Origin', CORS_ORIGIN);
|
|
255
|
+
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
|
|
256
|
+
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
|
257
|
+
// Handle preflight OPTIONS requests
|
|
258
|
+
if (req.method === 'OPTIONS') {
|
|
259
|
+
res.writeHead(204); // No Content
|
|
260
|
+
res.end();
|
|
261
|
+
return;
|
|
262
|
+
}
|
|
257
263
|
try {
|
|
258
264
|
await httpStreamTransport.handleRequest(req, res);
|
|
259
265
|
}
|
|
260
266
|
catch (error) {
|
|
261
|
-
// console.error('HTTP Stream Server error:', error);
|
|
267
|
+
// // console.error('HTTP Stream Server error:', error);
|
|
262
268
|
if (!res.headersSent) {
|
|
263
269
|
res.writeHead(500, { 'Content-Type': 'application/json' });
|
|
264
270
|
res.end(JSON.stringify({ error: 'Internal Server Error' }));
|
|
@@ -267,70 +273,7 @@ export class RoamServer {
|
|
|
267
273
|
});
|
|
268
274
|
const availableHttpPort = await findAvailablePort(parseInt(HTTP_STREAM_PORT));
|
|
269
275
|
httpServer.listen(availableHttpPort, () => {
|
|
270
|
-
// console.log(`MCP Roam Research server running HTTP Stream on port ${availableHttpPort}`);
|
|
271
|
-
});
|
|
272
|
-
// SSE Server setup
|
|
273
|
-
const sseMcpServer = new Server({
|
|
274
|
-
name: 'roam-research-sse', // Distinct name for SSE server
|
|
275
|
-
version: serverVersion,
|
|
276
|
-
}, {
|
|
277
|
-
capabilities: {
|
|
278
|
-
tools: {
|
|
279
|
-
...Object.fromEntries(Object.keys(toolSchemas).map((toolName) => [toolName, {}])),
|
|
280
|
-
},
|
|
281
|
-
},
|
|
282
|
-
});
|
|
283
|
-
this.setupRequestHandlers(sseMcpServer);
|
|
284
|
-
const sseHttpServer = createServer(async (req, res) => {
|
|
285
|
-
const parseBody = (request) => {
|
|
286
|
-
return new Promise((resolve, reject) => {
|
|
287
|
-
let body = '';
|
|
288
|
-
request.on('data', (chunk) => {
|
|
289
|
-
body += chunk.toString();
|
|
290
|
-
});
|
|
291
|
-
request.on('end', () => {
|
|
292
|
-
try {
|
|
293
|
-
resolve(body ? JSON.parse(body) : {});
|
|
294
|
-
}
|
|
295
|
-
catch (error) {
|
|
296
|
-
reject(error);
|
|
297
|
-
}
|
|
298
|
-
});
|
|
299
|
-
request.on('error', reject);
|
|
300
|
-
});
|
|
301
|
-
};
|
|
302
|
-
try {
|
|
303
|
-
if (req.url === '/sse') {
|
|
304
|
-
const sseTransport = new SSEServerTransport('/sse', res);
|
|
305
|
-
await sseMcpServer.connect(sseTransport);
|
|
306
|
-
if (req.method === 'GET') {
|
|
307
|
-
await sseTransport.start();
|
|
308
|
-
}
|
|
309
|
-
else if (req.method === 'POST') {
|
|
310
|
-
const parsedBody = await parseBody(req);
|
|
311
|
-
await sseTransport.handlePostMessage(req, res, parsedBody);
|
|
312
|
-
}
|
|
313
|
-
else {
|
|
314
|
-
res.writeHead(405, { 'Content-Type': 'text/plain' });
|
|
315
|
-
res.end('Method Not Allowed');
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
else {
|
|
319
|
-
res.writeHead(404, { 'Content-Type': 'text/plain' });
|
|
320
|
-
res.end('Not Found');
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
catch (error) {
|
|
324
|
-
// console.error('SSE HTTP Server error:', error);
|
|
325
|
-
if (!res.headersSent) {
|
|
326
|
-
res.writeHead(500, { 'Content-Type': 'application/json' });
|
|
327
|
-
res.end(JSON.stringify({ error: 'Internal Server Error' }));
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
});
|
|
331
|
-
const availableSsePort = await findAvailablePort(parseInt(SSE_PORT));
|
|
332
|
-
sseHttpServer.listen(availableSsePort, () => {
|
|
333
|
-
// console.log(`MCP Roam Research server running SSE on port ${availableSsePort}`);
|
|
276
|
+
// // console.log(`MCP Roam Research server running HTTP Stream on port ${availableHttpPort}`);
|
|
334
277
|
});
|
|
335
278
|
}
|
|
336
279
|
catch (error) {
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { q } from '@roam-research/roam-api-sdk';
|
|
2
|
+
import { McpError, ErrorCode } from '@modelcontextprotocol/sdk/types.js';
|
|
3
|
+
export class BlockRetrievalOperations {
|
|
4
|
+
constructor(graph) {
|
|
5
|
+
this.graph = graph;
|
|
6
|
+
}
|
|
7
|
+
async fetchBlockWithChildren(block_uid_raw, depth = 4) {
|
|
8
|
+
if (!block_uid_raw) {
|
|
9
|
+
throw new McpError(ErrorCode.InvalidRequest, 'block_uid is required.');
|
|
10
|
+
}
|
|
11
|
+
const block_uid = block_uid_raw.replace(/^\(\((.*)\)\)$/, '$1');
|
|
12
|
+
const fetchChildren = async (parentUids, currentDepth) => {
|
|
13
|
+
if (currentDepth >= depth || parentUids.length === 0) {
|
|
14
|
+
return {};
|
|
15
|
+
}
|
|
16
|
+
const childrenQuery = `[:find ?parentUid ?childUid ?childString ?childOrder ?childHeading
|
|
17
|
+
:in $ [?parentUid ...]
|
|
18
|
+
:where [?parent :block/uid ?parentUid]
|
|
19
|
+
[?child :block/parents ?parent]
|
|
20
|
+
[?child :block/uid ?childUid]
|
|
21
|
+
[?child :block/string ?childString]
|
|
22
|
+
[?child :block/order ?childOrder]
|
|
23
|
+
[(get-else $ ?child :block/heading 0) ?childHeading]]`;
|
|
24
|
+
const childrenResults = await q(this.graph, childrenQuery, [parentUids]);
|
|
25
|
+
const childrenByParent = {};
|
|
26
|
+
const allChildUids = [];
|
|
27
|
+
for (const [parentUid, childUid, childString, childOrder, childHeading] of childrenResults) {
|
|
28
|
+
if (!childrenByParent[parentUid]) {
|
|
29
|
+
childrenByParent[parentUid] = [];
|
|
30
|
+
}
|
|
31
|
+
childrenByParent[parentUid].push({
|
|
32
|
+
uid: childUid,
|
|
33
|
+
string: childString,
|
|
34
|
+
order: childOrder,
|
|
35
|
+
heading: childHeading || undefined,
|
|
36
|
+
children: [],
|
|
37
|
+
});
|
|
38
|
+
allChildUids.push(childUid);
|
|
39
|
+
}
|
|
40
|
+
const grandChildren = await fetchChildren(allChildUids, currentDepth + 1);
|
|
41
|
+
for (const parentUid in childrenByParent) {
|
|
42
|
+
for (const child of childrenByParent[parentUid]) {
|
|
43
|
+
child.children = grandChildren[child.uid] || [];
|
|
44
|
+
}
|
|
45
|
+
childrenByParent[parentUid].sort((a, b) => a.order - b.order);
|
|
46
|
+
}
|
|
47
|
+
return childrenByParent;
|
|
48
|
+
};
|
|
49
|
+
try {
|
|
50
|
+
const rootBlockQuery = `[:find ?string ?order ?heading
|
|
51
|
+
:in $ ?blockUid
|
|
52
|
+
:where [?b :block/uid ?blockUid]
|
|
53
|
+
[?b :block/string ?string]
|
|
54
|
+
[?b :block/order ?order]
|
|
55
|
+
[(get-else $ ?b :block/heading 0) ?heading]]`;
|
|
56
|
+
const rootBlockResult = await q(this.graph, rootBlockQuery, [block_uid]);
|
|
57
|
+
if (!rootBlockResult) {
|
|
58
|
+
return null;
|
|
59
|
+
}
|
|
60
|
+
const [rootString, rootOrder, rootHeading] = rootBlockResult;
|
|
61
|
+
const childrenMap = await fetchChildren([block_uid], 0);
|
|
62
|
+
return {
|
|
63
|
+
uid: block_uid,
|
|
64
|
+
string: rootString,
|
|
65
|
+
order: rootOrder,
|
|
66
|
+
heading: rootHeading || undefined,
|
|
67
|
+
children: childrenMap[block_uid] || [],
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
catch (error) {
|
|
71
|
+
throw new McpError(ErrorCode.InternalError, `Failed to fetch block with children: ${error instanceof Error ? error.message : String(error)}`);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -96,14 +96,6 @@ export class BlockOperations {
|
|
|
96
96
|
// No heading parameter, use original parsing logic
|
|
97
97
|
const convertedContent = convertToRoamMarkdown(content);
|
|
98
98
|
nodes = parseMarkdown(convertedContent);
|
|
99
|
-
// If we have simple newline-separated content (no markdown formatting),
|
|
100
|
-
// and parseMarkdown created nodes at level 0, reverse them to maintain original order
|
|
101
|
-
if (nodes.every(node => node.level === 0 && !node.heading_level)) {
|
|
102
|
-
const lines = content.split('\n').filter(line => line.trim());
|
|
103
|
-
if (lines.length === nodes.length) {
|
|
104
|
-
nodes.reverse();
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
99
|
}
|
|
108
100
|
const actions = convertToRoamActions(nodes, targetPageUid, 'last');
|
|
109
101
|
// Execute batch actions to create the nested structure
|
|
@@ -218,6 +218,9 @@ export class OutlineOperations {
|
|
|
218
218
|
let result;
|
|
219
219
|
try {
|
|
220
220
|
// Validate level sequence
|
|
221
|
+
if (validOutline.length > 0 && validOutline[0].level !== 1) {
|
|
222
|
+
throw new McpError(ErrorCode.InvalidRequest, 'Invalid outline structure - the first item must be at level 1');
|
|
223
|
+
}
|
|
221
224
|
let prevLevel = 0;
|
|
222
225
|
for (const item of validOutline) {
|
|
223
226
|
// Level should not increase by more than 1 at a time
|
|
@@ -2,7 +2,7 @@ import { q, createPage as createRoamPage, batchActions } from '@roam-research/ro
|
|
|
2
2
|
import { McpError, ErrorCode } from '@modelcontextprotocol/sdk/types.js';
|
|
3
3
|
import { capitalizeWords } from '../helpers/text.js';
|
|
4
4
|
import { resolveRefs } from '../helpers/refs.js';
|
|
5
|
-
import { convertToRoamActions } from '../../markdown-utils.js';
|
|
5
|
+
import { convertToRoamActions, convertToRoamMarkdown } from '../../markdown-utils.js';
|
|
6
6
|
export class PageOperations {
|
|
7
7
|
constructor(graph) {
|
|
8
8
|
this.graph = graph;
|
|
@@ -84,7 +84,7 @@ export class PageOperations {
|
|
|
84
84
|
try {
|
|
85
85
|
// Convert content array to MarkdownNode format expected by convertToRoamActions
|
|
86
86
|
const nodes = content.map(block => ({
|
|
87
|
-
content: block.text,
|
|
87
|
+
content: convertToRoamMarkdown(block.text.replace(/^#+\s*/, '')),
|
|
88
88
|
level: block.level,
|
|
89
89
|
...(block.heading && { heading_level: block.heading }),
|
|
90
90
|
children: []
|
package/build/tools/schemas.js
CHANGED
|
@@ -50,7 +50,7 @@ export const toolSchemas = {
|
|
|
50
50
|
},
|
|
51
51
|
content: {
|
|
52
52
|
type: 'array',
|
|
53
|
-
description: 'Initial content for the page as an array of blocks with explicit nesting levels',
|
|
53
|
+
description: 'Initial content for the page as an array of blocks with explicit nesting levels. Note: While empty blocks (e.g., {"text": "", "level": 1}) can be used for visual spacing, they create empty entities in the database. Please use them sparingly and only for structural purposes, not for simple visual separation.',
|
|
54
54
|
items: {
|
|
55
55
|
type: 'object',
|
|
56
56
|
properties: {
|
|
@@ -80,7 +80,7 @@ export const toolSchemas = {
|
|
|
80
80
|
},
|
|
81
81
|
roam_create_outline: {
|
|
82
82
|
name: 'roam_create_outline',
|
|
83
|
-
description: 'Add a structured outline to an existing page or block (by title text or uid), with customizable nesting levels. Best for:\n- Adding supplementary structured content to existing pages\n- Creating temporary or working outlines (meeting notes, brainstorms)\n- Organizing thoughts or research under a specific topic\n- Breaking down subtopics or components of a larger concept\nBest for simpler, contiguous hierarchical content. For complex nesting (e.g., tables) or granular control over block placement, consider `roam_process_batch_actions` instead.\nIMPORTANT: Before using this tool, ensure that you have loaded into context the \'Roam Markdown Cheatsheet\' resource.',
|
|
83
|
+
description: 'Add a structured outline to an existing page or block (by title text or uid), with customizable nesting levels. The `outline` parameter defines *new* blocks to be created. To nest content under an *existing* block, provide its UID or exact text in `block_text_uid`, and ensure the `outline` array contains only the child blocks with levels relative to that parent. Including the parent block\'s text in the `outline` array will create a duplicate block. Best for:\n- Adding supplementary structured content to existing pages\n- Creating temporary or working outlines (meeting notes, brainstorms)\n- Organizing thoughts or research under a specific topic\n- Breaking down subtopics or components of a larger concept\nBest for simpler, contiguous hierarchical content. For complex nesting (e.g., tables) or granular control over block placement, consider `roam_process_batch_actions` instead.\nIMPORTANT: Before using this tool, ensure that you have loaded into context the \'Roam Markdown Cheatsheet\' resource.',
|
|
84
84
|
inputSchema: {
|
|
85
85
|
type: 'object',
|
|
86
86
|
properties: {
|
|
@@ -94,7 +94,7 @@ export const toolSchemas = {
|
|
|
94
94
|
},
|
|
95
95
|
outline: {
|
|
96
96
|
type: 'array',
|
|
97
|
-
description: 'Array of outline items with block text and explicit nesting level',
|
|
97
|
+
description: 'Array of outline items with block text and explicit nesting level. Must be a valid hierarchy: the first item must be level 1, and subsequent levels cannot increase by more than 1 at a time (e.g., a level 3 cannot follow a level 1).',
|
|
98
98
|
items: {
|
|
99
99
|
type: 'object',
|
|
100
100
|
properties: {
|
|
@@ -104,7 +104,7 @@ export const toolSchemas = {
|
|
|
104
104
|
},
|
|
105
105
|
level: {
|
|
106
106
|
type: 'integer',
|
|
107
|
-
description: 'Indentation level (1-10, where 1 is top level)',
|
|
107
|
+
description: 'Indentation level (1-10, where 1 is top level). Levels must be sequential and cannot be skipped (e.g., a level 3 item cannot directly follow a level 1 item).',
|
|
108
108
|
minimum: 1,
|
|
109
109
|
maximum: 10
|
|
110
110
|
},
|
|
@@ -155,7 +155,7 @@ export const toolSchemas = {
|
|
|
155
155
|
},
|
|
156
156
|
order: {
|
|
157
157
|
type: 'string',
|
|
158
|
-
description: 'Optional: Where to add the content
|
|
158
|
+
description: 'Optional: Where to add the content undeIs this tr the parent ("first" or "last")',
|
|
159
159
|
enum: ['first', 'last'],
|
|
160
160
|
default: 'first'
|
|
161
161
|
}
|
|
@@ -322,6 +322,15 @@ export const toolSchemas = {
|
|
|
322
322
|
required: ['start_date', 'type', 'scope']
|
|
323
323
|
}
|
|
324
324
|
},
|
|
325
|
+
roam_markdown_cheatsheet: {
|
|
326
|
+
name: 'roam_markdown_cheatsheet',
|
|
327
|
+
description: 'Provides the content of the Roam Markdown Cheatsheet resource, optionally concatenated with custom instructions if CUSTOM_INSTRUCTIONS_PATH is set.',
|
|
328
|
+
inputSchema: {
|
|
329
|
+
type: 'object',
|
|
330
|
+
properties: {},
|
|
331
|
+
required: [],
|
|
332
|
+
},
|
|
333
|
+
},
|
|
325
334
|
roam_remember: {
|
|
326
335
|
name: 'roam_remember',
|
|
327
336
|
description: 'Add a memory or piece of information to remember, stored on the daily page with MEMORIES_TAG tag and optional categories. \nNOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use [alias]([[link]]) syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words).\nIMPORTANT: Before using this tool, ensure that you have loaded into context the \'Roam Markdown Cheatsheet\' resource.',
|
|
@@ -436,8 +445,11 @@ export const toolSchemas = {
|
|
|
436
445
|
description: 'The UID of the parent block or page.'
|
|
437
446
|
},
|
|
438
447
|
"order": {
|
|
439
|
-
|
|
440
|
-
|
|
448
|
+
oneOf: [
|
|
449
|
+
{ type: 'integer', description: 'Zero-indexed position.' },
|
|
450
|
+
{ type: 'string', enum: ['first', 'last'], description: 'Position keyword.' }
|
|
451
|
+
],
|
|
452
|
+
description: 'The position of the block under its parent (e.g., 0, 1, 2) or a keyword ("first", "last").'
|
|
441
453
|
}
|
|
442
454
|
}
|
|
443
455
|
}
|
|
@@ -448,5 +460,25 @@ export const toolSchemas = {
|
|
|
448
460
|
},
|
|
449
461
|
required: ['actions']
|
|
450
462
|
}
|
|
451
|
-
}
|
|
463
|
+
},
|
|
464
|
+
roam_fetch_block_with_children: {
|
|
465
|
+
name: 'roam_fetch_block_with_children',
|
|
466
|
+
description: 'Fetch a block by its UID along with its hierarchical children down to a specified depth.',
|
|
467
|
+
inputSchema: {
|
|
468
|
+
type: 'object',
|
|
469
|
+
properties: {
|
|
470
|
+
block_uid: {
|
|
471
|
+
type: 'string',
|
|
472
|
+
description: 'The UID of the block to fetch.'
|
|
473
|
+
},
|
|
474
|
+
depth: {
|
|
475
|
+
type: 'integer',
|
|
476
|
+
description: 'Optional: The number of levels deep to fetch children. Defaults to 4.',
|
|
477
|
+
minimum: 0,
|
|
478
|
+
maximum: 10
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
required: ['block_uid']
|
|
482
|
+
},
|
|
483
|
+
},
|
|
452
484
|
};
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
import * as fs from 'fs';
|
|
2
|
+
import * as path from 'path';
|
|
3
|
+
import { fileURLToPath } from 'url';
|
|
1
4
|
import { PageOperations } from './operations/pages.js';
|
|
2
5
|
import { BlockOperations } from './operations/blocks.js';
|
|
6
|
+
import { BlockRetrievalOperations } from './operations/block-retrieval.js'; // New import
|
|
3
7
|
import { SearchOperations } from './operations/search/index.js';
|
|
4
8
|
import { MemoryOperations } from './operations/memory.js';
|
|
5
9
|
import { TodoOperations } from './operations/todos.js';
|
|
@@ -11,6 +15,7 @@ export class ToolHandlers {
|
|
|
11
15
|
this.graph = graph;
|
|
12
16
|
this.pageOps = new PageOperations(graph);
|
|
13
17
|
this.blockOps = new BlockOperations(graph);
|
|
18
|
+
this.blockRetrievalOps = new BlockRetrievalOperations(graph); // Initialize new instance
|
|
14
19
|
this.searchOps = new SearchOperations(graph);
|
|
15
20
|
this.memoryOps = new MemoryOperations(graph);
|
|
16
21
|
this.todoOps = new TodoOperations(graph);
|
|
@@ -28,6 +33,9 @@ export class ToolHandlers {
|
|
|
28
33
|
return this.pageOps.fetchPageByTitle(title, format);
|
|
29
34
|
}
|
|
30
35
|
// Block Operations
|
|
36
|
+
async fetchBlockWithChildren(block_uid, depth) {
|
|
37
|
+
return this.blockRetrievalOps.fetchBlockWithChildren(block_uid, depth);
|
|
38
|
+
}
|
|
31
39
|
// Search Operations
|
|
32
40
|
async searchByStatus(status, page_title_uid, include, exclude) {
|
|
33
41
|
return this.searchOps.searchByStatus(status, page_title_uid, include, exclude);
|
|
@@ -74,4 +82,21 @@ export class ToolHandlers {
|
|
|
74
82
|
async processBatch(actions) {
|
|
75
83
|
return this.batchOps.processBatch(actions);
|
|
76
84
|
}
|
|
85
|
+
async getRoamMarkdownCheatsheet() {
|
|
86
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
87
|
+
const __dirname = path.dirname(__filename);
|
|
88
|
+
const cheatsheetPath = path.join(__dirname, '../../Roam_Markdown_Cheatsheet.md');
|
|
89
|
+
let cheatsheetContent = fs.readFileSync(cheatsheetPath, 'utf-8');
|
|
90
|
+
const customInstructionsPath = process.env.CUSTOM_INSTRUCTIONS_PATH;
|
|
91
|
+
if (customInstructionsPath && fs.existsSync(customInstructionsPath)) {
|
|
92
|
+
try {
|
|
93
|
+
const customInstructionsContent = fs.readFileSync(customInstructionsPath, 'utf-8');
|
|
94
|
+
cheatsheetContent += `\n\n${customInstructionsContent}`;
|
|
95
|
+
}
|
|
96
|
+
catch (error) {
|
|
97
|
+
console.warn(`Could not read custom instructions file at ${customInstructionsPath}: ${error}`);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
return cheatsheetContent;
|
|
101
|
+
}
|
|
77
102
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "roam-research-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.0",
|
|
4
4
|
"description": "A Model Context Protocol (MCP) server for Roam Research API integration",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": {
|
|
@@ -28,10 +28,15 @@
|
|
|
28
28
|
"build"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
-
"build": "tsc && chmod 755 build/index.js",
|
|
31
|
+
"build": "tsc && cp Roam_Markdown_Cheatsheet.md build/Roam_Markdown_Cheatsheet.md && chmod 755 build/index.js",
|
|
32
|
+
"clean": "rm -rf build",
|
|
32
33
|
"watch": "tsc --watch",
|
|
33
34
|
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
|
|
34
|
-
"start": "node build/index.js"
|
|
35
|
+
"start": "node build/index.js",
|
|
36
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
37
|
+
"release:patch": "npm version patch && git push origin v$(node -p \"require('./package.json').version\")",
|
|
38
|
+
"release:minor": "npm version minor && git push origin v$(node -p \"require('./package.json').version\")",
|
|
39
|
+
"release:major": "npm version major && git push origin v$(node -p \"require('./package.json').version\")"
|
|
35
40
|
},
|
|
36
41
|
"dependencies": {
|
|
37
42
|
"@modelcontextprotocol/sdk": "^1.13.2",
|