Stats
Actions
Tags
From ARC-1 — SAP ABAP for Claude
Connects to SAP ERP for data querying, modification, and system administration. Requires SAP URL, user, password, and client. Supports free SQL, data preview, and transport writes.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"arc-1": {
"command": "npx",
"args": [
"-y",
"arc-1"
],
"env": {
"SAP_URL": "${user_config.sap_url}",
"SAP_USER": "${user_config.sap_user}",
"SAP_CLIENT": "${user_config.sap_client}",
"SAP_INSECURE": "${user_config.sap_insecure}",
"SAP_LANGUAGE": "${user_config.sap_language}",
"SAP_PASSWORD": "${user_config.sap_password}",
"SAP_ALLOW_WRITES": "${user_config.sap_allow_writes}",
"SAP_ALLOW_FREE_SQL": "${user_config.sap_allow_free_sql}",
"SAP_ALLOWED_PACKAGES": "${user_config.sap_allowed_packages}",
"SAP_ALLOW_GIT_WRITES": "${user_config.sap_allow_git_writes}",
"SAP_ALLOW_DATA_PREVIEW": "${user_config.sap_allow_data_preview}",
"SAP_ALLOW_TRANSPORT_WRITES": "${user_config.sap_allow_transport_writes}"
}
}
}
}Replace placeholder values for: SAP_PASSWORD
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
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
SAP_URL=${user_config.sap_url}SAP_USER=${user_config.sap_user}SAP_CLIENT=${user_config.sap_client}SAP_INSECURE=${user_config.sap_insecure}SAP_LANGUAGE=${user_config.sap_language}SAP_PASSWORD=${user_config.sap_password}SAP_ALLOW_WRITES=${user_config.sap_allow_writes}SAP_ALLOW_FREE_SQL=${user_config.sap_allow_free_sql}SAP_ALLOWED_PACKAGES=${user_config.sap_allowed_packages}SAP_ALLOW_GIT_WRITES=${user_config.sap_allow_git_writes}SAP_ALLOW_DATA_PREVIEW=${user_config.sap_allow_data_preview}SAP_ALLOW_TRANSPORT_WRITES=${user_config.sap_allow_transport_writes}Sensitive values you must provide — never committed to source control
npx claudepluginhub arc-mcp/arc-1 --plugin arc-1