Intel NPU Tools MCP Server

Intel NPU Tools MCP Server

Enables MCP clients to leverage the Intel Arrow Lake NPU for local speech transcription, screenshot OCR, private semantic search, and hardware diagnostics, all processed locally.

Category
访问服务器

README

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.

Validate Release License: MIT

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.

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 Boost is 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:ad1d
  • Intel 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_vpu
  • KDE 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-info

Expected output includes:

"NPU": "Intel(R) AI Boost"

If the driver is already installed, omit --with-driver:

./install.sh

To skip automatic MCP client registration:

./install.sh --without-mcp

The 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 status

Indexing 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 Text
  • Meta+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-mcp

It exposes:

Tool Purpose
npu_status Verify OpenVINO and list available devices
transcribe_audio Transcribe a local audio file on the NPU
record_and_transcribe Record the default microphone for a bounded duration
ocr_image Extract English/Arabic text from an image
ocr_current_monitor Capture and OCR the current monitor
semantic_index Incrementally index a text file or directory on the NPU
semantic_search Retrieve ranked local passages by meaning
semantic_index_status Show indexed roots, files, chunks, and database path
open_speech_app Open the interactive speech application
open_ocr_selector 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 pipelines

All 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_vpu

Update the kernel/firmware for your distribution before replacing unrelated graphics drivers.

NPU exists but OpenVINO shows only CPU/GPU

groups
ls -l /dev/accel/accel0

The 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.wav

OCR 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 src

See CONTRIBUTING.md for contribution guidelines and proposed areas of work.

Uninstall

./uninstall.sh

The 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.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选
mcp-server-qdrant

mcp-server-qdrant

这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。

官方
精选
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选