sap-tutorials-content

Fetch and search official SAP developer tutorials via the public developers.sap.com API.

Updated May 18, 2026
One-click install
npx skills add https://github.com/Melik1986/axon-erp-api --skill sap-tutorials-content-melik1986
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: sap-tutorials-content
Source: https://github.com/Melik1986/axon-erp-api/tree/main/cursor/skills/sap-tutorials-content
Command: npx skills add https://github.com/Melik1986/axon-erp-api --skill sap-tutorials-content-melik1986

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Agents and developers often need official SAP tutorial content but lack a documented, authentication-free way to discover, fetch, and search it programmatically. ## Core Features & Use Cases - Catalog Discovery: Retrieve the full catalog of missions, groups, and tutorials as JSON via /build/catalog and navigation mappings. - Tutorial Retrieval: Fetch a specific tutorial as rendered HTML or structured .model.json by its lowercase slug. - Anonymous Search: Query the OData v4 search service and public MCP endpoints for ranked tutorials, missions, tags, and facets without any API key. - Use Case: An agent answering "How do I deploy a CAP app to SAP BTP?" can search the catalog, fetch the matching tutorial's structured JSON, and quote the exact steps. ## Quick Start Ask the agent to search developers.sap.com for tutorials about CAP and summarize the top result.

Frequently Asked Questions about sap-tutorials-content

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search SAP developer tutorials programmatically?▼

Use the anonymous OData v4 search service at developers.sap.com/search with $search or $filter query parameters on SearchableItems. Typed functions like search_tutorials and list_missions return structured results without any API key.

How to fetch a specific SAP tutorial as JSON?▼

Request /tutorials/{slug}.model.json on developers.sap.com to get the structured JSON representation of a tutorial. Slugs must be lowercase; mixed-case requests receive a 301 redirect to the canonical form.

Does the developers.sap.com API require authentication?▼

No, the read surface is fully anonymous with no login, token, or API key. Catalog, navigation, tutorial content, search, and the public MCP endpoints are all read-only and publicly accessible.

Can I connect Claude to SAP tutorial search via MCP?▼

Yes, developers.sap.com exposes a public MCP server over Streamable HTTP at /mcp/search with tools like search_tutorials and get_tutorial. Add it with claude mcp add --transport http or any MCP client config.

Why does a tutorial request return 404 or 429?▼

A 404 means the tutorial or concept is not published under that slug. A 429 indicates IP-based rate limiting on the shared public service, so back off and respect ETag and Cache-Control headers instead of retrying aggressively.