@@ -60,7 +60,7 @@ allowed-tools: mcp__plugin_asana_asana__asana_create_task
6060To create a task:
6161
62621 . Gather task details from user
63- 2 . Use mcp ** plugin_asana_asana ** asana_create_task with the details
63+ 2 . Use mcp __ \1 __ asana_create_task with the details
64643 . Confirm creation to user
6565```
6666
@@ -98,7 +98,7 @@ allowed-tools: mcp__plugin_asana_asana__asana_search_tasks, mcp__plugin_asana_as
9898
9999To search for tasks:
100100
101- 1 . Use mcp ** plugin_asana_asana ** asana_search_tasks
101+ 1 . Use mcp __ \1 __ asana_search_tasks
1021022 . Provide search filters (assignee, project, etc.)
1031033 . Display results to user
104104
@@ -112,7 +112,7 @@ To create a task:
112112 - Project
113113 - Assignee
114114 - Due date
115- 2 . Use mcp ** plugin_asana_asana ** asana_create_task
115+ 2 . Use mcp __ \1 __ asana_create_task
1161163 . Show confirmation with task link
117117```
118118
@@ -136,10 +136,10 @@ Autonomous agent for generating Asana project status reports.
136136
137137## Process
138138
139- 1 . ** Query tasks** : Use mcp ** plugin_asana_asana ** asana_search_tasks to get all tasks
139+ 1 . ** Query tasks** : Use mcp __ \1 __ asana_search_tasks to get all tasks
1401402 . ** Analyze progress** : Calculate completion rates and identify blockers
1411413 . ** Generate report** : Create formatted status update
142- 4 . ** Update Asana** : Use mcp ** plugin_asana_asana ** asana_create_comment to post report
142+ 4 . ** Update Asana** : Use mcp __ \1 __ asana_create_comment to post report
143143
144144## Available Tools
145145
@@ -164,7 +164,7 @@ Single tool call with validation:
164164Steps:
165165
1661661 . Validate user provided required fields
167- 2 . Call mcp ** plugin_api_server ** create_item with validated data
167+ 2 . Call mcp __ \1 __ create_item with validated data
1681683 . Check for errors
1691694 . Display confirmation
170170```
@@ -176,9 +176,9 @@ Chain multiple tool calls:
176176``` markdown
177177Steps:
178178
179- 1 . Search for existing items: mcp ** plugin_api_server ** search
180- 2 . If not found, create new: mcp ** plugin_api_server ** create
181- 3 . Add metadata: mcp ** plugin_api_server ** update_metadata
179+ 1 . Search for existing items: mcp __ \1 __ search
180+ 2 . If not found, create new: mcp __ \1 __ create
181+ 3 . Add metadata: mcp __ \1 __ update_metadata
1821824 . Return final item ID
183183```
184184
@@ -191,7 +191,7 @@ Steps:
191191
1921921 . Get list of items to process
1931932 . For each item:
194- - Call mcp ** plugin_api_server ** update_item
194+ - Call mcp __ \1 __ update_item
195195 - Track success/failure
1961963 . Report results summary
197197```
@@ -203,7 +203,7 @@ Graceful error handling:
203203``` markdown
204204Steps:
205205
206- 1 . Try to call mcp ** plugin_api_server ** get_data
206+ 1 . Try to call mcp __ \1 __ get_data
2072072 . If error (rate limit, network, etc.):
208208 - Wait and retry (max 3 attempts)
209209 - If still failing, inform user
@@ -328,7 +328,7 @@ Steps:
328328``` markdown
329329Steps:
330330
331- 1 . Call mcp ** plugin_api_server ** search with filters:
331+ 1 . Call mcp __ \1 __ search with filters:
332332 - project_id: "123"
333333 - status: "active"
334334 - limit: 100
@@ -341,7 +341,7 @@ Steps:
341341Steps:
342342
3433431 . For each item ID:
344- - Call mcp ** plugin_api_server ** get_item
344+ - Call mcp __ \1 __ get_item
345345 - Process item
346346```
347347
@@ -350,7 +350,7 @@ Steps:
350350``` markdown
351351Steps:
352352
353- 1 . Call expensive MCP operation: mcp ** plugin_api_server ** analyze
353+ 1 . Call expensive MCP operation: mcp __ \1 __ analyze
3543542 . Store results in variable for reuse
3553553 . Use cached results for subsequent operations
3563564 . Only re-fetch if data changes
@@ -364,9 +364,9 @@ When tools don't depend on each other, call in parallel:
364364Steps:
365365
3663661 . Make parallel calls (Claude handles this automatically):
367- - mcp ** plugin_api_server ** get_project
368- - mcp ** plugin_api_server ** get_users
369- - mcp ** plugin_api_server ** get_tags
367+ - mcp __ \1 __ get_project
368+ - mcp __ \1 __ get_users
369+ - mcp __ \1 __ get_tags
3703702 . Wait for all to complete
3713713 . Combine results
372372```
@@ -381,7 +381,7 @@ Steps:
381381Steps:
382382
3833831 . Inform user: "Searching Asana tasks..."
384- 2 . Call mcp ** plugin_asana_asana ** asana_search_tasks
384+ 2 . Call mcp __ \1 __ asana_search_tasks
3853853 . Show progress: "Found 15 tasks, analyzing..."
3863864 . Present results
387387```
@@ -507,7 +507,7 @@ Use delete_item with item ID (ask for confirmation first)...
507507``` markdown
508508Steps:
509509
510- 1 . ** Search** : mcp ** plugin_api_server ** search with filters
510+ 1 . ** Search** : mcp __ \1 __ search with filters
5115112 . ** Filter** : Apply additional local filtering if needed
5125123 . ** Transform** : Process each result
5135134 . ** Present** : Format and display to user
0 commit comments