DimeVision MCP Server

DimeVision MCP Server

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.

Category
Visit Server

README

DimeVision MCP Server

Give your AI assistant the ability to analyze welds, understand defect types, and get welding improvement tips.

What This Does

When you ask an AI about welding, this MCP server gives it the tools to actually help:

  • Analyze a weld photo and get a quality score (0-100)
  • Look up weld defects (porosity, undercut, cracks, etc.)
  • Get bead building tips for MIG, TIG, and Stick welding
  • Understand how scoring works (AWS/ASME calibrated)

Installation via Smithery

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"]
    }
  }
}

Local Installation

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

Configuration

No API key required. The server calls the DimeVision API directly at https://dimevision-agent.vercel.app/api/analyze.

Tools Available

analyze_weld

Upload a weld photo URL and get a full analysis.

When AI calls this:

  • "Analyze my weld" / "Rate my weld"
  • "Check this welding photo"
  • "What score is this weld?"
  • "Give me feedback on my technique"

Input:

{
  "imageUrl": "https://example.com/my-weld.jpg",
  "process": "MIG",
  "material": "steel"
}

get_weld_defects

Look up common weld defects, their causes, and severity.

When AI calls this:

  • "What is porosity in welding?"
  • "Common weld defects and how to fix them"
  • "Why do my welds crack?"
  • "What causes undercut?"

get_bead_builder_tips

Get practical tips for improving weld bead quality by process.

When AI calls this:

  • "How do I improve my MIG welds?"
  • "Tips for better bead appearance"
  • "What voltage should I use for MIG?"
  • "Help with my TIG technique"

get_weld_quality_score

Understand how DimeVision scores welds 0-100.

When AI calls this:

  • "How does the score work?"
  • "What score is professional quality?"
  • "What's the pass threshold for welding certification?"
  • "How is my weld rated?"

Example Conversations

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."

Technical Details

  • Built with the Model Context Protocol (MCP) TypeScript SDK
  • Uses stdio transport for local process integration
  • Calls DimeVision's x402-enabled API endpoint
  • Equipment and process agnostic (works with any welding machine)

For Developers

# Build
npm run build

# Run directly
npm run dev

# Package for npm
npm publish

Related

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured