{"id":51061056,"url":"https://github.com/marianfoo/sap-mcp-servers","last_synced_at":"2026-06-23T02:01:07.439Z","repository":{"id":361265495,"uuid":"1253792211","full_name":"marianfoo/sap-mcp-servers","owner":"marianfoo","description":"Monorepo for SAP MCP servers (API Hub, Road Map Explorer, SAP Notes) and their shared SAP authentication module — npm workspaces.","archived":false,"fork":false,"pushed_at":"2026-06-08T03:35:55.000Z","size":2036,"stargazers_count":6,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-16T21:31:53.344Z","etag":null,"topics":["ai-agents","mcp","model-context-protocol","npm-workspaces","playwright","sap","sap-api-hub","sap-notes","sap-roadmap"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marianfoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-29T20:24:07.000Z","updated_at":"2026-06-16T20:13:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/marianfoo/sap-mcp-servers","commit_stats":null,"previous_names":["marianfoo/sap-mcp-servers"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/marianfoo/sap-mcp-servers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marianfoo%2Fsap-mcp-servers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marianfoo%2Fsap-mcp-servers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marianfoo%2Fsap-mcp-servers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marianfoo%2Fsap-mcp-servers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marianfoo","download_url":"https://codeload.github.com/marianfoo/sap-mcp-servers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marianfoo%2Fsap-mcp-servers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34672250,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","mcp","model-context-protocol","npm-workspaces","playwright","sap","sap-api-hub","sap-notes","sap-roadmap"],"created_at":"2026-06-23T02:01:06.296Z","updated_at":"2026-06-23T02:01:07.419Z","avatar_url":"https://github.com/marianfoo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SAP MCP Servers\n\nMonorepo for the SAP **Model Context Protocol (MCP)** servers and the shared SAP authentication\nmodule they build on. Managed with **npm workspaces**.\n\nThese servers let an AI agent gather evidence from official SAP sources — the Business Accelerator\nHub, Road Map Explorer, and SAP Notes — from behind SAP login. They power the\n[SAP API Policy evidence skill](https://github.com/marianfoo/sap-api-policy-skill), but are usable\nstandalone with any MCP client (Claude Code, Cursor, Codex, …).\n\n## Packages\n\n| Package (npm) | Dir | Role |\n| --- | --- | --- |\n| [`@marianfoo/sap-mcp-auth`](packages/auth) | `packages/auth` | Shared SAP IAS/SSO browser-login + session module (Playwright). Used by the three servers below. |\n| [`sap-api-hub-mcp`](packages/api-hub) | `packages/api-hub` | MCP server for the SAP Business Accelerator Hub — Published-API status, specs, docs. |\n| [`sap-roadmap-mcp`](packages/roadmap) | `packages/roadmap` | MCP server for SAP Road Map Explorer — future/planned features (planning only). |\n| [`sap-note-search-mcp`](packages/notes) | `packages/notes` | MCP server for searching SAP Notes / KBAs. |\n\nEach package is **published to npm independently under its own name** — the monorepo is for\ndevelopment. Consumers still install a single server (`npx -y sap-api-hub-mcp`, etc.).\n\n## Quick start\n\n```bash\ngit clone https://github.com/marianfoo/sap-mcp-servers.git\ncd sap-mcp-servers\nnpm install                # installs all workspaces + links @marianfoo/sap-mcp-auth locally\nnpm run build              # builds auth first, then the three servers\nnpm run install:browsers   # one-time: Chromium for Playwright login (also auto-runs on install)\n```\n\n`npm install` creates a single root lockfile, hoists shared dependencies, and symlinks\n`@marianfoo/sap-mcp-auth` into each server from `packages/auth` — so you can change the auth module\nand rebuild without publishing it.\n\n## Running a server\n\nEach server is a stdio/HTTP MCP server. See each package's README for its tools and environment:\n\n- [`packages/api-hub/README.md`](packages/api-hub/README.md)\n- [`packages/roadmap/README.md`](packages/roadmap/README.md)\n- [`packages/notes/README.md`](packages/notes/README.md)\n\nFor wiring them into an MCP client (Claude Code / Cursor / Codex) with auth, MFA, and a **single\nshared SSO login** across all three, see the skill's\n**[MCP_SETUP.md](https://github.com/marianfoo/sap-api-policy-skill/blob/main/MCP_SETUP.md)**.\n\n## Shared SAP authentication\n\nAll three servers authenticate to SAP the same way, via `@marianfoo/sap-mcp-auth`:\n\n- `SAP_USERNAME` / `SAP_PASSWORD` (interactive IAS login on first run), **or** a SAP Passport client\n  certificate (`.pfx`), selected via `AUTH_METHOD`.\n- A shared **SSO storage-state** file (`SAP_SSO_STORAGE_STATE`) lets you **log in once** and have all\n  three servers reuse the session — see MCP_SETUP.md → *\"Authenticate once for all three\"*.\n\nNever commit credentials, `.env`, `*.pfx`, or `*-token-cache.json` — they are gitignored.\n\n## Development\n\n- **Build order matters:** `packages/auth` must build before the servers (they import its types).\n  `npm run build` handles this; `npm run build:auth` builds just the auth module.\n- Build one package: `npm run build -w sap-roadmap-mcp`.\n- Watch/dev a server: `npm run dev -w sap-api-hub-mcp`.\n- Typecheck / test everything: `npm run typecheck` / `npm test`.\n\n## Contributing \u0026 commit messages\n\nCommits follow [Conventional Commits](https://www.conventionalcommits.org/) — `type(scope): subject`,\ne.g. `fix(auth): refresh expired SSO cookie`. A husky `commit-msg` hook + a CI job lint this. Allowed\nscopes: `auth`, `api-hub`, `roadmap`, `notes`, `deps`, `release`, `ci`, `repo`. See\n**[AGENTS.md](AGENTS.md)** for the full contributor/dev guide.\n\n## Releases\n\nReleasing is automated with **[release-please](https://github.com/googleapis/release-please)** —\nlanding conventional commits on `main` opens a per-package \"release PR\"; merging it bumps that\npackage's version + `CHANGELOG`, tags it (e.g. `sap-api-hub-mcp-v0.1.2`), and the\n[`release.yml`](.github/workflows/release.yml) workflow publishes it to npm with provenance (OIDC).\nNo manual `npm version` / `npm publish`. Setup details and the npm trusted-publisher one-time config\nare in **[AGENTS.md → Commits, CI \u0026 releasing](AGENTS.md)**.\n\n## Licensing\n\nAll packages are licensed **Apache-2.0** — see each package's `LICENSE` file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarianfoo%2Fsap-mcp-servers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarianfoo%2Fsap-mcp-servers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarianfoo%2Fsap-mcp-servers/lists"}