jetson-mcp
@Zalmotek
关于 jetson-mcp
A MCP server for using natural language to monitor and remote control a Nvidia Jetson board
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"jetson-mcp": {
"command": "python",
"args": [
"app/main.py"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is jetson-mcp?
jetson-mcp is an MCP (Model Context Protocol) server that lets you use natural language to monitor and remotely control a Nvidia Jetson board from clients on the same network. It exposes tools over SSE (Server-Sent Events) transport, reading hardware info from /etc/nv_boot_control.conf and software info from /etc/nv_tegra_release and /proc/version. It is built with the FastMCP library.
How to use jetson-mcp?
Clone the repo on the Jetson, run ./install.sh to set up a Python virtual environment, then run sudo ./setup_service.sh to create a systemd service listening on port 8000. Start the service with sudo systemctl start jetson-mcp.service. From a remote MCP client, connect to the SSE endpoint at http://<jetson_ip>:8000/sse.
Key features of jetson-mcp
- Provides MCP tools via SSE transport on the network.
get_jetson_hw_info: reads module/carrier board info from config file.get_jetson_sw_info: reads Jetpack version and Linux kernel version.- Includes scripts for easy installation and systemd service setup.
- Requires firewall to allow incoming TCP on port 8000.
Use cases of jetson-mcp
- Remotely query Jetson hardware configuration from a desktop AI client.
- Check Jetpack and kernel version on a Jetson without SSH or terminal access.
- Integrate Jetson monitoring into an LLM-powered automation workflow.
- Prototype edge AI applications with natural language control over the board.
FAQ from jetson-mcp
How does jetson-mcp expose its tools?
It uses SSE (Server-Sent Events) transport on port 8000, not the stdio transport typical of local MCP servers. Clients connect via http://<jetson_ip>:8000/sse.
What are the runtime dependencies?
The server runs in a Python virtual environment created by install.sh. It requires the FastMCP library (installed from requirements.txt) and reads system files that exist on a standard Nvidia Jetson Linux installation.
Can I use jetson-mcp with Cursor?
Cursor’s mcp.json is designed for local stdio transport, so connecting to this networked SSE server may require a proxy or different configuration steps. Consult your client’s documentation for SSE endpoint support.
How do I start jetson-mcp automatically on boot?
The setup_service.sh script creates and enables a systemd service file (/etc/systemd/system/jetson-mcp.service). After running sudo systemctl enable jetson-mcp.service, the server starts automatically on boot.
What port does jetson-mcp use and how do I configure firewall?
The server listens on TCP port 8000 by default. If you use ufw, run sudo ufw allow 8000/tcp to allow incoming connections from LAN clients.
其他 分类下的更多 MCP 服务器
Servers
modelcontextprotocolModel Context Protocol Servers
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Awesome Mlops
visengerA curated list of references for MLOps
Awesome-MCP-ZH
yzflyMCP 资源精选, MCP指南,Claude MCP,MCP Servers, MCP Clients
🪟 Windows-MCP
CursorTouchMCP Server for Computer Use in Windows
评论