=== NEW SERVERS ADDED (7) === - servers/closebot — 119 tools, 14 modules, 4,656 lines TS (Stage 7) - servers/google-console — Google Search Console MCP (Stage 7) - servers/meta-ads — Meta/Facebook Ads MCP (Stage 8) - servers/twilio — Twilio communications MCP (Stage 8) - servers/competitor-research — Competitive intel MCP (Stage 6) - servers/n8n-apps — n8n workflow MCP apps (Stage 6) - servers/reonomy — Commercial real estate MCP (Stage 1) === FACTORY INFRASTRUCTURE ADDED === - infra/factory-tools — mcp-jest, mcp-validator, mcp-add, MCP Inspector - 60 test configs, 702 auto-generated test cases - All 30 servers score 100/100 protocol compliance - infra/command-center — Pipeline state, operator playbook, dashboard config - infra/factory-reviews — Automated eval reports === DOCS ADDED === - docs/MCP-FACTORY.md — Factory overview - docs/reports/ — 5 pipeline evaluation reports - docs/research/ — Browser MCP research === RULES ESTABLISHED === - CONTRIBUTING.md — All MCP work MUST go in this repo - README.md — Full inventory of 37 servers + infra docs - .gitignore — Updated for Python venvs TOTAL: 37 MCP servers + full factory pipeline in one repo. This is now the single source of truth for all MCP work.
346 lines
8.5 KiB
JSON
346 lines
8.5 KiB
JSON
{
|
|
"server": {
|
|
"command": "node",
|
|
"args": [
|
|
"/Users/jakeshore/.clawdbot/workspace/mcp-diagrams/mcp-servers/trello/dist/index.js"
|
|
],
|
|
"env": {
|
|
"TRELLO_API_KEY": "factory_discovery_dummy",
|
|
"TRELLO_TOKEN": "factory_discovery_dummy"
|
|
}
|
|
},
|
|
"tests": {
|
|
"tools": {
|
|
"list_boards": {
|
|
"args": {
|
|
"filter": "all",
|
|
"fields": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"list_boards:empty-filter": {
|
|
"args": {
|
|
"filter": "",
|
|
"fields": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_boards:empty-fields": {
|
|
"args": {
|
|
"filter": "all",
|
|
"fields": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"get_board": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"lists": "all",
|
|
"cards": "all",
|
|
"members": true
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"get_board:empty-lists": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"lists": "",
|
|
"cards": "all",
|
|
"members": true
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"get_board:empty-cards": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"lists": "all",
|
|
"cards": "",
|
|
"members": true
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_lists": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"filter": "all",
|
|
"cards": "all"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"list_lists:empty-filter": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"filter": "",
|
|
"cards": "all"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_lists:empty-cards": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"filter": "all",
|
|
"cards": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_cards": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"list_id": "test-id-123",
|
|
"filter": "all",
|
|
"fields": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"list_cards:empty-board_id": {
|
|
"args": {
|
|
"board_id": "",
|
|
"list_id": "test-id-123",
|
|
"filter": "all",
|
|
"fields": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_cards:empty-list_id": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"list_id": "",
|
|
"filter": "all",
|
|
"fields": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_cards:empty-filter": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"list_id": "test-id-123",
|
|
"filter": "",
|
|
"fields": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_cards:empty-fields": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"list_id": "test-id-123",
|
|
"filter": "all",
|
|
"fields": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"get_card": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"members": true,
|
|
"checklists": "all",
|
|
"attachments": true
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"get_card:empty-checklists": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"members": true,
|
|
"checklists": "",
|
|
"attachments": true
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"create_card": {
|
|
"args": {
|
|
"list_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "test_value",
|
|
"pos": "test_value",
|
|
"due": "test_value",
|
|
"dueComplete": true,
|
|
"idMembers": [],
|
|
"idLabels": [],
|
|
"urlSource": "https://example.com"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"create_card:empty-desc": {
|
|
"args": {
|
|
"list_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "",
|
|
"pos": "test_value",
|
|
"due": "test_value",
|
|
"dueComplete": true,
|
|
"idMembers": [],
|
|
"idLabels": [],
|
|
"urlSource": "https://example.com"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"create_card:empty-pos": {
|
|
"args": {
|
|
"list_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "test_value",
|
|
"pos": "",
|
|
"due": "test_value",
|
|
"dueComplete": true,
|
|
"idMembers": [],
|
|
"idLabels": [],
|
|
"urlSource": "https://example.com"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"create_card:empty-due": {
|
|
"args": {
|
|
"list_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "test_value",
|
|
"pos": "test_value",
|
|
"due": "",
|
|
"dueComplete": true,
|
|
"idMembers": [],
|
|
"idLabels": [],
|
|
"urlSource": "https://example.com"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"create_card:empty-urlSource": {
|
|
"args": {
|
|
"list_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "test_value",
|
|
"pos": "test_value",
|
|
"due": "test_value",
|
|
"dueComplete": true,
|
|
"idMembers": [],
|
|
"idLabels": [],
|
|
"urlSource": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"update_card": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "test_value",
|
|
"closed": true,
|
|
"due": "test_value",
|
|
"dueComplete": true,
|
|
"pos": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"update_card:empty-name": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"name": "",
|
|
"desc": "test_value",
|
|
"closed": true,
|
|
"due": "test_value",
|
|
"dueComplete": true,
|
|
"pos": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"update_card:empty-desc": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "",
|
|
"closed": true,
|
|
"due": "test_value",
|
|
"dueComplete": true,
|
|
"pos": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"update_card:empty-due": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "test_value",
|
|
"closed": true,
|
|
"due": "",
|
|
"dueComplete": true,
|
|
"pos": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"update_card:empty-pos": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"desc": "test_value",
|
|
"closed": true,
|
|
"due": "test_value",
|
|
"dueComplete": true,
|
|
"pos": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"move_card": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"list_id": "test-id-123",
|
|
"board_id": "test-id-123",
|
|
"pos": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"move_card:empty-board_id": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"list_id": "test-id-123",
|
|
"board_id": "",
|
|
"pos": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"move_card:empty-pos": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"list_id": "test-id-123",
|
|
"board_id": "test-id-123",
|
|
"pos": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"add_comment": {
|
|
"args": {
|
|
"card_id": "test-id-123",
|
|
"text": "Sample content for testing"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"create_list": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"pos": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"create_list:empty-pos": {
|
|
"args": {
|
|
"board_id": "test-id-123",
|
|
"name": "Test Name",
|
|
"pos": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"archive_card": {
|
|
"args": {
|
|
"card_id": "test-id-123"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"delete_card": {
|
|
"args": {
|
|
"card_id": "test-id-123"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
}
|
|
},
|
|
"resources": {},
|
|
"prompts": {},
|
|
"timeout": 30000
|
|
}
|
|
} |