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/mcp-cli-ent/SKILL.md
+98-26Lines changed: 98 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,38 +5,110 @@ description: Interact with Model Context Protocol (MCP) servers using the mcp-cl
5
5
6
6
# MCP CLI-Ent
7
7
8
-
A Go-based standalone CLI client for Model Context Protocol (MCP) servers. Allows direct interaction and persistent daemon-managed browser sessions.
8
+
A Go-based standalone CLI client for Model Context Protocol (MCP) servers. Agent-first: JSON output by default, structured for programmatic consumption.
9
9
10
10
## Quick Start
11
11
12
-
Find and call tools directly:
13
-
14
-
```bash
15
-
# List all tools and copy-pasteable call commands
16
-
mcp-cli-ent
17
-
18
-
# Call a tool with parameters (using the default 'call' or deprecated 'call-tool')
# Human-readable terminal output (terse, 1 line per tool)
26
+
mcp-cli-ent list-tools context7 --human
27
+
28
+
# Expanded human output (desc, params, call example)
29
+
mcp-cli-ent list-tools context7 --human --verbose
30
+
```
31
+
32
+
## Output Modes
33
+
34
+
### Bare invocation: Compact Discovery Index
35
+
36
+
Running `mcp-cli-ent` with no args returns a compact index — one `name` + `description` per tool, grouped by server. No params, no call examples, no schema. Use `list-tools <server>` when ready to call.
37
+
38
+
```json
39
+
{
40
+
"context7": [
41
+
{ "name": "resolve-library-id", "description": "Resolves a package name to a Context7 library ID" },
0 commit comments