gaunt-sloth-assistant 1.0.0-alpha.5 → 1.0.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/README.md +2 -2
- package/package.json +17 -14
package/README.md
CHANGED
|
@@ -243,8 +243,8 @@ GitHub actions bot.
|
|
|
243
243
|
|
|
244
244
|
Gaunt Sloth supports connecting to MCP servers, including those requiring OAuth authentication.
|
|
245
245
|
|
|
246
|
-
This has been tested with the Atlassian Jira MCP server.
|
|
247
|
-
See the [MCP configuration section](./docs/CONFIGURATION.md#model-context-protocol-mcp) for detailed setup instructions.
|
|
246
|
+
This has been tested with the Atlassian Jira MCP server.
|
|
247
|
+
See the [MCP configuration section](./docs/CONFIGURATION.md#model-context-protocol-mcp) for detailed setup instructions, or the [Jira MCP example](./examples/jira-mcp) for a working configuration.
|
|
248
248
|
|
|
249
249
|
If you experience issues with the MCP auth try finding `.gsloth` dir in your home directory,
|
|
250
250
|
and delete JSON file matching the server you are trying to connect to,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gaunt-sloth-assistant",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Andrew Kondratev",
|
|
@@ -40,30 +40,30 @@
|
|
|
40
40
|
"gth": "cli.js"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@langchain/anthropic": "^1.
|
|
44
|
-
"@langchain/core": "^1.0.
|
|
45
|
-
"@langchain/deepseek": "^1.0.
|
|
46
|
-
"@langchain/google-genai": "^1.0.
|
|
47
|
-
"@langchain/google-vertexai": "^1.0.
|
|
48
|
-
"@langchain/groq": "^1.0.
|
|
43
|
+
"@langchain/anthropic": "^1.1.0",
|
|
44
|
+
"@langchain/core": "^1.0.5",
|
|
45
|
+
"@langchain/deepseek": "^1.0.1",
|
|
46
|
+
"@langchain/google-genai": "^1.0.1",
|
|
47
|
+
"@langchain/google-vertexai": "^1.0.1",
|
|
48
|
+
"@langchain/groq": "^1.0.1",
|
|
49
49
|
"@langchain/langgraph": "^1.0.2",
|
|
50
50
|
"@langchain/mcp-adapters": "^1.0.0",
|
|
51
|
-
"@langchain/openai": "^1.1.
|
|
52
|
-
"@langchain/xai": "^1.0.
|
|
51
|
+
"@langchain/openai": "^1.1.2",
|
|
52
|
+
"@langchain/xai": "^1.0.1",
|
|
53
|
+
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
53
54
|
"commander": "^14.0.2",
|
|
54
55
|
"diff": "^8.0.2",
|
|
55
56
|
"express": "^5.1.0",
|
|
56
|
-
"langchain": "^1.0.
|
|
57
|
-
"minimatch": "^10.1.1"
|
|
58
|
-
"@modelcontextprotocol/sdk": "1.20.0"
|
|
57
|
+
"langchain": "^1.0.5",
|
|
58
|
+
"minimatch": "^10.1.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@eslint/js": "^9.34.0",
|
|
62
62
|
"@types/express": "^5.0.5",
|
|
63
63
|
"@types/node": "^24.10.1",
|
|
64
64
|
"@types/uuid": "^10.0.0",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
66
|
-
"@typescript-eslint/parser": "^8.
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
66
|
+
"@typescript-eslint/parser": "^8.47.0",
|
|
67
67
|
"eslint": "^9.39.1",
|
|
68
68
|
"eslint-config-prettier": "^10.1.8",
|
|
69
69
|
"eslint-plugin-prettier": "^5.5.4",
|
|
@@ -73,6 +73,9 @@
|
|
|
73
73
|
"typescript": "^5.9.3",
|
|
74
74
|
"vitest": "^3.2.4"
|
|
75
75
|
},
|
|
76
|
+
"overrides": {
|
|
77
|
+
"rimraf": "^6.1.0"
|
|
78
|
+
},
|
|
76
79
|
"imports": {
|
|
77
80
|
"#src/*.js": "./dist/*.js"
|
|
78
81
|
},
|