@apify/mcpc 0.3.0-beta.1 → 0.3.0
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.
- package/CHANGELOG.md +4 -1
- package/README.md +0 -48
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.0] - 2026-05-20
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- `mcpc connect` (with no arguments) now auto-discovers standard MCP config files (`.mcp.json`, `mcp.json`, `.cursor/mcp.json`, `.vscode/mcp.json`, `~/.claude.json`, Claude Desktop, Windsurf, Kiro, etc.) in the current directory and home directory, and connects every server defined across them. Entries with duplicate session names are deduplicated (project-scoped files win over global ones). VS Code's `"servers"` key is also supported.
|
|
@@ -269,7 +271,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
269
271
|
- Interactive shell mode
|
|
270
272
|
- JSON output mode for scripting
|
|
271
273
|
|
|
272
|
-
[Unreleased]: https://github.com/apify/mcpc/compare/v0.
|
|
274
|
+
[Unreleased]: https://github.com/apify/mcpc/compare/v0.3.0...HEAD
|
|
275
|
+
[0.3.0]: https://github.com/apify/mcpc/compare/v0.2.6...v0.3.0
|
|
273
276
|
[0.2.6]: https://github.com/apify/mcpc/compare/v0.2.5...v0.2.6
|
|
274
277
|
[0.2.5]: https://github.com/apify/mcpc/compare/v0.2.4...v0.2.5
|
|
275
278
|
[0.2.4]: https://github.com/apify/mcpc/compare/v0.2.3...v0.2.4
|
package/README.md
CHANGED
|
@@ -127,54 +127,6 @@ mcpc @fs tools-list
|
|
|
127
127
|
<!-- AUTO-GENERATED: mcpc --help -->
|
|
128
128
|
|
|
129
129
|
```
|
|
130
|
-
Usage: mcpc [<@session>] [<command>] [options]
|
|
131
|
-
|
|
132
|
-
Universal command-line client for the Model Context Protocol (MCP).
|
|
133
|
-
|
|
134
|
-
Commands:
|
|
135
|
-
connect <server> [@session] Connect to an MCP server and start a new named @session
|
|
136
|
-
close <@session> Close a session
|
|
137
|
-
restart <@session> Restart a session (losing all state)
|
|
138
|
-
shell <@session> Open interactive shell for a session
|
|
139
|
-
login <server> Interactively login to a server using OAuth and save profile
|
|
140
|
-
logout <server> Delete an OAuth profile for a server
|
|
141
|
-
clean [resources...] Clean up mcpc data (sessions, profiles, logs, all)
|
|
142
|
-
grep <pattern> Search tools and instructions across all active sessions
|
|
143
|
-
x402 [subcommand] [args...] Configure an x402 payment wallet (EXPERIMENTAL)
|
|
144
|
-
help [command] [subcommand] Show help for a specific command
|
|
145
|
-
|
|
146
|
-
Options:
|
|
147
|
-
--json Output in JSON format for scripting
|
|
148
|
-
--verbose Enable debug logging
|
|
149
|
-
--profile <name> OAuth profile for the server ("default" if not provided)
|
|
150
|
-
--timeout <seconds> Request timeout in seconds (default: 300)
|
|
151
|
-
--max-chars <n> Truncate output to n characters (ignored in --json mode)
|
|
152
|
-
--insecure Skip TLS certificate verification (for self-signed certs)
|
|
153
|
-
-v, --version Output the version number
|
|
154
|
-
-h, --help Display help
|
|
155
|
-
|
|
156
|
-
MCP session commands (after connecting):
|
|
157
|
-
<@session> Show MCP server info, capabilities, and tools overview
|
|
158
|
-
<@session> grep <pattern> Search tools and instructions
|
|
159
|
-
<@session> tools-list List all server tools
|
|
160
|
-
<@session> tools-get <name> Get tool details and schema
|
|
161
|
-
<@session> tools-call <name> [arg:=val ... | <json> | <stdin]
|
|
162
|
-
<@session> prompts-list
|
|
163
|
-
<@session> prompts-get <name> [arg:=val ... | <json> | <stdin]
|
|
164
|
-
<@session> resources-list
|
|
165
|
-
<@session> resources-read <uri>
|
|
166
|
-
<@session> resources-subscribe <uri>
|
|
167
|
-
<@session> resources-unsubscribe <uri>
|
|
168
|
-
<@session> resources-templates-list
|
|
169
|
-
<@session> tasks-list
|
|
170
|
-
<@session> tasks-get <taskId>
|
|
171
|
-
<@session> tasks-result <taskId>
|
|
172
|
-
<@session> tasks-cancel <taskId>
|
|
173
|
-
<@session> logging-set-level <level>
|
|
174
|
-
<@session> ping
|
|
175
|
-
|
|
176
|
-
Run "mcpc" without arguments to show active sessions and OAuth profiles.
|
|
177
|
-
Run "mcpc --json" to get the same data as `{ sessions: [...], profiles: [...] }`.
|
|
178
130
|
```
|
|
179
131
|
|
|
180
132
|
### General actions
|