@ateam-ai/mcp 0.1.8 → 0.1.9
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/package.json +1 -1
- package/src/api.js +2 -2
- package/src/server.js +1 -1
package/package.json
CHANGED
package/src/api.js
CHANGED
|
@@ -91,8 +91,8 @@ function headers(sessionId) {
|
|
|
91
91
|
*/
|
|
92
92
|
function formatError(method, path, status, body) {
|
|
93
93
|
const hints = {
|
|
94
|
-
401: "Your API key may be invalid or expired.
|
|
95
|
-
403: "You don't have permission for this operation. Check your tenant and API key.",
|
|
94
|
+
401: "Your API key may be invalid or expired. Get a valid key at https://mcp.ateam-ai.com/get-api-key then call adas_auth(api_key: \"your_key\").",
|
|
95
|
+
403: "You don't have permission for this operation. Check your tenant and API key. Get a key at https://mcp.ateam-ai.com/get-api-key",
|
|
96
96
|
404: "Resource not found. Check the solution_id or skill_id you're using. Use adas_list_solutions to see available solutions.",
|
|
97
97
|
409: "Conflict — the resource may already exist or is in a conflicting state.",
|
|
98
98
|
422: "Validation failed. Check the request payload against the spec (use adas_get_spec).",
|
package/src/server.js
CHANGED
|
@@ -18,7 +18,7 @@ import { tools, handleToolCall } from "./tools.js";
|
|
|
18
18
|
*/
|
|
19
19
|
export function createServer(sessionId = "stdio") {
|
|
20
20
|
const server = new Server(
|
|
21
|
-
{ name: "ateam-mcp", version: "0.1.
|
|
21
|
+
{ name: "ateam-mcp", version: "0.1.9" },
|
|
22
22
|
{
|
|
23
23
|
capabilities: { tools: {} },
|
|
24
24
|
instructions: [
|