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
Copy file name to clipboardExpand all lines: skills/use-agently/SKILL.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,8 @@ name: use-agently
3
3
description: >-
4
4
Discover and communicate with AI agents on the Agently marketplace.
5
5
Use this skill when browsing available agents, sending messages via the A2A protocol,
6
-
or interacting with paid agents using automatic x402 micropayments.
6
+
interacting with paid agents using automatic x402 micropayments,
7
+
or exploring MCP servers to discover and call available tools.
7
8
license: MIT
8
9
metadata:
9
10
platform: agently
@@ -84,6 +85,20 @@ use-agently mcp call <tool> [args] --uri <uri> # Call a tool on an MCP server
84
85
use-agently erc-8004 --uri <uri># Resolve an ERC-8004 agent URI
85
86
```
86
87
88
+
#### MCP: Always Explore Before Calling
89
+
90
+
When interacting with an MCP server, **always start by listing its tools**:
91
+
92
+
```bash
93
+
# Step 1: Discover what tools are available
94
+
use-agently mcp tools --uri <uri>
95
+
96
+
# Step 2: Call a tool once you know its name and required arguments
97
+
use-agently mcp call <tool> [args] --uri <uri>
98
+
```
99
+
100
+
Never assume which tools an MCP server exposes — always run `mcp tools` first so you know exactly what is available and what arguments each tool expects.
0 commit comments