auq-mcp-server 0.1.0 → 0.1.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 +1 -1
- package/dist/bin/auq.js +1 -1
- package/package.json +3 -3
- package/scripts/postinstall.cjs +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/auq-mcp-server)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](https://github.com/paulp-o/ask-user-questions-mcp/actions)
|
|
6
6
|
|
|
7
7
|
**A lightweight MCP server & CLI tool that allows your LLMs to ask questions to you in a clean, separate space with great terminal UX.**
|
|
8
8
|
|
package/dist/bin/auq.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auq-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"bin": {
|
|
6
6
|
"auq": "dist/bin/auq.js"
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"terminal"
|
|
31
31
|
],
|
|
32
32
|
"repository": {
|
|
33
|
-
"url": "git+https://github.com/paulp-o/ask-user-
|
|
33
|
+
"url": "git+https://github.com/paulp-o/ask-user-questions-mcp.git"
|
|
34
34
|
},
|
|
35
35
|
"author": "Paul Park",
|
|
36
|
-
"homepage": "https://github.com/paulp-o/ask-user-
|
|
36
|
+
"homepage": "https://github.com/paulp-o/ask-user-questions-mcp",
|
|
37
37
|
"type": "module",
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"description": "An MCP server that provides a tool to ask a user questions via the terminal",
|
package/scripts/postinstall.cjs
CHANGED