Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for interacting with NetBox API.

README.md

NetBox MCP Server

A small Model Context Protocol (MCP) server built with FastMCP that provides an interface to a NetBox instance.

This repository exposes NetBox resources (sites, site-groups, devices, etc.) as MCP tools and runs a streaming HTTP transport so clients can connect and receive streamed responses from the MCP server.

Architecture (FastMCP + streaming HTTP)

  • FastMCP: The MCP tool registry and runtime. Tools are defined in app.py and decorated with @mcp.tool.
  • NetBoxClient: a tiny async helper in app.py that wraps httpx.AsyncClient to call the NetBox API.
  • Streaming HTTP transport: the MCP server is started with mcp.run(transport="http", ...) which runs an HTTP server that supports a streaming/chunked response transport. This is useful for clients that want to consume events or long-running responses incrementally rather than waiting for the entire result.

Conceptually the flow is:

  1. Client connects to the FastMCP streaming HTTP endpoint.
  2. Client requests a tool (for example, search_sites or get_site_group_details).
  3. FastMCP calls the associated Python function in app.py, which may in turn call NetBox via NetBoxClient.
  4. The result is streamed back over the HTTP transport as it becomes available.

Note: The low-level HTTP path/shape is provided by the FastMCP runtime. Clients that wish to connect should use a compatible MCP client or an HTTP client that supports reading chunked / streaming responses.

Environment variables

Set these before running the server:

  • NETBOX_URL - Base URL to your NetBox instance (default: https://netbox.example.com).
  • NETBOX_TOKEN - NetBox API token with read permissions.
  • MCP_PORT - Port for the FastMCP HTTP transport. Defaults to 8000 if not set. If the value is not a valid integer, the server will exit with an error.

Example (macOS / zsh):

export NETBOX_URL="https://netbox.example.com"
export NETBOX_TOKEN="0123456789abcdef0123456789abcdef01234567"
export MCP_PORT=8000

Run the server

Start the MCP server with Python:

python3 app.py

The server will bind to 0.0.0.0 on the configured port and serve the FastMCP HTTP transport.

Tools included

app.py registers MCP tools for NetBox resources. Examples included in this repository:

  • search_sites — search of dcim/sites/ (supports partial/case-insensitive name queries)
  • get_site_details — site lookup
  • search_site_groups — search of dcim/site-groups/ (supports name__ic)
  • get_site_group_details — single site-group lookup by id

You can add more tools following the repository conventions: each NetBox resource has a search_<resource> and get_<resource>_details tool.

Verifying / testing

  • Quick syntax check:
python3 -m py_compile app.py
  • Start the server and use an HTTP client that supports streaming (for example, curl --no-buffer or a custom MCP client) to connect to the FastMCP HTTP transport and invoke tools.

Because the exact HTTP request shape (paths, headers and payload) is defined by the FastMCP runtime and clients, prefer using an existing MCP client library where available. If you're building a custom client, make sure it supports reading chunked responses so streamed results can be consumed incrementally.

Contributing

If you add tools, follow the repo conventions documented in .github/copilot-instructions.md: each resource should have a search_ and a get_ tool with descriptive docstrings and consistent parameter mapping.

License

This project is provided as-is.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.