SAP MCP Quick Context
sap_quick_contextFree single-call bootstrap aggregator. Returns a compact markdown-like summary with server version, total tools count, tools by category, pricing tiers summary, premium plugins/capabilities count, bundled skills list, and nextAction guidance. Pass agentKnownVersion with the version you currently know to get skillsUpdateRequired + skillsContents (full SKILL.md inline) when the server version differs — this lets you auto-update your local skills in 1 call without a separate sap_skills_bundle. Use this instead of calling sap_agent_start, sap_pricing_catalog, sap_premium_plugin_catalog, sap_skills_list, and sap_get_tool_category_summary separately to reduce bootstrap from 5+ tool calls to 1.
SAP MCP execution guidance: Intent: SAP MCP tool workflow. Pricing: free; call directly without x402. Routing: free hosted call; call directly and keep it small/exact when possible. Signer boundary: hosted reads/builders never receive keypair bytes; value-moving results must be finalized locally when signing is required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| intent | No | Optional user intent for the embedded sessionContextPacket. Use this to route bootstrap toward paid calls, registry writes, swaps, escrow, external x402 agents, premium streams, balance reads, or discovery. | |
| compact | No | When true (default), the summary string is kept compact. When false, a more readable multi-line summary is returned. | |
| include | No | Optional subset of section names to include (version, tools, pricing, premium, skills, nextAction). When omitted, all sections are returned. | |
| maxChars | No | Maximum character length for the summary string. Defaults to 4000. The summary is truncated if it exceeds this length. | |
| agentKnownVersion | No | The SAP MCP version the agent currently knows about. When this differs from the server version, skillsUpdateRequired is set to true and skillsContents is populated with full SKILL.md contents. Omit to always force a skills update (first bootstrap). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skills | Yes | Bundled skill names available via sap_skills_bundle. | |
| success | Yes | Whether the quick context summary was generated. | |
| summary | Yes | Compact markdown-like summary string suitable for agent context loading. | |
| version | Yes | SAP MCP server version. | |
| truncated | Yes | Whether the summary was truncated to fit within maxChars. | |
| nextAction | Yes | Concrete next action for the agent after loading this context. | |
| totalTools | Yes | Total number of registered MCP tools. | |
| environment | Yes | Server environment summary: network (mainnet/devnet), mode (hosted-api/local-dev-keypair/readonly), authType (none/bearer), rateLimitPerMinute. | |
| toolCatalog | Yes | Secret-free modular tool catalog summary with selected modules, payment tiers, signer-boundary policy buckets, and hosted/local bridge hints. | |
| pricingTiers | Yes | Pricing tier names available on the hosted server. | |
| serverCommit | Yes | Git commit hash of the running server build. Changes on every deploy even without version bump. | |
| premiumPlugins | Yes | Number of discoverable premium plugins. | |
| skillsContents | No | Full SKILL.md contents of all bundled skills, included only when skillsUpdateRequired is true. Each entry has {name, content}. | |
| recommendedFlow | Yes | Recommended agent workflow based on server mode. Hosted: build unsigned → sign locally. Local: preview → sign → submit. | |
| toolsByCategory | Yes | Tool counts by category (sap, sns, agentKit, premium, etc.). | |
| premiumCapabilities | Yes | Number of premium capabilities across all plugins. | |
| sessionContextPacket | Yes | Machine-readable SAP MCP routing, freshness, memory, proof-tape, and forbidden-action rules for this session. | |
| skillsUpdateRequired | Yes | True when the server version differs from agentKnownVersion (or agentKnownVersion was omitted). When true, skillsContents contains the full SKILL.md contents of all bundled skills. | |
| premiumProvidersReady | Yes | Number of premium providers with configured environment variables. |