@ateam-ai/mcp 0.1.5 → 0.1.6
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 +39 -13
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.6" },
|
|
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
|
-
"Call this FIRST
|
|
17
|
+
"Call this FIRST when A-Team MCP is connected. Returns platform positioning, product vision, example solutions, and assistant behavior instructions for onboarding.",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: "object",
|
|
20
20
|
properties: {},
|
|
@@ -85,7 +85,7 @@ export const tools = [
|
|
|
85
85
|
{
|
|
86
86
|
name: "adas_validate_skill",
|
|
87
87
|
description:
|
|
88
|
-
"Validate a skill definition through the 5-stage ADAS validation pipeline. Returns errors and suggestions to fix. Always validate before deploying.",
|
|
88
|
+
"Validate a skill definition through the 5-stage ADAS validation pipeline. Part of building a governed AI Team solution. Returns errors and suggestions to fix. Always validate before deploying.",
|
|
89
89
|
inputSchema: {
|
|
90
90
|
type: "object",
|
|
91
91
|
properties: {
|
|
@@ -100,7 +100,7 @@ export const tools = [
|
|
|
100
100
|
{
|
|
101
101
|
name: "adas_validate_solution",
|
|
102
102
|
description:
|
|
103
|
-
"Validate a solution
|
|
103
|
+
"Validate a governed AI Team solution — cross-skill contracts, grant economy, handoffs, and LLM quality scoring. Part of building a governed AI Team solution. Always validate before deploying.",
|
|
104
104
|
inputSchema: {
|
|
105
105
|
type: "object",
|
|
106
106
|
properties: {
|
|
@@ -120,7 +120,7 @@ export const tools = [
|
|
|
120
120
|
{
|
|
121
121
|
name: "adas_deploy_solution",
|
|
122
122
|
description:
|
|
123
|
-
"Deploy a
|
|
123
|
+
"Deploy a governed AI Team solution to ADAS Core — identity, connectors, skills. The Skill Builder auto-generates MCP servers from tool definitions. Used after defining system architecture. Always validate first using adas_validate_solution. Requires authentication (call adas_auth first if not using env vars).",
|
|
124
124
|
inputSchema: {
|
|
125
125
|
type: "object",
|
|
126
126
|
properties: {
|
|
@@ -310,14 +310,25 @@ const WRITE_TOOLS = new Set([
|
|
|
310
310
|
|
|
311
311
|
const handlers = {
|
|
312
312
|
adas_bootstrap: async () => ({
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
"
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
313
|
+
platform_positioning: {
|
|
314
|
+
name: "A-Team",
|
|
315
|
+
category: "AI Team Solution Platform",
|
|
316
|
+
summary: "A-Team is a platform for building governed AI Teams as complete operational solutions.",
|
|
317
|
+
},
|
|
318
|
+
what_is_a_team: {
|
|
319
|
+
definition: "A Team is a structured multi-role AI system composed of Skills, Connectors, Governance contracts, and Managed Runtime deployment.",
|
|
320
|
+
core_components: {
|
|
321
|
+
skill: "Operational AI role — intents, tools, policies, workflows",
|
|
322
|
+
solution: "Complete AI Team system — multiple skills + routing + grants + handoffs",
|
|
323
|
+
connector: "External system integration via MCP tools",
|
|
324
|
+
governance: "Permissions, grants, handoffs, auditability",
|
|
325
|
+
deploy: "Activation into controlled runtime on ADAS Core",
|
|
326
|
+
},
|
|
327
|
+
},
|
|
328
|
+
example_solutions: [
|
|
329
|
+
{ name: "Fleet Command Center", description: "Live vehicle tracking, route optimization, safety monitoring, governed execution" },
|
|
330
|
+
{ name: "Customer Support Operations Team", description: "Multi-role support system with escalation, refund controls, CRM integration" },
|
|
331
|
+
{ name: "Enterprise Compliance Platform", description: "Approval flows, audit logs, policy enforcement" },
|
|
321
332
|
],
|
|
322
333
|
recommended_flow: [
|
|
323
334
|
{ step: 1, title: "Clarify the goal", description: "Understand what the user wants their Team to do", suggested_tools: [] },
|
|
@@ -332,7 +343,22 @@ const handlers = {
|
|
|
332
343
|
{ id: "systems", question: "Which systems should the Team connect to?", type: "multi_select", options: ["slack", "email", "zendesk", "shopify", "jira", "postgres", "custom_api", "none"] },
|
|
333
344
|
{ id: "security", question: "What environment constraints?", type: "enum", options: ["sandbox", "controlled", "regulated"] },
|
|
334
345
|
],
|
|
335
|
-
|
|
346
|
+
static_pages: {
|
|
347
|
+
features: "https://ateam-ai.com/#features",
|
|
348
|
+
use_cases: "https://ateam-ai.com/#usecases",
|
|
349
|
+
security: "https://ateam-ai.com/#security",
|
|
350
|
+
engine: "https://ateam-ai.com/#engine",
|
|
351
|
+
},
|
|
352
|
+
assistant_behavior_contract: {
|
|
353
|
+
first_run_requirements: [
|
|
354
|
+
"Explain platform before endpoints",
|
|
355
|
+
"Frame as AI Team solution platform",
|
|
356
|
+
"Give at least one example solution",
|
|
357
|
+
"Define Skill vs Solution vs Connector",
|
|
358
|
+
"Ask user what solution they want to build",
|
|
359
|
+
],
|
|
360
|
+
thinking_order: ["Platform", "Solution", "Skills", "Connectors", "Governance", "Validation", "Deployment"],
|
|
361
|
+
tone: "Architectural, enterprise-grade, serious",
|
|
336
362
|
always: [
|
|
337
363
|
"Explain Skill vs Solution vs Connector before deploying anything",
|
|
338
364
|
"Validate before deploy",
|