Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub secondsky/sap-skills --plugin sap-sac-scriptingCopy 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
Share bugs, ideas, or general feedback.