@yash_pandit/mcpconfig 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +8 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yash_pandit/mcpconfig",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI to discover and inspect MCP (Model Context Protocol) configs and servers across Claude Desktop, Cursor, Codex, Cline, and more",
5
5
  "license": "MIT",
6
6
  "repository": {
package/readme.md CHANGED
@@ -1,7 +1,11 @@
1
1
  # mcpconfig
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@yash_pandit/mcpconfig.svg)](https://www.npmjs.com/package/@yash_pandit/mcpconfig)
4
+
3
5
  **A CLI to discover and inspect MCP (Model Context Protocol) configs and servers across your AI coding tools.**
4
6
 
7
+ Published on npm: **[@yash_pandit/mcpconfig](https://www.npmjs.com/package/@yash_pandit/mcpconfig)**
8
+
5
9
  If you use Claude Desktop, Cursor, Codex, Cline, or similar apps, each one stores its MCP configuration in a different place. **mcpconfig** finds those config files and lists them—and can show every MCP server (name, command, args) from all of them in one view.
6
10
 
7
11
  ---
@@ -32,14 +36,14 @@ The [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) is a standa
32
36
  **Global install** (recommended if you want the `mcpconfig` command everywhere):
33
37
 
34
38
  ```bash
35
- npm install --global mcpconfig
39
+ npm install --global @yash_pandit/mcpconfig
36
40
  ```
37
41
 
38
42
  **Run without installing** (e.g. try it once or use in scripts):
39
43
 
40
44
  ```bash
41
- npx mcpconfig list-configs
42
- npx mcpconfig list-servers
45
+ npx @yash_pandit/mcpconfig list-configs
46
+ npx @yash_pandit/mcpconfig list-servers
43
47
  ```
44
48
 
45
49
  **From source** (clone the repo, then):
@@ -135,7 +139,7 @@ npm run dev
135
139
  # Run the CLI from the built output
136
140
  npm start
137
141
  # or
138
- npx mcpconfig list-configs
142
+ npx @yash_pandit/mcpconfig list-configs
139
143
 
140
144
  # Lint and test
141
145
  npm test