Skip to content

Commit d8ce486

Browse files
cpoderclaude
andcommitted
Add MCP resources for flow development RAG + LOOP mapping fix (v1.7.0)
MCP Resources (3 embedded reference documents): - wm://docs/flow-language-reference: Complete WmPath format reference, all flow step types, LOOP RecordRef mapping rules, common mistakes - wm://docs/putnode-examples: Tested working examples for simple service, INVOKE+LOOP with RecordRef mapping, BRANCH conditional logic - wm://docs/adapter-service-reference: JDBC Select/Insert settings format Key discovery (from studying claudedemo.loop:getCustomers): - LOOP MAPCOPY MUST use type 4 (RecordRef) with doc type qualifier: /accounts;4;0;pkg.folder:docType/nestedField;1;0 - MAPSET for record arrays uses <array name="xml" type="record" depth="1"> - MAPDELETE after LOOP cleans up temporary variables E2E test added: create doc type -> mock service returning record array -> LOOP service extracting fields -> verify ["Alice","Bob","Carol"] 223 tools + 9 prompts + 3 resources. 155/155 E2E tests passing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent caba0c0 commit d8ce486

6 files changed

Lines changed: 544 additions & 2 deletions

File tree

mcp-server-rs/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mcp-server-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wm-mcp-server"
3-
version = "1.6.1"
3+
version = "1.7.0"
44
edition = "2024"
55
description = "MCP server for managing webMethods Integration Server via pure HTTP API"
66
license = "MIT"

mcp-server-rs/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ mod client;
22
mod config;
33
mod params;
44
mod prompts;
5+
mod resources;
56
mod server;
67

78
use client::ISClient;

0 commit comments

Comments
 (0)