Intel NPU Tools MCP Server
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 Arrow Lake 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 ten 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.
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.
MCP server: Codex, Claude, Gemini CLI, AGY/Antigravity CLI, Hermes, Antigravity IDE, OpenCode, and other MCP clients can use all ten 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 Wayland for the included screenshot workflow
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.
Quick installation
git clone https://github.com/etreby/intel-arrow-lake-npu-tools.git
cd intel-arrow-lake-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.
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.
KDE shortcut declarations:
Meta+Alt+S— Speech to TextMeta+Alt+O— Screenshot OCR
Meta is normally the Windows-logo key. Desktop environments may require one new login before discovering newly installed shortcuts.
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 |
| Incrementally index a text file or directory on the NPU |
| Retrieve ranked local passages by meaning |
| 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 layout/language fallback
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
Intel's compact recognition model focuses on lowercase Latin letters and digits. Tesseract supplements it for punctuation, layout, English, and Arabic. Stylized fonts and very small text may remain imperfect.
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.Last updated111
- FlicenseAqualityCmaintenanceLocal multimodal MCP server for vision, document, audio, video, and GUI automation, all processed locally on Apple Silicon for privacy and security.Last updated9
- Alicense-qualityCmaintenanceEnables AI assistants to diagnose, troubleshoot, and manage PC settings on Windows, macOS, and Linux through natural language commands.Last updatedGPL 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.Last updated51MIT
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-arrow-lake-npu-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server