Abapilot MCP Server

ABAPilot is an in-system AI platform for SAP: natural-language business queries and AI-assisted ABAP development on the systems you already run - SAP ECC 6.0 through on-premise S/4HANA (any ABAP-based SAP instance). No BTP, no ADT, no RISE prerequisites. Deploys in ~2 hours. Its 8 documented tools cover sap, table. It runs locally over stdio via the published package.

People connecting this server to Claude, Cursor, VS Code, or another MCP client. The project is written in JavaScript.

VERIFIED ACTIVE

LAST COMMIT 2026-08-19 · ★ 3 · #207 OF 848 MAINTAINED OTHER · VERIFIED 2026-08-25

MIT · JavaScript servers · how we verify → /methodology

01 · Install Abapilot

before you install - you'll need

Set ABAPILOT_URL, ABAPILOT_USER, ABAPILOT_PASSWORD, ABAPILOT_CLIENT before connecting.

Claude Code

claude mcp add nicohern-abapilot-mcp -- npx -y abapilot

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "nicohern-abapilot-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "abapilot"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

repo age created 2026-07-22 - young repo, little track record yet

license MIT - declared in the repository

npm package abapilot - unscoped; check the name against the project README before installing

registry namespace io.github.NicoHern is GitHub-verified and matches the repo owner

03 · What Abapilot can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

What you can build

With this server connected, an agent can query rows from any SAP table with optional WHERE filtering, under the calling user's authorizations, and search the SAP Data Dictionary by keyword ('vendor' finds LFA1, LFB1, …).

The 8 tools it gives your agent

Extracted from the project's README - what ABAPilot lets an agent do.

sap_read_table_data
- query rows from any SAP table with optional WHERE filtering, under the calling user's authorizations
sap_read_table_structure
- field definitions of a table or structure: names, types, lengths, key fields, descriptions
sap_search_tables
- search the SAP Data Dictionary by keyword ('vendor' finds LFA1, LFB1, …)
sap_read_code
- read ABAP source from the connected system: programs, classes, function groups, includes, interfaces
sap_read_where_used
- cross-reference lookup (like SE84), forward and reverse
sap_syntax_check
- validate ABAP source against the connected system's release-accurate syntax rules (ECC 6.0 included)
sap_read_dumps
- read ST22 runtime errors (short dumps)
sap_read_jobs
- read SM37 background jobs: status, runtime, scheduling

04 · Who maintains Abapilot

ABAPilot is maintained by nicohern. It's the only MCP server we track from this author; the repo dates to Jul 2026.

05 · Facts

category
other - ranked #207 of 848 actively-maintained other servers as of 2026-08-25.
registry
io.github.NicoHern/abapilot-mcp (active, first published 2026-07-22 · 2 versions)
packages
npm:abapilot

06 · Abapilot FAQ

Is Abapilot still maintained?

Yes - as of 2026-08-25, its last commit was 2026-08-19. We re-verify nightly.

What can Abapilot do?

With this server connected, an agent can query rows from any SAP table with optional WHERE filtering, under the calling user's authorizations, and search the SAP Data Dictionary by keyword ('vendor' finds LFA1, LFB1, …).

How do I install Abapilot?

Run `npx -y abapilot`. The README documents 4 environment variables (ABAPILOT_URL, ABAPILOT_USER, ABAPILOT_PASSWORD…) to set first. Set ABAPILOT_URL, ABAPILOT_USER, ABAPILOT_PASSWORD, ABAPILOT_CLIENT before connecting. You can also paste the ready-made client config above.

Does Abapilot run locally?

Yes - it's a stdio server: it runs on your machine (via npx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to Abapilot