You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release v1.2.0: Exact Artifact Matching with foName Filter
- Add foName filter for exact artifact matching
- Enhanced MCP tool schema with filters.foName parameter
- Updated API documentation and examples
- Improved AI assistant integration with foName examples
- Perfect for precise F&O artifact discovery when exact names are known
Copy file name to clipboardExpand all lines: README.md
+39-4Lines changed: 39 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,15 +29,22 @@ Transform your F&O development workflow with AI-powered semantic search over 50,
29
29
-**Architects** understanding system patterns
30
30
-**Teams** accelerating development cycles
31
31
32
-
## ⚠️ Current Version Note (v1.1.2)
32
+
## 🆕 New in v1.2.0
33
33
34
-
**Cursor IDE Compatibility**: This version temporarily returns search results in **two formats simultaneously** to ensure compatibility across all Cursor IDE versions:
34
+
**Exact Artifact Matching**: Added `foName` filter for precise artifact lookup when you know the exact F&O artifact name.
35
+
36
+
**Key Features:**
37
+
-**foName Filter**: Find specific artifacts by exact name (e.g., "CustTable", "SalesTable")
38
+
-**AI Assistant Integration**: Enhanced MCP server instructions for exact matching
39
+
-**Improved Precision**: Perfect for when you know exact artifact names from requirements
40
+
41
+
## ⚠️ Compatibility Note
42
+
43
+
**Cursor IDE Compatibility**: This version maintains dual-format response support to ensure compatibility across all Cursor IDE versions:
35
44
36
45
1.**Structured Content** - For older clients with structured content display and MCP protocol compliance
37
46
2.**Embedded JSON in Text** - For newer clients with structured content display issues
38
47
39
-
This dual-format approach ensures the MCP server works reliably with both legacy and current Cursor IDE installations. Future versions may optimize this once MCP client standardization improves.
40
-
41
48
---
42
49
43
50
## 🔥 Real-World AI Assistant Scenarios
@@ -153,6 +160,7 @@ Update your MCP client configuration (replace `C:\\Downloads\\` with your extrac
153
160
154
161
## 💡 Example Queries
155
162
163
+
### Natural Language Search
156
164
```
157
165
"Find customer payment processing examples"
158
166
"Show me sales order validation patterns"
@@ -161,6 +169,27 @@ Update your MCP client configuration (replace `C:\\Downloads\\` with your extrac
161
169
"Show purchase order approval workflows"
162
170
```
163
171
172
+
### Exact Artifact Matching (New in v1.2.0)
173
+
```javascript
174
+
// When you know the exact artifact name
175
+
search_fo_artifacts({
176
+
query:"currency table",
177
+
filters: { foName:"Currency" }
178
+
})
179
+
180
+
// Find specific table by exact name
181
+
search_fo_artifacts({
182
+
query:"customer data",
183
+
filters: { foName:"CustTable" }
184
+
})
185
+
186
+
// Locate exact form
187
+
search_fo_artifacts({
188
+
query:"sales order form",
189
+
filters: { foName:"SalesTable" }
190
+
})
191
+
```
192
+
164
193
## 🔍 Search Features
165
194
166
195
### Adaptive Threshold Strategy
@@ -172,9 +201,15 @@ AI automatically retries searches with lower thresholds when no results found:
0 commit comments