@ateam-ai/mcp 0.1.6 → 0.1.7
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/server.js +1 -1
- package/src/tools.js +1 -1
package/package.json
CHANGED
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.7" },
|
|
22
22
|
{ capabilities: { tools: {} } }
|
|
23
23
|
);
|
|
24
24
|
|
package/src/tools.js
CHANGED
|
@@ -14,7 +14,7 @@ export const tools = [
|
|
|
14
14
|
{
|
|
15
15
|
name: "adas_bootstrap",
|
|
16
16
|
description:
|
|
17
|
-
"
|
|
17
|
+
"REQUIRED onboarding entrypoint for A-Team MCP. MUST be called when user greets, says hi, asks what this is, asks for help, explores capabilities, or when MCP is first connected. Returns platform explanation, example solutions, and assistant behavior instructions. Do NOT improvise an introduction — call this tool instead.",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: "object",
|
|
20
20
|
properties: {},
|