@ateam-ai/mcp 0.1.7 → 0.1.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/server.js +10 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ateam-ai/mcp",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "mcpName": "io.github.ariekogan/ateam-mcp",
5
5
  "description": "ADAS MCP Server — build, validate, and deploy multi-agent solutions from any AI environment",
6
6
  "type": "module",
package/src/server.js CHANGED
@@ -18,8 +18,16 @@ 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.7" },
22
- { capabilities: { tools: {} } }
21
+ { name: "ateam-mcp", version: "0.1.8" },
22
+ {
23
+ capabilities: { tools: {} },
24
+ instructions: [
25
+ "You are connected to A-Team MCP — an AI Team Solution Platform.",
26
+ "IMPORTANT: On first user message, ALWAYS call the adas_bootstrap tool before responding.",
27
+ "Use its structured output to introduce the platform, explain core concepts, and ask discovery questions.",
28
+ "Do NOT improvise an introduction from tool names. The bootstrap tool contains the canonical onboarding narrative.",
29
+ ].join(" "),
30
+ }
23
31
  );
24
32
 
25
33
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools }));