canforge-mcp
OfficialAllows ChatGPT to inspect DBC files and decode CAN capture logs locally via a Secure MCP Tunnel.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@canforge-mcpdecode frame 0x100#00AA from capture.asc"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
canforge-mcp
canforge-mcp is a local, read-only MCP server for inspecting DBC files and
decoding CAN capture logs.
Files stay on the machine running the server. The server exposes bounded tools instead of uploading captures or returning unbounded traces.
Tools
Tool | Purpose |
| DBC version, message/signal/node counts, and node names |
| Bounded message summaries, with optional search |
| Full message and signal detail by name or arbitration ID |
| Bounded signal search across a DBC |
| Decode one hexadecimal CAN payload |
| Structured DBC validation issues |
| Added, removed, and changed messages and signals |
| Detect a log format and read header metadata |
| Frame count, span, ID counts, and median cycle times |
| One-pass inventory of DBC signals observed in a log |
| Bounded raw-frame samples with ID and time filters |
| Bounded decoded frames from a DBC and log |
| Downsampled timestamp/value points for one signal |
See the tool reference for arguments, return shapes, and hard caps.
Related MCP server: telemetry-mcp
Install
Run directly with uvx:
uvx canforge-mcpOr install with pip:
pip install canforge-mcp
canforge-mcpRequires Python >=3.11.
Configure
Claude Code:
claude mcp add canforge -- uvx canforge-mcpClaude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"canforge": {
"command": "uvx",
"args": ["canforge-mcp"]
}
}
}Restart Claude after changing its MCP configuration.
ChatGPT (Secure MCP Tunnel)
ChatGPT cannot start a local stdio MCP server directly. Use OpenAI's Secure MCP Tunnel to keep Canforge running locally without exposing it to the public internet.
Before starting, enable developer mode in ChatGPT under Settings → Security
and login, then create a tunnel in the OpenAI Platform. You need its tunnel
ID, a runtime API key, and the tunnel-client binary. Make sure the tunnel is
associated with the ChatGPT workspace where you will use Canforge.
Configure and start the tunnel with placeholder credentials:
export CONTROL_PLANE_API_KEY="sk-..."
tunnel-client init \
--sample sample_mcp_stdio_local \
--profile canforge \
--tunnel-id tunnel_your_id \
--mcp-command "uvx canforge-mcp"
tunnel-client doctor --profile canforge --explain
tunnel-client run --profile canforgeKeep tunnel-client run running while using Canforge. In ChatGPT, open
Settings → Plugins, add a developer-mode app, choose Tunnel as the
connection, and select or paste the tunnel ID. Add the new app to a chat before
asking ChatGPT to use the Canforge tools.
Canforge resolves paths on the machine running tunnel-client. Files attached
directly to a ChatGPT conversation are not automatically available as local
filesystem paths; provide an accessible local path instead.
Design
Local-first: tools accept filesystem paths and do not send file content over the network.
Read-only: no tool creates, edits, encodes, or overwrites a file.
Bounded: list and frame tools enforce hard caps and report
total,returned, andtruncated; timeseries are downsampled server-side.Cached: parsed DBCs are cached by resolved path and nanosecond modification time for repeated inspection during one server session.
Composable: capkit reads capture formats; dbckit parses and decodes DBC content.
Stdio-only: the 0.x line exposes no network transport or hosted service.
Scope and Caveats
Supported capture formats come from capkit 0.3: Kvaser CanKing TXT, candump text, and Vector ASC.
DBC support and validation behavior follow dbckit 1.x.
Timestamps are floats exactly as recorded by capkit; they are not rebased.
Median cycle time is the median gap between consecutive occurrences of an ID.
capkit adds raw priority, PGN, and source-address fields for observed extended IDs; dbckit remains responsible for DBC-aware J1939 matching and decoding.
signal_timeseriesuses deterministic, evenly spaced index sampling when a series exceedsmax_points; it is intended for inspection, not resampling or signal processing.log_signal_inventoryalways loads the DBC leniently and reports parse diagnostics and per-message decode safety. It scans the log body once;include_values=trueadds bounded distinct decoded values to the inventory.Paths are resolved by the machine running the MCP server. A remote client's filesystem is not visible to a server running elsewhere.
Development
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
ruff check .
mypy canforge_mcp
pytest --cov=canforge_mcp --cov-fail-under=90
python -m buildLarge-log performance checks are opt-in and generate their own deterministic captures. See benchmarks/README.md for the smoke command, the full 100k/1M matrix, measurement policy, and committed v0.2.0 baseline.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceLocal-first MCP server for querying multi-repo engineering documentation artifacts from a SQLite corpus.Last updated391AGPL 3.0
- Alicense-qualityAmaintenanceA read-only MCP server for querying telemetry data from configurable backends. Provides tools to list sources, describe schemas, run bounded queries, and compute aggregates.Last updatedMIT
- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server that exposes lnav log file analysis capabilities to AI assistants, specifically optimized for Kvaser Plain Text Log Frame CAN bus log processing.Last updatedMIT
- AlicenseAqualityBmaintenanceA local-first, read-only MCP server for vehicle diagnostics that exposes structured OBD-II tools for reading PIDs, DTCs, and ECU snapshots without raw protocol access.Last updated7Apache 2.0
Related MCP Connectors
Read-only MCP server for the WebAssembly spec: instructions, types, sections, search, proposals.
MCP server for hex.pm and hexdocs.pm: search, inspect, compare, and audit Elixir packages
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/canforge/canforge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server