Intel NPU Tools MCP Server
The Intel NPU Tools MCP Server equips AI agents with local, private, NPU-accelerated capabilities on Linux. Key functions include:
NPU status & diagnostics – verify Intel AI Boost and OpenVINO devices.
Speech transcription – transcribe audio files or live microphone recording using Whisper Base INT8 on the NPU.
OCR – extract English and Arabic text from images or capture the monitor (NPU + Tesseract).
Screen to text – convert screenshots into structured text with bounding boxes, saving token usage.
Semantic search – index local files/dirs with Qwen3 Embedding INT8, then search by meaning with optional reranking.
Context filtering – retrieve relevant verbatim lines from large files based on a query, with line numbers.
Index status – show indexed roots, file count, and chunk count.
Desktop tools – launch interactive speech-to-text or screenshot OCR applications.
Provides tools for utilizing the Intel AI Boost NPU on Arrow Lake processors, enabling local speech transcription, screenshot OCR, semantic search, and hardware diagnostics.
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., "@Intel NPU Tools MCP ServerTranscribe the audio file meeting.mp3"
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.
Intel NPU Tools for Linux
An unofficial, community-maintained toolkit that makes the integrated Intel AI Boost NPU in Arrow Lake processors useful on Linux. It provides private semantic search, local speech transcription, screenshot OCR, hardware verification, and twelve MCP tools that AI agents can call.
This project is not affiliated with, sponsored by, or endorsed by Intel Corporation. Intel, Intel Core, OpenVINO, and Intel AI Boost are trademarks of their respective owners.
Why this exists
Linux can expose an Arrow Lake NPU as /dev/accel/accel0, but applications still need Intel's Level Zero NPU user-mode driver, OpenVINO, compatible models, permissions, and integration code. This repository assembles those pieces into useful desktop and agent workflows.
The NPU is a good fit for efficient background inference. It does not replace a discrete GPU for model training, large language models, or image generation.
Related MCP server: local-mmcp
Features
Speech to text: multilingual Whisper Base INT8 runs locally on the NPU. Whisper Small is available for noisier rooms; see the roadmap for the accuracy and latency trade.
Screenshot OCR: select a region and copy recognized English or Arabic text.
Private semantic search: index local documents, logs, and source code with Qwen3-Embedding 0.6B INT8, then retrieve passages by meaning.
Smaller agent context:
context_filterreturns only the lines of a large log or file that answer a question, verbatim and with line numbers, andscreen_to_textrenders a screen as a few hundred tokens of structured text rather than a multi-thousand-token image.MCP server: Codex, Claude, Gemini CLI, AGY/Antigravity CLI, Hermes, Antigravity IDE, OpenCode, and other MCP clients can use all twelve tools.
Hardware diagnostics: report every OpenVINO device and confirm
Intel(R) AI Boostis available.Reversible installation: user applications and models are isolated under
~/.local; the uninstaller deliberately preserves system drivers.
Supported hardware and software
The initial tested target is:
Intel Arrow Lake integrated NPU 3720, PCI ID
8086:ad1dIntel Core Ultra 200-series desktop processors, including Core Ultra 9 285K
Ubuntu 24.04 or an Ubuntu 24.04-compatible distribution
Linux kernel 6.8 or newer with
intel_vpuKDE Plasma, GNOME, COSMIC, or a wlroots compositor; X11 works too. Screenshots use whichever of spectacle, gnome-screenshot, cosmic-screenshot, grim, maim or scrot is installed, and the clipboard uses wl-clipboard, xclip or xsel.
OpenVINO officially identifies Arrow Lake's NPU 3720 by PCI ID 0xAD1D. Other Intel NPU generations may work with code changes, but the bundled driver safety check intentionally refuses unknown PCI IDs.
What it looks like
The control panel is where every feature can be tried and every setting changed.

Search indexes a folder and retrieves passages by meaning, and context_filter
returns only the lines of one large file that answer a question.

Settings that used to be environment variables are editable and persistent. Each option states what it measured, so the trade is visible before it is made.

The status tab reports the device, the driver, which models are installed, and what the desktop session can actually do — useful when a screenshot or the clipboard is not working.

