MCP Integration
Use external MCP tools inside NevoFlux, and expose NevoFlux to other MCP clients.
NevoFlux speaks the Model Context Protocol (MCP) in both directions.
Connect external MCP servers
Add MCP servers (stdio / SSE / HTTP) in
Settings → MCP Servers. Their tools become available to
the agent, which finds and calls the right one automatically (and can search them
with tool_search). NevoFlux supervises servers with auto-reconnect and health
checks; your list is stored at ~/.config/nevoflux/mcp-servers.toml.
Expose NevoFlux as an MCP server
The agent can also run as an MCP server so other MCP clients (such as Claude Code) can use NevoFlux's browser and computer tools. Run the bundled agent binary in MCP mode:
nevoflux --mcpThen point your MCP client at it, e.g. for Claude Code:
{
"mcpServers": {
"nevoflux": {
"command": "/path/to/nevoflux",
"args": ["--mcp"]
}
}
}In this mode NevoFlux exposes its browser tools (navigate, click, type, fill,
screenshot, read content/markdown, snapshot, eval JS, …), its computer tools
(screenshot, mouse, keyboard, …), and an agent_chat tool.
The agent binary is bundled inside the browser install; you can also build it from the agent repo for standalone use.