@rynko/mcp-server 1.0.16 → 1.0.18
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 +10 -10
- package/dist/index.js +94 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,18 +69,18 @@ Close and reopen Claude Desktop. You should see "rynko" in your available MCP se
|
|
|
69
69
|
|
|
70
70
|
## Available Tools
|
|
71
71
|
|
|
72
|
-
###
|
|
72
|
+
### Environment Tools
|
|
73
73
|
|
|
74
74
|
| Tool | Description |
|
|
75
75
|
|------|-------------|
|
|
76
|
-
| `list_workspaces` | List all
|
|
77
|
-
| `get_workspace` | Get details of a specific
|
|
76
|
+
| `list_workspaces` | List all environments you have access to |
|
|
77
|
+
| `get_workspace` | Get details of a specific environment |
|
|
78
78
|
|
|
79
79
|
### Template Tools
|
|
80
80
|
|
|
81
81
|
| Tool | Description |
|
|
82
82
|
|------|-------------|
|
|
83
|
-
| `list_templates` | List templates in
|
|
83
|
+
| `list_templates` | List templates in an environment |
|
|
84
84
|
| `get_template` | Get template details and schema |
|
|
85
85
|
| `create_draft_template` | Create a new draft template |
|
|
86
86
|
| `update_draft_template` | Update a draft template |
|
|
@@ -113,7 +113,7 @@ Close and reopen Claude Desktop. You should see "rynko" in your available MCP se
|
|
|
113
113
|
|
|
114
114
|
| Parameter | Required | Description |
|
|
115
115
|
|-----------|----------|-------------|
|
|
116
|
-
| `workspace_id` | Yes | The
|
|
116
|
+
| `workspace_id` | Yes | The environment ID |
|
|
117
117
|
| `template_id` | Yes | The template ID to generate from |
|
|
118
118
|
| `variables` | Yes | Variable values for the document |
|
|
119
119
|
| `format` | No | Output format: `pdf` (default) or `excel` |
|
|
@@ -131,11 +131,11 @@ Once configured, you can have natural conversations with Claude. Here are detail
|
|
|
131
131
|
### Example 1: List Templates and Generate a Document
|
|
132
132
|
|
|
133
133
|
**User Prompt:**
|
|
134
|
-
> "Show me all the templates in my
|
|
134
|
+
> "Show me all the templates in my environment and generate an invoice for Acme Corp"
|
|
135
135
|
|
|
136
136
|
**Expected Behavior:**
|
|
137
|
-
1. Claude calls `list_workspaces` to find your
|
|
138
|
-
2. Claude calls `list_templates` with your
|
|
137
|
+
1. Claude calls `list_workspaces` to find your environments
|
|
138
|
+
2. Claude calls `list_templates` with your environment ID
|
|
139
139
|
3. Claude displays available templates
|
|
140
140
|
4. Claude calls `get_template` to get the invoice template's variable schema
|
|
141
141
|
5. Claude calls `generate_document` with the template ID and variables:
|
|
@@ -186,7 +186,7 @@ Once configured, you can have natural conversations with Claude. Here are detail
|
|
|
186
186
|
|
|
187
187
|
**Expected Behavior:**
|
|
188
188
|
1. Claude calls `get_schema_reference` to understand the template schema format
|
|
189
|
-
2. Claude calls `list_workspaces` to find
|
|
189
|
+
2. Claude calls `list_workspaces` to find available environments
|
|
190
190
|
3. Claude calls `create_draft_template` with the full schema:
|
|
191
191
|
```json
|
|
192
192
|
{
|
|
@@ -223,7 +223,7 @@ Once configured, you can have natural conversations with Claude. Here are detail
|
|
|
223
223
|
|
|
224
224
|
- **Token Expiry**: PATs expire after max 30 days
|
|
225
225
|
- **Draft-Only**: Templates created via MCP are drafts until manually published
|
|
226
|
-
- **Audit Logging**: All operations are logged in your
|
|
226
|
+
- **Audit Logging**: All operations are logged in your project's activity feed
|
|
227
227
|
- **Revocable**: Instantly revoke tokens from your dashboard
|
|
228
228
|
|
|
229
229
|
## Troubleshooting
|
package/dist/index.js
CHANGED
|
@@ -49,10 +49,40 @@ if (!RYNKO_USER_TOKEN.startsWith('pat_')) {
|
|
|
49
49
|
}
|
|
50
50
|
// Initialize API client
|
|
51
51
|
const client = new RynkoClient(RYNKO_USER_TOKEN, RYNKO_API_URL);
|
|
52
|
+
// ── Session state: environment selection ──
|
|
53
|
+
// Per-session (per-process) environment tracking. The AI must call
|
|
54
|
+
// list_workspaces, confirm the choice with the user, then call
|
|
55
|
+
// select_environment before any environment-scoped tool will execute.
|
|
56
|
+
let selectedEnvironmentId = null;
|
|
57
|
+
// Tools that do NOT require an environment to be selected first.
|
|
58
|
+
const ENVIRONMENT_FREE_TOOLS = new Set([
|
|
59
|
+
'list_workspaces',
|
|
60
|
+
'select_environment',
|
|
61
|
+
'get_sdk_examples',
|
|
62
|
+
'parse_data_file',
|
|
63
|
+
'validate_schema',
|
|
64
|
+
'get_schema_reference',
|
|
65
|
+
'get_job_status',
|
|
66
|
+
]);
|
|
67
|
+
// The select_environment tool definition — injected client-side, not from the backend.
|
|
68
|
+
const SELECT_ENVIRONMENT_TOOL = {
|
|
69
|
+
name: 'select_environment',
|
|
70
|
+
description: 'Select the environment for this session. You MUST call list_workspaces first, present the options to the user, and let them choose before calling this tool. All subsequent environment-scoped operations (templates, documents, assets) will require the workspace_id to match the selected environment. Call this again to switch environments.',
|
|
71
|
+
inputSchema: {
|
|
72
|
+
type: 'object',
|
|
73
|
+
properties: {
|
|
74
|
+
workspace_id: {
|
|
75
|
+
type: 'string',
|
|
76
|
+
description: 'The environment ID chosen by the user from the list_workspaces results.',
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
required: ['workspace_id'],
|
|
80
|
+
},
|
|
81
|
+
};
|
|
52
82
|
// Create MCP server
|
|
53
83
|
const server = new Server({
|
|
54
84
|
name: 'rynko-mcp',
|
|
55
|
-
version: '1.0.
|
|
85
|
+
version: '1.0.17',
|
|
56
86
|
}, {
|
|
57
87
|
capabilities: {
|
|
58
88
|
tools: {},
|
|
@@ -66,14 +96,17 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
66
96
|
log('Handling ListTools request');
|
|
67
97
|
try {
|
|
68
98
|
const { tools } = await client.listTools();
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
99
|
+
// Inject the select_environment tool at the start
|
|
100
|
+
const allTools = [
|
|
101
|
+
SELECT_ENVIRONMENT_TOOL,
|
|
102
|
+
...tools.map((tool) => ({
|
|
72
103
|
name: tool.name,
|
|
73
104
|
description: tool.description,
|
|
74
105
|
inputSchema: tool.inputSchema,
|
|
75
106
|
})),
|
|
76
|
-
|
|
107
|
+
];
|
|
108
|
+
log(`Returning ${allTools.length} tools (${tools.length} from backend + select_environment)`);
|
|
109
|
+
return { tools: allTools };
|
|
77
110
|
}
|
|
78
111
|
catch (error) {
|
|
79
112
|
const message = error instanceof Error ? error.message : 'Unknown error';
|
|
@@ -87,6 +120,62 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
87
120
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
88
121
|
const { name, arguments: args } = request.params;
|
|
89
122
|
log(`Handling CallTool request: ${name}`);
|
|
123
|
+
// ── Handle select_environment locally ──
|
|
124
|
+
if (name === 'select_environment') {
|
|
125
|
+
const workspaceId = args?.workspace_id;
|
|
126
|
+
if (!workspaceId) {
|
|
127
|
+
return {
|
|
128
|
+
content: [{ type: 'text', text: 'Error: workspace_id is required.' }],
|
|
129
|
+
isError: true,
|
|
130
|
+
};
|
|
131
|
+
}
|
|
132
|
+
selectedEnvironmentId = workspaceId;
|
|
133
|
+
log(`Environment selected: ${workspaceId}`);
|
|
134
|
+
return {
|
|
135
|
+
content: [
|
|
136
|
+
{
|
|
137
|
+
type: 'text',
|
|
138
|
+
text: `Environment ${workspaceId} selected for this session. You can now use template, document, and asset tools with this environment.`,
|
|
139
|
+
},
|
|
140
|
+
],
|
|
141
|
+
isError: false,
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
// ── Enforce environment selection for environment-scoped tools ──
|
|
145
|
+
if (!ENVIRONMENT_FREE_TOOLS.has(name)) {
|
|
146
|
+
if (!selectedEnvironmentId) {
|
|
147
|
+
log(`BLOCKED ${name}: no environment selected`);
|
|
148
|
+
return {
|
|
149
|
+
content: [
|
|
150
|
+
{
|
|
151
|
+
type: 'text',
|
|
152
|
+
text: 'Error: No environment selected. Before using this tool you must:\n\n'
|
|
153
|
+
+ '1. Call list_workspaces to see available environments\n'
|
|
154
|
+
+ '2. Ask the user which environment to use\n'
|
|
155
|
+
+ '3. Call select_environment with the chosen workspace_id\n\n'
|
|
156
|
+
+ 'Then retry this operation.',
|
|
157
|
+
},
|
|
158
|
+
],
|
|
159
|
+
isError: true,
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
// Validate that workspace_id in args matches the selected environment
|
|
163
|
+
const passedWorkspaceId = args?.workspace_id;
|
|
164
|
+
if (passedWorkspaceId && passedWorkspaceId !== selectedEnvironmentId) {
|
|
165
|
+
log(`BLOCKED ${name}: environment_id mismatch (passed=${passedWorkspaceId}, selected=${selectedEnvironmentId})`);
|
|
166
|
+
return {
|
|
167
|
+
content: [
|
|
168
|
+
{
|
|
169
|
+
type: 'text',
|
|
170
|
+
text: `Error: environment_id "${passedWorkspaceId}" does not match the selected environment "${selectedEnvironmentId}". `
|
|
171
|
+
+ 'Call select_environment with the new workspace_id first if you want to switch environments.',
|
|
172
|
+
},
|
|
173
|
+
],
|
|
174
|
+
isError: true,
|
|
175
|
+
};
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
// ── Forward to backend ──
|
|
90
179
|
try {
|
|
91
180
|
const result = await client.callTool(name, args || {});
|
|
92
181
|
log(`Tool ${name} completed successfully`);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,2CAA2C,CAAC;AACnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AACjF,OAAO,EACL,qBAAqB,EACrB,sBAAsB,EACtB,SAAS,EACT,QAAQ,GACT,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C,qDAAqD;AACrD,SAAS,GAAG,CAAC,OAAe;IAC1B,OAAO,CAAC,KAAK,CAAC,eAAe,OAAO,EAAE,CAAC,CAAC;AAC1C,CAAC;AAED,qCAAqC;AACrC,MAAM,gBAAgB,GAAG,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;AACtD,MAAM,aAAa,GAAG,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC;AAEhD,GAAG,CAAC,8BAA8B,CAAC,CAAC;AACpC,GAAG,CAAC,kBAAkB,CAAC,CAAC,gBAAgB,EAAE,CAAC,CAAC;AAC5C,GAAG,CAAC,YAAY,aAAa,IAAI,qCAAqC,EAAE,CAAC,CAAC;AAE1E,iBAAiB;AACjB,IAAI,CAAC,gBAAgB,EAAE,CAAC;IACtB,GAAG,CAAC,0DAA0D,CAAC,CAAC;IAChE,GAAG,CAAC,wDAAwD,CAAC,CAAC;IAC9D,GAAG,CAAC,oDAAoD,CAAC,CAAC;IAC1D,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,IAAI,CAAC,gBAAgB,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,CAAC;IACzC,GAAG,CAAC,2DAA2D,CAAC,CAAC;IACjE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,wBAAwB;AACxB,MAAM,MAAM,GAAG,IAAI,WAAW,CAAC,gBAAgB,EAAE,aAAa,CAAC,CAAC;AAEhE,oBAAoB;AACpB,MAAM,MAAM,GAAG,IAAI,MAAM,CACvB;IACE,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED