whoami-mcp 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.
- package/README.md +3 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -12,8 +12,8 @@ One package, three ways to use it:
|
|
|
12
12
|
|
|
13
13
|
One click — pick your client:
|
|
14
14
|
|
|
15
|
-
[](cursor://anysphere.cursor-deeplink/mcp/install?name=whoami&config=
|
|
16
|
-
[](https://insiders.vscode.dev/redirect/mcp/install?name=whoami&config=%7B%22command%22%3A%20%22npx%22%2C%22args%22%3A%20%5B%22-y%22%2C%20%22whoami-mcp%22%
|
|
15
|
+
[](cursor://anysphere.cursor-deeplink/mcp/install?name=whoami&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIndob2FtaS1tY3AiXSwiZW52Ijp7IlBST0ZJTEVfUEFUSCI6Ii9hYnMvcGF0aC90by9wcm9maWxlLmpzb24ifX0=)
|
|
16
|
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=whoami&config=%7B%22command%22%3A%20%22npx%22%2C%22args%22%3A%20%5B%22-y%22%2C%20%22whoami-mcp%22%5D%2C%22env%22%3A%20%7B%22PROFILE_PATH%22%3A%20%22%24%7Binput%3AprofilePath%7D%22%7D%7D)
|
|
17
17
|
|
|
18
18
|
Or follow a per-client guide:
|
|
19
19
|
|
|
@@ -95,7 +95,7 @@ Point a server at it however suits your deploy (precedence top to bottom):
|
|
|
95
95
|
"mcpServers": {
|
|
96
96
|
"whoami": {
|
|
97
97
|
"command": "npx",
|
|
98
|
-
"args": ["-y", "whoami-mcp"
|
|
98
|
+
"args": ["-y", "whoami-mcp"],
|
|
99
99
|
"env": { "PROFILE_PATH": "/abs/path/to/your/profile.json" }
|
|
100
100
|
}
|
|
101
101
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "whoami-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Run your professional profile as live MCP tools — let any AI answer questions about you from real data. Library + local stdio server + deployable Streamable-HTTP server, in one package.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"bin": {
|
|
22
|
+
"whoami-mcp": "dist/stdio.js",
|
|
22
23
|
"whoami-stdio": "dist/stdio.js",
|
|
23
24
|
"whoami-http": "dist/http-server.js"
|
|
24
25
|
},
|