@meldocio/mcp-stdio-proxy 1.0.26 → 1.0.27

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.
@@ -0,0 +1,389 @@
1
+ # Meldoc Search & Discovery Expert
2
+
3
+ Specialized in finding, exploring, and navigating Meldoc documentation effectively.
4
+
5
+ ## When to Use This Skill
6
+
7
+ Use this skill when:
8
+
9
+ - Looking for specific information across documents
10
+ - Exploring documentation structure
11
+ - Finding related documents
12
+ - Discovering connections between topics
13
+ - Auditing documentation coverage
14
+
15
+ ## Search Strategies
16
+
17
+ ### Full-Text Search
18
+
19
+ **Use `docs_search` for:**
20
+
21
+ - Finding documents by content
22
+ - Locating code examples
23
+ - Searching for specific terms
24
+ - Discovering mentions of features
25
+
26
+ **Best practices:**
27
+
28
+ ```javascript
29
+ // Good: Specific terms
30
+ docs_search({ query: "OAuth authentication" })
31
+
32
+ // Good: Technical terms
33
+ docs_search({ query: "API rate limiting" })
34
+
35
+ // Less effective: Too broad
36
+ docs_search({ query: "how to" })
37
+
38
+ // Less effective: Single common word
39
+ docs_search({ query: "user" })
40
+ ```
41
+
42
+ **Tips:**
43
+
44
+ - Use 2-4 word queries for best results
45
+ - Include technical terms when possible
46
+ - Try variations if first search doesn't work
47
+ - Combine with `docs_tree` to understand context
48
+
49
+ ### Document Tree Navigation
50
+
51
+ **Use `docs_tree` to:**
52
+
53
+ - Understand documentation hierarchy
54
+ - See parent-child relationships
55
+ - Find related documents by proximity
56
+ - Identify documentation gaps
57
+
58
+ **Example workflow:**
59
+
60
+ ```javascript
61
+ // 1. Get overall structure
62
+ docs_tree({ projectId: "project-id" })
63
+
64
+ // 2. Identify section of interest
65
+ // 3. Get specific documents in that section
66
+ docs_get({ docId: "..." })
67
+ ```
68
+
69
+ ### Link-Based Discovery
70
+
71
+ **Use `docs_links` to:**
72
+
73
+ - See what a document references
74
+ - Follow documentation trails
75
+ - Understand dependencies
76
+
77
+ **Use `docs_backlinks` to:**
78
+
79
+ - Find what references a document
80
+ - See document importance (more backlinks = more central)
81
+ - Discover unexpected connections
82
+
83
+ **Example:**
84
+
85
+ ```javascript
86
+ // Find what links TO a key document
87
+ docs_backlinks({ docId: "getting-started" })
88
+
89
+ // Find what a document links TO
90
+ docs_links({ docId: "api-reference" })
91
+ ```
92
+
93
+ ## Discovery Patterns
94
+
95
+ ### Pattern 1: Topic Exploration
96
+
97
+ When user asks "tell me about X":
98
+
99
+ 1. **Search for the topic:**
100
+
101
+ ```javascript
102
+ docs_search({ query: "X" })
103
+ ```
104
+
105
+ 2. **Get top results:**
106
+
107
+ ```javascript
108
+ docs_get({ docId: "result-1" })
109
+ docs_get({ docId: "result-2" })
110
+ ```
111
+
112
+ 3. **Find related:**
113
+
114
+ ```javascript
115
+ docs_links({ docId: "result-1" })
116
+ docs_backlinks({ docId: "result-1" })
117
+ ```
118
+
119
+ 4. **Synthesize and present** with links to all relevant docs using magic links: `[[doc-alias]]`
120
+
121
+ ### Pattern 2: Documentation Audit
122
+
123
+ To check coverage of a topic:
124
+
125
+ 1. **Search for the topic:**
126
+
127
+ ```javascript
128
+ docs_search({ query: "deployment" })
129
+ ```
130
+
131
+ 2. **Review results** - are there gaps?
132
+
133
+ 3. **Check tree structure:**
134
+
135
+ ```javascript
136
+ docs_tree({ projectId: "..." })
137
+ ```
138
+
139
+ 4. **Identify missing documentation**
140
+
141
+ 5. **Suggest new documents** to create
142
+
143
+ ### Pattern 3: Onboarding Journey
144
+
145
+ Help new users navigate documentation:
146
+
147
+ 1. **Start with overview:**
148
+
149
+ ```javascript
150
+ docs_get({ docId: "getting-started" })
151
+ ```
152
+
153
+ 2. **Show document tree** to visualize structure
154
+
155
+ 3. **Find prerequisite documents** using backlinks
156
+
157
+ 4. **Create reading path** with ordered links using `[[alias]]` format
158
+
159
+ 5. **Highlight key documents** for their role
160
+
161
+ ### Pattern 4: Troubleshooting Search
162
+
163
+ When user has a problem:
164
+
165
+ 1. **Search error messages exactly:**
166
+
167
+ ```javascript
168
+ docs_search({ query: "exact error message" })
169
+ ```
170
+
171
+ 2. **Search related concepts:**
172
+
173
+ ```javascript
174
+ docs_search({ query: "feature-name troubleshooting" })
175
+ ```
176
+
177
+ 3. **Check FAQ documents**
178
+
179
+ 4. **Find related configuration** documents
180
+
181
+ ## Advanced Techniques
182
+
183
+ ### Multi-Step Search
184
+
185
+ For complex queries, break into steps:
186
+
187
+ ```javascript
188
+ // User: "How do I set up authentication with OAuth for mobile apps?"
189
+
190
+ // Step 1: Find authentication docs
191
+ docs_search({ query: "OAuth authentication" })
192
+
193
+ // Step 2: Find mobile-specific docs
194
+ docs_search({ query: "mobile app setup" })
195
+
196
+ // Step 3: Get both and synthesize
197
+ docs_get({ docId: "oauth-doc" })
198
+ docs_get({ docId: "mobile-doc" })
199
+
200
+ // Step 4: Create combined answer with references
201
+ ```
202
+
203
+ ### Search Refinement
204
+
205
+ If first search returns too many results:
206
+
207
+ 1. Add more specific terms
208
+ 2. Include technical keywords
209
+ 3. Try exact phrases
210
+ 4. Search within specific project
211
+
212
+ If first search returns nothing:
213
+
214
+ 1. Try broader terms
215
+ 2. Search for synonyms
216
+ 3. Check spelling
217
+ 4. Use related concepts
218
+
219
+ ### Context-Aware Search
220
+
221
+ Consider user's current context:
222
+
223
+ ```javascript
224
+ // If user is viewing a specific document
225
+ docs_get({ docId: "current-doc" })
226
+
227
+ // Find related content
228
+ docs_links({ docId: "current-doc" })
229
+ docs_backlinks({ docId: "current-doc" })
230
+
231
+ // Search within that domain
232
+ docs_search({
233
+ query: "user's question",
234
+ projectId: "same-project-as-current-doc"
235
+ })
236
+ ```
237
+
238
+ ## Search Result Presentation
239
+
240
+ ### For Single Best Answer
241
+
242
+ ```markdown
243
+ Based on the documentation, here's how to [do task]:
244
+
245
+ [Clear, synthesized answer]
246
+
247
+ **Source:** [[doc-alias]]
248
+
249
+ **Related:**
250
+ - [[related-doc-1]]
251
+ - [[related-doc-2]]
252
+ ```
253
+
254
+ ### For Multiple Relevant Results
255
+
256
+ ```markdown
257
+ I found several documents about [topic]:
258
+
259
+ 1. **[[doc-title-1]]** - Brief description
260
+ - Key point from document
261
+
262
+ 2. **[[doc-title-2]]** - Brief description
263
+ - Key point from document
264
+
265
+ 3. **[[doc-title-3]]** - Brief description
266
+ - Key point from document
267
+
268
+ Which would you like to explore first?
269
+ ```
270
+
271
+ ### For No Results
272
+
273
+ ```markdown
274
+ I couldn't find documentation specifically about [topic].
275
+
276
+ However, I found these related documents:
277
+ - [[related-doc-1]] - about [related topic]
278
+ - [[related-doc-2]] - about [related topic]
279
+
280
+ Would you like me to:
281
+ 1. Create new documentation about [topic]?
282
+ 2. Search using different terms?
283
+ 3. Explore these related topics?
284
+ ```
285
+
286
+ ## Common Search Queries
287
+
288
+ ### "How do I...?"
289
+
290
+ 1. Search for task/action keywords
291
+ 2. Look for tutorial-style documents
292
+ 3. Find step-by-step guides
293
+ 4. Check related examples
294
+
295
+ ### "What is...?"
296
+
297
+ 1. Search for the term
298
+ 2. Look for overview/introduction docs
299
+ 3. Check glossary or concepts docs
300
+ 4. Find architectural documentation
301
+
302
+ ### "Why does...?"
303
+
304
+ 1. Search for the behavior/issue
305
+ 2. Look for troubleshooting docs
306
+ 3. Check FAQ documents
307
+ 4. Find design decision documents
308
+
309
+ ### "Where can I find...?"
310
+
311
+ 1. Use docs_tree to see structure
312
+ 2. Search for the resource type
313
+ 3. Check reference documentation
314
+ 4. Look for index/directory docs
315
+
316
+ ## Performance Tips
317
+
318
+ ### Efficient Search
319
+
320
+ ```javascript
321
+ // Good: One search with good keywords
322
+ docs_search({ query: "JWT token validation" })
323
+
324
+ // Less efficient: Multiple vague searches
325
+ docs_search({ query: "tokens" })
326
+ docs_search({ query: "JWT" })
327
+ docs_search({ query: "validation" })
328
+ ```
329
+
330
+ ### Smart Caching
331
+
332
+ Remember recently accessed documents:
333
+
334
+ - Reference them in conversation
335
+ - Avoid re-fetching
336
+ - Build on previous context
337
+
338
+ ### Batch Operations
339
+
340
+ When exploring a topic:
341
+
342
+ - Get tree structure once
343
+ - Note relevant doc IDs
344
+ - Fetch multiple docs
345
+ - Synthesize all at once
346
+
347
+ ## User Assistance Patterns
348
+
349
+ ### "I'm looking for..."
350
+
351
+ ```
352
+ 1. Clarify what they need
353
+ 2. Search with refined terms
354
+ 3. Present top 3-5 results with summaries
355
+ 4. Ask which to explore deeper
356
+ ```
357
+
358
+ ### "Show me everything about..."
359
+
360
+ ```
361
+ 1. Search for the topic
362
+ 2. Get document tree for structure
363
+ 3. Find all related documents via links/backlinks
364
+ 4. Present organized overview with all references using [[alias]] links
365
+ 5. Offer to dive into specific areas
366
+ ```
367
+
368
+ ### "Is there documentation on...?"
369
+
370
+ ```
371
+ 1. Search for the topic
372
+ 2. If found: Show it
373
+ 3. If not found:
374
+ - Suggest related docs
375
+ - Offer to create new documentation
376
+ - Check if it's covered elsewhere under different name
377
+ ```
378
+
379
+ ## Quality Indicators
380
+
381
+ Good documentation is:
382
+
383
+ - **Findable** - Appears in relevant searches
384
+ - **Connected** - Has links to/from other docs (use `[[alias]]` magic links)
385
+ - **Complete** - Answers the question fully
386
+ - **Current** - Recently updated
387
+ - **Clear** - Easy to understand
388
+
389
+ When helping users find information, prioritize documents with these qualities.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meldocio/mcp-stdio-proxy",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "MCP stdio proxy for meldoc - connects Claude Desktop and Claude Code to meldoc MCP API",
5
5
  "bin": {
6
6
  "meldoc-mcp": "bin/meldoc-mcp-proxy.js"