nlook-mcp 1.0.63 β 1.0.64
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 +74 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -116,6 +116,54 @@ After saving the configuration, restart Claude Desktop to load the NLook MCP ser
|
|
|
116
116
|
|
|
117
117
|
> **Note**: Workspaces (formerly called "Collections") are containers for organizing related documents together.
|
|
118
118
|
|
|
119
|
+
### π Workflows
|
|
120
|
+
|
|
121
|
+
| Tool | Description |
|
|
122
|
+
|------|-------------|
|
|
123
|
+
| `list_workflows` | List all workflows |
|
|
124
|
+
| `get_workflow` | Get workflow detail including nodes and edges |
|
|
125
|
+
| `create_workflow` | Create a new workflow |
|
|
126
|
+
| `update_workflow` | Update workflow title, description, nodes, edges |
|
|
127
|
+
| `delete_workflow` | Delete a workflow |
|
|
128
|
+
|
|
129
|
+
### π€ Agents
|
|
130
|
+
|
|
131
|
+
| Tool | Description |
|
|
132
|
+
|------|-------------|
|
|
133
|
+
| `list_agents` | List all AI agents with model and tools info |
|
|
134
|
+
| `get_agent` | Get agent detail (system prompt, config, tools) |
|
|
135
|
+
| `create_agent` | Create a new agent with model, system prompt, and tools |
|
|
136
|
+
| `update_agent` | Update agent settings |
|
|
137
|
+
| `delete_agent` | Delete an agent |
|
|
138
|
+
|
|
139
|
+
### β‘ Skills
|
|
140
|
+
|
|
141
|
+
| Tool | Description |
|
|
142
|
+
|------|-------------|
|
|
143
|
+
| `list_skills` | List all skills (prompt, tool, api, mcp types) |
|
|
144
|
+
| `get_skill` | Get skill detail including content and config |
|
|
145
|
+
| `create_skill` | Create a new skill |
|
|
146
|
+
| `update_skill` | Update skill settings |
|
|
147
|
+
| `delete_skill` | Delete a skill |
|
|
148
|
+
|
|
149
|
+
### π
Schedules
|
|
150
|
+
|
|
151
|
+
| Tool | Description |
|
|
152
|
+
|------|-------------|
|
|
153
|
+
| `list_schedules` | List all scheduled jobs |
|
|
154
|
+
| `create_schedule` | Create a schedule (cron-based, supports workflow/agent/api types) |
|
|
155
|
+
| `update_schedule` | Update schedule settings |
|
|
156
|
+
| `delete_schedule` | Delete a schedule |
|
|
157
|
+
|
|
158
|
+
### βΆοΈ Runs
|
|
159
|
+
|
|
160
|
+
| Tool | Description |
|
|
161
|
+
|------|-------------|
|
|
162
|
+
| `list_runs` | List all execution runs with status and metrics |
|
|
163
|
+
| `get_run` | Get run detail including step logs |
|
|
164
|
+
| `start_run` | Start a new run (workflow, agent, or API type) |
|
|
165
|
+
| `delete_run` | Delete a run |
|
|
166
|
+
|
|
119
167
|
### π§ Admin Tools (Admin Only)
|
|
120
168
|
|
|
121
169
|
| Tool | Description |
|
|
@@ -212,6 +260,32 @@ Add a progress update to task #456: "Completed 50% of the implementation"
|
|
|
212
260
|
Show all entries appended to task #789 in NLook
|
|
213
261
|
```
|
|
214
262
|
|
|
263
|
+
### AI Workflow Automation
|
|
264
|
+
|
|
265
|
+
```
|
|
266
|
+
Create a workflow called "Daily Report Generator"
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
```
|
|
270
|
+
Create an agent named "Blog Writer" with model qwen2.5 and system prompt:
|
|
271
|
+
"You are a professional blog writer. Rewrite the given text into an engaging blog post."
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
```
|
|
275
|
+
Create a schedule to run the Blog Writer agent every day at 9 AM:
|
|
276
|
+
- cron: 0 9 * * *
|
|
277
|
+
- execution type: agent
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
```
|
|
281
|
+
Start a run with the Blog Writer agent:
|
|
282
|
+
Input text: "μ€λ μλ‘μ΄ κΈ°λ₯μ μΆμνμ΅λλ€."
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
```
|
|
286
|
+
Show me all runs and their status
|
|
287
|
+
```
|
|
288
|
+
|
|
215
289
|
### Managing Workspaces
|
|
216
290
|
|
|
217
291
|
```
|