Stats
Actions
Tags
From sap-sac-scripting
Local Node.js MCP server connecting to SAC service for deployment operations. Uses OAuth auth (base URL, client ID, token URL, client secret). Requires secrets.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"sac-mcp": {
"command": "node",
"args": [
"${SAC_MCP_PATH}/build/index.js"
],
"env": {
"SAC_BASE_URL": "${SAC_BASE_URL}",
"SAC_CLIENT_ID": "${SAC_CLIENT_ID}",
"SAC_TOKEN_URL": "${SAC_TOKEN_URL}",
"SAC_CLIENT_SECRET": "${SAC_CLIENT_SECRET}"
}
}
}
}Replace placeholder values for: SAC_TOKEN_URL, SAC_CLIENT_SECRET
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
nodeCommand-line arguments passed to the server process
Environment variables set when the server starts
SAC_BASE_URL=${SAC_BASE_URL}SAC_CLIENT_ID=${SAC_CLIENT_ID}SAC_TOKEN_URL=${SAC_TOKEN_URL}SAC_CLIENT_SECRET=${SAC_CLIENT_SECRET}Sensitive values you must provide — never committed to source control
Declared capabilities of this MCP server
npx claudepluginhub secondsky/sap-skills --plugin sap-sac-scripting