@ateam-ai/mcp 0.1.6 → 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ateam-ai/mcp",
3
- "version": "0.1.6",
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.6" },
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 }));
package/src/tools.js CHANGED
@@ -14,7 +14,7 @@ export const tools = [
14
14
  {
15
15
  name: "adas_bootstrap",
16
16
  description:
17
- "Call this FIRST when A-Team MCP is connected. Returns platform positioning, product vision, example solutions, and assistant behavior instructions for onboarding.",
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: {},