loading…
Search for a command to run...
loading…
Enables AI assistants to analyze weld photos for quality scoring and identify common defects like porosity or undercut. It provides practical bead-building tips
Enables AI assistants to analyze weld photos for quality scoring and identify common defects like porosity or undercut. It provides practical bead-building tips and technical guidance for MIG, TIG, and Stick welding processes based on AWS/ASME standards.
Give your AI assistant the ability to analyze welds, understand defect types, and get welding improvement tips.
When you ask an AI about welding, this MCP server gives it the tools to actually help:
npx -y @smithery/cli@latest install dimevision-mcp-server
Or add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"dimevision": {
"command": "npx",
"args": ["-y", "dimevision-mcp-server"]
}
}
}
npm install -g dimevision-mcp-server
Or clone and run:
git clone https://github.com/dtjohnson83/dimevision-mcp-server.git
cd dimevision-mcp-server
npm install
npm run build
npm start
No API key required. The server calls the DimeVision API directly at https://dimevision-agent.vercel.app/api/analyze.
analyze_weldUpload a weld photo URL and get a full analysis.
When AI calls this:
Input:
{
"imageUrl": "https://example.com/my-weld.jpg",
"process": "MIG",
"material": "steel"
}
get_weld_defectsLook up common weld defects, their causes, and severity.
When AI calls this:
get_bead_builder_tipsGet practical tips for improving weld bead quality by process.
When AI calls this:
get_weld_quality_scoreUnderstand how DimeVision scores welds 0-100.
When AI calls this:
User: "Can you analyze this weld photo for me?"
AI: (calls analyze_weld with the photo URL)
AI: "That weld scores 78/100 — solid professional quality. I can see minor porosity in the center and the bead width is slightly inconsistent toward the end. Main tip: slow down your travel speed on your next run."
User: "I keep getting porosity in my MIG welds. What's wrong?"
AI: (could call get_weld_defects for porosity details)
AI: "Porosity is gas pockets trapped in the weld. Common causes are contamination on your metal, moisture in your wire, or your shielding gas getting blown away. Clean your metal with acetone before welding and check for drafts."
User: "What score do I need to pass my welding certification?"
AI: (calls get_weld_quality_score)
AI: "DimeVision partner schools use 70 as the pass threshold. Professional quality starts at 75, and 90+ is considered mastery level. Focus on consistent bead profile and eliminating undercut."
# Build
npm run build
# Run directly
npm run dev
# Package for npm
npm publish
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"dimevision-mcp-server": {
"command": "npx",
"args": []
}
}
}