{"id":"339ca21e-db68-46a6-8cbe-c481797232b5","slug":"mcp-azure-containerization-assist","name":"containerization-assist-mcp","description":"TypeScript MCP server for AI-powered containerization workflows with Docker and Kubernetes support","canonicalUrl":"https://xpersona.co/mcp/mcp-azure-containerization-assist","sourceUrl":"https://github.com/Azure/containerization-assist","homepage":"https://github.com/azure/containerization-assist#readme","source":"GITHUB_MCP","vendor":{"slug":"azure","label":"Azure","url":"https://github.com/azure/containerization-assist#readme"},"protocols":["MCP"],"capabilities":["mcp","model-context-protocol","containerization","docker","kubernetes","ai-assisted","devops","java","spring-boot","maven","gradle","cli"],"trustScore":null,"trustConfidence":"unknown","artifactCount":0,"benchmarkCount":0,"lastRelease":"1.2.0","freshnessAt":"2026-02-22T13:32:34.732Z","freshnessLabel":"Feb 22, 2026","securityReviewed":true,"openapiReady":true,"stats":[{"label":"Trust score","value":"Unknown"},{"label":"Compatibility","value":"MCP"},{"label":"Freshness","value":"Feb 22, 2026"},{"label":"Vendor","value":"Azure"},{"label":"Artifacts","value":"0"},{"label":"Benchmarks","value":"0"},{"label":"Last release","value":"1.2.0"}],"factsPreview":[{"factKey":"docs_crawl","category":"integration","label":"Crawlable docs","value":"6 indexed pages on the official domain","href":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceUrl":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceType":"search_document","confidence":"medium","observedAt":"2026-04-15T05:03:46.393Z","isPublic":true},{"factKey":"protocols","category":"compatibility","label":"Protocol compatibility","value":"MCP","href":"https://xpersona.co/api/v1/agents/mcp-azure-containerization-assist/contract","sourceUrl":"https://xpersona.co/api/v1/agents/mcp-azure-containerization-assist/contract","sourceType":"contract","confidence":"high","observedAt":"2026-02-24T19:46:03.343Z","isPublic":true},{"factKey":"auth_modes","category":"compatibility","label":"Auth modes","value":"mcp, api_key","href":"https://xpersona.co/api/v1/agents/mcp-azure-containerization-assist/contract","sourceUrl":"https://xpersona.co/api/v1/agents/mcp-azure-containerization-assist/contract","sourceType":"contract","confidence":"high","observedAt":"2026-02-24T19:46:03.343Z","isPublic":true},{"factKey":"schema_refs","category":"artifact","label":"Machine-readable schemas","value":"OpenAPI or schema references published","href":"https://github.com/Azure/containerization-assist#input","sourceUrl":"https://xpersona.co/api/v1/agents/mcp-azure-containerization-assist/contract","sourceType":"contract","confidence":"high","observedAt":"2026-02-24T19:46:03.343Z","isPublic":true},{"factKey":"vendor","category":"vendor","label":"Vendor","value":"Azure","href":"https://github.com/azure/containerization-assist#readme","sourceUrl":"https://github.com/azure/containerization-assist#readme","sourceType":"profile","confidence":"medium","observedAt":"2026-02-24T19:43:14.176Z","isPublic":true},{"factKey":"traction","category":"adoption","label":"Adoption signal","value":"35 GitHub stars","href":"https://github.com/Azure/containerization-assist","sourceUrl":"https://github.com/Azure/containerization-assist","sourceType":"profile","confidence":"medium","observedAt":"2026-02-24T19:43:14.176Z","isPublic":true},{"factKey":"handshake_status","category":"security","label":"Handshake status","value":"UNKNOWN","href":"https://xpersona.co/api/v1/agents/mcp-azure-containerization-assist/trust","sourceUrl":"https://xpersona.co/api/v1/agents/mcp-azure-containerization-assist/trust","sourceType":"trust","confidence":"medium","observedAt":null,"isPublic":true}],"highlights":["35 GitHub stars","Schema refs published","Trust evidence available"],"agentCard":{"name":"containerization-assist-mcp","description":"TypeScript MCP server for AI-powered containerization workflows with Docker and Kubernetes support","source":"GITHUB_MCP","sourceId":"github-mcp:956131507","homepage":"https://github.com/azure/containerization-assist#readme","repository":"https://github.com/Azure/containerization-assist","documentation":"https://xpersona.co/mcp/mcp-azure-containerization-assist/agent/mcp-azure-containerization-assist","protocols":["MCP"],"capabilities":["mcp","model-context-protocol","containerization","docker","kubernetes","ai-assisted","devops","java","spring-boot","maven","gradle","cli"],"languages":["typescript"],"install":{"command":"git clone https://github.com/Azure/containerization-assist.git","ecosystem":"git"},"examples":[{"kind":"example","language":"json","snippet":"{\n  \"servers\": {\n    \"containerization-assist\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"containerization-assist-mcp\", \"start\"],\n      \"env\": {\n         \"LOG_LEVEL\": \"info\"\n      }\n    }\n  }\n}"},{"kind":"example","language":"typescript","snippet":"import { analyzeRepo, buildImageContext, scanImage } from 'containerization-assist-mcp/sdk';\nimport { execSync } from 'child_process';\n\n// Simple function calls - no MCP server needed\nconst analysis = await analyzeRepo({ repositoryPath: './myapp' });\nif (analysis.ok) {\n  console.log('Detected:', analysis.value.modules);\n}\n\n// buildImageContext returns build context with security analysis and commands\nconst buildContext = await buildImageContext({ path: './myapp', imageName: 'myapp:v1', platform: 'linux/amd64' });\nif (buildContext.ok) {\n  const { securityAnalysis, nextAction } = buildContext.value;\n  console.log('Security risk:', securityAnalysis.riskLevel);\n  \n  // Execute the generated build command from the build context directory\n  execSync(nextAction.buildCommand.command, {\n    cwd: buildContext.value.context.buildContextPath,\n    env: { ...process.env, ...nextAction.buildCommand.environment }\n  });\n}\n\nconst scan = await scanImage({ imageId: 'myapp:v1' });"}]}}