rossum-mcp 1.0.1__py3-none-any.whl → 1.1.1__py3-none-any.whl
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.
- rossum_mcp/__init__.py +1 -1
- rossum_mcp/server.py +18 -5
- rossum_mcp/tools/base.py +21 -2
- rossum_mcp/tools/catalog.py +3 -0
- rossum_mcp/tools/rules.py +180 -2
- rossum_mcp/tools/schemas/__init__.py +182 -0
- rossum_mcp/tools/schemas/models.py +151 -0
- rossum_mcp/tools/schemas/operations.py +183 -0
- rossum_mcp/tools/schemas/patching.py +202 -0
- rossum_mcp/tools/schemas/pruning.py +133 -0
- rossum_mcp/tools/schemas/validation.py +128 -0
- {rossum_mcp-1.0.1.dist-info → rossum_mcp-1.1.1.dist-info}/METADATA +26 -6
- rossum_mcp-1.1.1.dist-info/RECORD +30 -0
- rossum_mcp/tools/schemas.py +0 -800
- rossum_mcp-1.0.1.dist-info/RECORD +0 -25
- {rossum_mcp-1.0.1.dist-info → rossum_mcp-1.1.1.dist-info}/WHEEL +0 -0
- {rossum_mcp-1.0.1.dist-info → rossum_mcp-1.1.1.dist-info}/entry_points.txt +0 -0
- {rossum_mcp-1.0.1.dist-info → rossum_mcp-1.1.1.dist-info}/licenses/LICENSE +0 -0
- {rossum_mcp-1.0.1.dist-info → rossum_mcp-1.1.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rossum-mcp
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: MCP server for AI-powered Rossum orchestration: document workflows, debug pipelines automatically, and configure intelligent document processing through natural language.
|
|
5
5
|
Author-email: "Dan Stancl (Rossum AI)" <daniel.stancl@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -51,14 +51,14 @@ Dynamic: license-file
|
|
|
51
51
|
|
|
52
52
|
<div align="center">
|
|
53
53
|
|
|
54
|
-
**MCP server for AI-powered Rossum document processing.
|
|
54
|
+
**MCP server for AI-powered Rossum document processing. 59 tools for queues, schemas, hooks, engines, and more.**
|
|
55
55
|
|
|
56
56
|
[](https://stancld.github.io/rossum-agents/)
|
|
57
57
|
[](https://pypi.org/project/rossum-mcp/)
|
|
58
58
|
[](https://opensource.org/licenses/MIT)
|
|
59
59
|
[](https://pypi.org/project/rossum-mcp/)
|
|
60
60
|
[](https://codecov.io/gh/stancld/rossum-agents)
|
|
61
|
-
[](#available-tools)
|
|
62
62
|
|
|
63
63
|
[](https://github.com/rossumai/rossum-api)
|
|
64
64
|
[](https://modelcontextprotocol.io/)
|
|
@@ -127,9 +127,29 @@ Configure Claude Desktop (`~/Library/Application Support/Claude/claude_desktop_c
|
|
|
127
127
|
|
|
128
128
|
Set `ROSSUM_MCP_MODE=read-only` to disable all CREATE, UPDATE, and UPLOAD operations. Only GET and LIST operations will be available.
|
|
129
129
|
|
|
130
|
+
### Runtime Mode Switching
|
|
131
|
+
|
|
132
|
+
Two tools allow dynamic mode control:
|
|
133
|
+
|
|
134
|
+
| Tool | Description |
|
|
135
|
+
|------|-------------|
|
|
136
|
+
| `get_mcp_mode` | Returns current operation mode (`read-only` or `read-write`) |
|
|
137
|
+
| `set_mcp_mode` | Switches between modes at runtime |
|
|
138
|
+
|
|
139
|
+
**Use case:** Start in read-only mode for safe exploration, then switch to read-write when ready to make changes.
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
User: What mode are we in?
|
|
143
|
+
Assistant: [calls get_mcp_mode] → "read-only"
|
|
144
|
+
|
|
145
|
+
User: I'm ready to update the schema now.
|
|
146
|
+
Assistant: [calls set_mcp_mode("read-write")] → Mode switched to read-write
|
|
147
|
+
[calls update_schema(...)]
|
|
148
|
+
```
|
|
149
|
+
|
|
130
150
|
## Available Tools
|
|
131
151
|
|
|
132
|
-
The server provides **
|
|
152
|
+
The server provides **59 tools** organized into categories:
|
|
133
153
|
|
|
134
154
|
| Category | Tools | Description |
|
|
135
155
|
|----------|-------|-------------|
|
|
@@ -137,7 +157,7 @@ The server provides **56 tools** organized into categories:
|
|
|
137
157
|
| **Queue Management** | 9 | Create, configure, delete, and list queues |
|
|
138
158
|
| **Schema Management** | 8 | Define, modify, and delete field structures |
|
|
139
159
|
| **Engine Management** | 6 | Configure extraction and splitting engines |
|
|
140
|
-
| **Extensions & Rules** |
|
|
160
|
+
| **Extensions & Rules** | 14 | Webhooks, serverless functions, business rules |
|
|
141
161
|
| **Workspace Management** | 4 | Organize and delete workspaces |
|
|
142
162
|
| **User Management** | 3 | List users and roles |
|
|
143
163
|
| **Relations** | 4 | Annotation and document relations |
|
|
@@ -160,7 +180,7 @@ The server provides **56 tools** organized into categories:
|
|
|
160
180
|
`get_engine`, `list_engines`, `create_engine`, `update_engine`, `create_engine_field`, `get_engine_fields`
|
|
161
181
|
|
|
162
182
|
**Extensions & Rules:**
|
|
163
|
-
`get_hook`, `list_hooks`, `create_hook`, `update_hook`, `list_hook_templates`, `create_hook_from_template`, `list_hook_logs`, `delete_hook`, `get_rule`, `list_rules`, `delete_rule`
|
|
183
|
+
`get_hook`, `list_hooks`, `create_hook`, `update_hook`, `list_hook_templates`, `create_hook_from_template`, `list_hook_logs`, `delete_hook`, `get_rule`, `list_rules`, `create_rule`, `update_rule`, `patch_rule`, `delete_rule`
|
|
164
184
|
|
|
165
185
|
**Workspace Management:**
|
|
166
186
|
`get_workspace`, `list_workspaces`, `create_workspace`, `delete_workspace`
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
rossum_mcp/__init__.py,sha256=1kziDEWWbx1ItojN48mBY_ToABnNwVmR0VANUW2bQ1s,58
|
|
2
|
+
rossum_mcp/logging_config.py,sha256=OH5G6K4wH_g-m55FdRO1BYXIDtOop-lD9Ps_mTMQ8eY,4792
|
|
3
|
+
rossum_mcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
rossum_mcp/server.py,sha256=6UViyT90CP8LouYgaxwSrSEdgJY1h0tpUjuqPNvbRKk,2338
|
|
5
|
+
rossum_mcp/tools/__init__.py,sha256=70BqRQUnMqQL30VXO2PRJAIwCYu9JAC9B7nIvw0MvCY,1428
|
|
6
|
+
rossum_mcp/tools/annotations.py,sha256=bzi6AuJDIrKEx-xqjW0WwHSygDTWpVoqAuUTPsTZJeQ,7532
|
|
7
|
+
rossum_mcp/tools/base.py,sha256=xNHQeJoQvxjd6NLG_6rJpmXyHqyI-XByjmvumkwsFzQ,2796
|
|
8
|
+
rossum_mcp/tools/catalog.py,sha256=ZeMmjsvVMdUSS7gj5Mv8SO1y48G2Ak8XZtTpFkfUTPw,8246
|
|
9
|
+
rossum_mcp/tools/discovery.py,sha256=coZyzrEDN5CwaglobFQlSPRql69c6mcqjmNz6tulkBU,1288
|
|
10
|
+
rossum_mcp/tools/document_relations.py,sha256=7-mdRyRXXZRtRsL_ntZpfpWbMVYS5NUKW6yya4AzmNQ,2169
|
|
11
|
+
rossum_mcp/tools/email_templates.py,sha256=euAxDml6LY3BbElCPwHkHkvcyCGz6wjtg4HvgYzcuto,4649
|
|
12
|
+
rossum_mcp/tools/engines.py,sha256=6Q_gmATzb4eOwSjCmbsZAGm9unsogAfi2b-GyZ9Zyhc,6617
|
|
13
|
+
rossum_mcp/tools/hooks.py,sha256=v1yKA8TtWQiZQkY_LYUC5lm8WRX4qMSeIkI2Z8m1OK0,12830
|
|
14
|
+
rossum_mcp/tools/queues.py,sha256=QtGCt6pSMDmARoa9_L1fSzWjeMGFJSQLoW_sgSoBbwA,11063
|
|
15
|
+
rossum_mcp/tools/relations.py,sha256=ko1_v6meM2zCEmnhaDQt-T4uX_XJcRV4-X-Pxsu_prQ,2016
|
|
16
|
+
rossum_mcp/tools/rules.py,sha256=T-yZM9xMtZNZilOdm_go-9gIF3B6pxHS_qsLI_9OsWU,8214
|
|
17
|
+
rossum_mcp/tools/users.py,sha256=uVojYtUQs4KorQxgmmPRNJtExS4GbzyckZ1W4Y_0Qrk,3047
|
|
18
|
+
rossum_mcp/tools/workspaces.py,sha256=miV8XeJxdWQctx6RuYJXmnbNmNDL0SKcG-Senq6cWk0,3338
|
|
19
|
+
rossum_mcp/tools/schemas/__init__.py,sha256=lHnhEFGO5gvha8PGOeW-h7vaQLkpKVnEf2qa6QlCIUU,6192
|
|
20
|
+
rossum_mcp/tools/schemas/models.py,sha256=sDFA-whdMHO0BlfeRjOh2WGfN_AJGmgZ5WhOeIL2gBo,4754
|
|
21
|
+
rossum_mcp/tools/schemas/operations.py,sha256=CJyQEQlH8IG8PPMZdqWqkPAF1PwyZ_MOXHD0L7WyNKU,7099
|
|
22
|
+
rossum_mcp/tools/schemas/patching.py,sha256=8Qf1wC8l2y8liVe-LXgAooJ1UrJPrzgnq1dKYQ0CPGs,7499
|
|
23
|
+
rossum_mcp/tools/schemas/pruning.py,sha256=OafLiWMIiwZLVGYl-fouMbMV-7ayDnPSJ1mxGn7rg80,4718
|
|
24
|
+
rossum_mcp/tools/schemas/validation.py,sha256=u9TZ91QEUIRy7RECyV-WjSt2Cz0HVxLno0SHtZgecUE,5177
|
|
25
|
+
rossum_mcp-1.1.1.dist-info/licenses/LICENSE,sha256=5nqARgtmPvoIU-1o1az3i8Qi2WOHYIn03vD6haewvEI,1087
|
|
26
|
+
rossum_mcp-1.1.1.dist-info/METADATA,sha256=FY7FnUt4iozU7JyFszEfHmuuCI2J1Lus3TYvtFvTEno,9644
|
|
27
|
+
rossum_mcp-1.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
28
|
+
rossum_mcp-1.1.1.dist-info/entry_points.txt,sha256=eth2XELk0QGw9-_H3QL8PQ0OE-RDfzipbSvRy0EUc2c,54
|
|
29
|
+
rossum_mcp-1.1.1.dist-info/top_level.txt,sha256=cziqyWFE89hFhCfsq60Fk6JcwslNtgP01WHIJ5plMEM,11
|
|
30
|
+
rossum_mcp-1.1.1.dist-info/RECORD,,
|