Regenerate these with scripts/capture-screenshots.sh. It runs each window on a
virtual display, so the images do not depend on anyone's wallpaper or theme and
stay reproducible as the interface changes.
Install from a package
Native packages install the toolkit system-wide. They deliberately contain no
models and no OpenVINO runtime: those are large, are redistributed under their
own licences, and OpenVINO is not in any distribution archive. Each user runs
intel-npu-tools-setup once afterwards to build their own environment and
download the models, which also keeps package installation off the network.
./scripts/build-deb.sh # Debian, Ubuntu, Pop!_OS
cd packaging && makepkg -si # Arch
rpmbuild -bb packaging/intel-npu-tools.spec \
--define "_projectdir $PWD" # Fedora (openSUSE and EL untested)All three install the same tree from scripts/stage-package.sh, so they cannot
drift apart. Then, as your own user:
intel-npu-tools-setup # add --with-reranker and --with-whisper-small if wantedQuick installation
git clone https://github.com/etreby/intel-npu-tools.git
cd intel-npu-tools
./install.sh --with-driver--with-driver installs Intel's signed Ubuntu 24.04 NPU user-mode packages and firmware, adds the current user to render, creates an isolated Python environment, downloads the models from their official upstream locations, and installs the desktop and MCP tools.
Log out and back in after the first driver installation, then verify:
intel-npu-infoExpected output includes:
"NPU": "Intel(R) AI Boost"If the driver is already installed, omit --with-driver:
./install.shTo skip automatic MCP client registration:
./install.sh --without-mcpThe model download is approximately 800 MB in total, including Whisper, OCR, and the roughly 600 MB embedding model. Two optional models are excluded by default: --with-whisper-small (~250 MB, better in noise) and --with-reranker (~300 MB, sharper search results).
Semantic search in 30 seconds
intel-npu-search index ~/Projects/my-project
intel-npu-search search "Where is authentication configured?"
intel-npu-search statusIndexing is incremental and remains local. See the semantic-search guide for supported files, performance, privacy boundaries, and customization.
Desktop usage
Launch these applications from the desktop menu:
Intel NPU Speech to Text: click Start, speak, then Stop and transcribe. The result is copied to the clipboard.
Intel NPU Screenshot OCR: select a rectangular region. Recognized text is displayed and copied.
Intel NPU Control Panel: try every feature, change settings, and see what the NPU and the desktop session can actually do. Run
intel-npu-panel.
On KDE, install.sh registers two global shortcuts:
Meta+F9— Speech to TextMeta+Alt+O— Screenshot OCR
Meta is normally the Windows-logo key. The shortcuts start working after your next login, because KDE's shortcut daemon reads its configuration once at session start; restarting it during an install would briefly drop every other shortcut on the system. If you had already bound either application to a key of your own, the installer leaves your binding alone, and it refuses to write a key another component already owns rather than registering one KDE would silently discard. Speech uses Meta+F9 rather than the Meta+Alt+S of earlier versions, because KDE's accessibility component binds Meta+Alt+S to "Toggle Screen Reader On and Off" by default, so that shortcut could never have worked. On a desktop without KDE's configuration tools the registration is skipped and the applications are launched from the desktop menu instead.
AI agent and MCP usage
The local stdio MCP command is:
intel-npu-mcpIt exposes:
Tool | Purpose |
| Verify OpenVINO and list available devices |
| Transcribe a local audio file on the NPU |
| Record the default microphone for a bounded duration |
| Extract English/Arabic text from an image |
| Capture and OCR the current monitor |
| Read a screen as structured text instead of an image |
| Incrementally index a text file or directory on the NPU |
| Retrieve ranked local passages by meaning |
| Return only the parts of a large file that answer a question |
| Show indexed roots, files, chunks, and database path |
| Open the interactive speech application |
| Open interactive region OCR |
Example agent requests:
Use intel-npu-tools to transcribe ~/recording.m4a.
Use the NPU to OCR ~/Pictures/error.png.
Record my microphone for 15 seconds and transcribe it.
Read the text currently visible on my monitor.
Index ~/Projects/my-project, then find where authentication is configured.
Search my indexed documents for the Windows boot recovery procedure.Manual Codex registration:
codex mcp add intel-npu-tools -- "$HOME/.local/bin/intel-npu-mcp"Manual Claude Code registration:
claude mcp add --scope user intel-npu-tools -- "$HOME/.local/bin/intel-npu-mcp"Manual Hermes registration:
hermes mcp add intel-npu-tools --command "$HOME/.local/bin/intel-npu-mcp"Manual Gemini CLI registration:
gemini mcp add --scope user intel-npu-tools "$HOME/.local/bin/intel-npu-mcp"AGY/Antigravity CLI reads global servers from ~/.gemini/config/mcp_config.json:
{
"mcpServers": {
"intel-npu-tools": {
"command": "/home/YOUR_USER/.local/bin/intel-npu-mcp",
"args": []
}
}
}OpenCode reads global configuration from ~/.config/opencode/opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"intel-npu-tools": {
"type": "local",
"command": ["/home/YOUR_USER/.local/bin/intel-npu-mcp"],
"enabled": true,
"timeout": 60000
}
}
}Any MCP client can use this stdio configuration:
{
"mcpServers": {
"intel-npu-tools": {
"command": "/home/YOUR_USER/.local/bin/intel-npu-mcp",
"args": []
}
}
}How the NPU is utilized
Microphone/audio ──> Whisper Base INT8 ──> OpenVINO GenAI ──> Intel NPU
Screenshot/image ──┬─> text detector + recognizer ──> OpenVINO ──> Intel NPU
└─> Tesseract (preferred for layout, punctuation, Arabic)
Local text ──> chunks ──> Qwen3 Embedding INT8 ──> Intel NPU ──> SQLite vectors
AI agent ──> local stdio MCP server ──> the same NPU pipelinesAll inference targets NPU explicitly. The included tools do not silently redirect workloads to a discrete GPU. This allows an NVIDIA or Intel GPU to remain available for gaming, rendering, Ollama, or larger AI workloads.
Privacy
No network server is started.
MCP communication uses a local child process over stdin/stdout.
Audio, screenshots, indexed text, and embeddings are processed and stored locally.
Network access is needed only during installation to download software and models.
Temporary recordings and screenshots are deleted after processing.
Documentation
Troubleshooting
/dev/accel/accel0 is missing
lspci -nn | grep -i ad1d
lsmod | grep intel_vpu
journalctl -k -b | grep -i intel_vpuUpdate the kernel/firmware for your distribution before replacing unrelated graphics drivers.
NPU exists but OpenVINO shows only CPU/GPU
groups
ls -l /dev/accel/accel0The user must belong to render. Log out and back in after group changes.
Speech produces no text
Check the default PipeWire microphone:
pactl get-default-source
pw-record --rate 16000 --channels 1 /tmp/microphone-test.wavOCR limitations
Both engines run on every image. The NPU detects text regions and recognizes them with Intel's compact model, which covers only lowercase Latin letters and digits. Tesseract reads punctuation, layout, English, and Arabic, so its output is used as the returned text whenever it produces any; the NPU result is returned when Tesseract is missing, fails, or finds nothing. npu_regions and npu_text are always reported separately so you can see what the NPU contributed. Stylized fonts and very small text may remain imperfect.
install.sh installs Tesseract. Without it, OCR still works but falls back to the NPU-only text.
For NPU compilation, semantic-search, and MCP diagnostics, use the complete debugging guide.
Development
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
python -m compileall -q srcSee CONTRIBUTING.md for contribution guidelines and proposed areas of work.
Uninstall
./uninstall.shThe uninstaller removes user applications, models, and MCP registrations. It intentionally preserves system-level NPU firmware and drivers.
Upstream components and documentation
License
Project code is released under the MIT License. Downloaded drivers, models, runtimes, and trademarks remain under their respective upstream licenses. See THIRD_PARTY_NOTICES.md.
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
- FlicenseAqualityDmaintenanceEnables LLMs to capture screenshots and screen recordings through MCP with chunked session-based transfers for reliable image consumption. Supports multi-monitor selection, timeline capture, and compatibility with both vision and non-vision language models.111
- FlicenseAqualityCmaintenanceLocal multimodal MCP server for vision, document, audio, video, and GUI automation, all processed locally on Apple Silicon for privacy and security.9
- Alicense-qualityCmaintenanceEnables AI assistants to diagnose, troubleshoot, and manage PC settings on Windows, macOS, and Linux through natural language commands.GPL 3.0
- AlicenseAqualityFmaintenanceProvides an MCP server for local low-power screen vision, enabling AI agents to perform OCR and UI detection on inaccessible screens (games, remote desktops) using NPU acceleration and system OCR.51MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
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/etreby/intel-npu-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server