npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mcp-abap-adt/proxy

v0.1.8

Published

MCP proxy server for SAP ABAP ADT - proxies local requests to cloud-llm-hub with JWT authentication

Readme

@mcp-abap-adt/proxy

MCP proxy server for SAP ABAP ADT - proxies local requests to MCP servers with JWT authentication.

Overview

This package acts as a simple proxy between local MCP clients (like Cline) and any MCP server. It intercepts MCP requests, adds JWT authentication tokens, and forwards them to the target MCP server. The MCP server URL is obtained from the service key for the BTP destination.

Purpose

Enable local MCP clients to connect to remote MCP servers with automatic JWT token management via @mcp-abap-adt/auth-broker. The proxy adds authentication headers and forwards requests transparently.

Features

  • JWT Token Management - Automatic token retrieval, caching, and refresh via auth-broker
  • Service Key Based - MCP server URL is obtained from service key for BTP destination
  • Error Handling - Retry logic, circuit breaker, and comprehensive error handling
  • Multiple Transport Modes - HTTP, SSE, and stdio support
  • Configuration Flexibility - Environment variables, config files, or defaults

Quick Start

Installation

npm install -g @mcp-abap-adt/proxy

Basic Usage

# Start proxy server (in-memory session storage, secure)
mcp-abap-adt-proxy

# With BTP destination
mcp-abap-adt-proxy --btp=ai

# Enable file-based session storage (persists tokens to disk)
mcp-abap-adt-proxy --btp=ai --unsafe

Configuration

The proxy supports multiple configuration methods:

  • Command-line parameters (highest priority)
  • YAML/JSON configuration files - See YAML Configuration Guide
  • Environment variables
  • Default values (lowest priority)

Quick Example (YAML config):

# Copy example config from documentation
cp docs/mcp-proxy-config.example.yaml mcp-proxy-config.yaml

# Edit mcp-proxy-config.yaml with your settings

# Run with config file
mcp-abap-adt-proxy --config=mcp-proxy-config.yaml
# Or short form:
mcp-abap-adt-proxy -c mcp-proxy-config.yaml

Client Configuration

For detailed setup instructions for Cline and GitHub Copilot, see the Client Setup Guide.

Quick Example (Cline):

{
  "mcpServers": {
    "mcp-abap-adt-proxy": {
      "disabled": false,
      "timeout": 60,
      "type": "streamableHttp",
      "url": "http://localhost:3001/mcp/stream/http",
      "headers": {
        "x-btp-destination": "btp-cloud"
      }
    }
  }
}

Required Headers:

  • x-btp-destination - Destination name for BTP Cloud authorization token and MCP server URL

Command Line Overrides:

  • --btp=<destination> - Overrides x-btp-destination header (takes precedence)
  • --url=<url> - Overrides MCP server URL (required if service key lacks URL)
  • --browser=<browser> - Browser to use: system (default), chrome, edge, firefox, headless
  • --browser-auth-port=<port> - Port for OAuth2 callback (default: 3333)
  • --unsafe - Enables file-based session storage (persists tokens to disk). By default, sessions are stored in-memory (secure, lost on restart)

How It Works:

The proxy uses BTP/XSUAA authentication:

  1. BTP Authentication (if --btp or x-btp-destination is present):
    • Uses AuthorizationCodeProvider (browser-based OAuth2 flow)
    • Eager Authentication: Opens browser immediately on startup to get token
    • Injects/overwrites Authorization: Bearer <token> header
    • MCP server URL obtained from BTP destination service key OR injected via --url
    • Service key format: contains uaa (url, clientid, clientsecret)

BTP Authentication Mode (with --btp):

  1. Proxy starts → Opens browser for login (Eager Auth) → Gets/Refreshes JWT token
  2. x-btp-destination (or --btp) → Adds Authorization: Bearer <token> header
  3. MCP server URL obtained from service key OR --url parameter

Documentation

How It Works

The proxy performs the following steps for each request:

  1. Extract Headers: Reads x-btp-destination header
  2. Apply Command Line Overrides: --btp parameter overrides header (if provided)
  3. Validate Routing Requirements: Requires x-btp-destination/--btp
  4. BTP Authentication (if x-btp-destination or --btp is provided):
    • Uses AuthorizationCodeProvider (browser-based login)
    • Eagerly obtains token on startup (if configured via --btp)
    • Retrieves JWT token using cached refresh token or opens browser
    • Injects/overwrites Authorization: Bearer <token> header
  5. Get MCP Server URL:
    • From service key for x-btp-destination
  6. Forward Request: Sends request to MCP server URL with all injected headers
  7. Return Response: Forwards the response back to the client

Example Request Flow

Cline → Proxy (adds BTP token) → Target MCP Server → Proxy → Cline

The proxy is transparent - it only adds authentication headers and forwards requests.

Configuration

Configuration

Environment Variables

export MCP_HTTP_PORT=3001
export LOG_LEVEL=info
export MCP_PROXY_UNSAFE=true  # Enable file-based session storage (optional)

Configuration File

Create mcp-proxy-config.json:

{
  "httpPort": 3001,
  "logLevel": "info",
  "maxRetries": 3,
  "circuitBreakerThreshold": 5,
  "unsafe": false
}

Session Storage:

  • unsafe: false (default) - Session data stored in-memory (secure, lost on restart)
  • unsafe: true - Session data persisted to disk (tokens saved to .env files)

See Configuration Guide for complete options.

Error Handling & Resilience

  • Retry Logic - Exponential backoff for failed requests
  • Circuit Breaker - Prevents cascading failures
  • Token Refresh - Automatic token refresh on expiration
  • Connection Pooling - Efficient resource management
  • Request Timeouts - Configurable timeout handling

Requirements

  • Node.js >= 18.0.0
  • npm >= 9.0.0

Testing Tools

Start Both Servers for Testing

Use the included script to start both mcp-abap-adt and mcp-abap-adt-proxy simultaneously:

# Using npm script
npm run test:servers

# Direct execution
node tools/start-servers.js

# With SSE transport
node tools/start-servers.js --transport=sse

The script automatically:

  • Starts ADT server on port 3000 (HTTP) or 3001 (SSE)
  • Starts Proxy server on port 3001 (HTTP) or 3002 (SSE)
  • Generates mcpUrl based on ADT server configuration
  • Ensures both servers use the same transport protocol

See tools/README.md for complete documentation.

Development Status

Core Features Complete

  • ✅ Project Setup & Foundation
  • ✅ Request Interception & Analysis
  • ✅ JWT Token Management & Proxy Forwarding
  • ✅ Configuration & Environment
  • ✅ Error Handling & Resilience
  • ✅ Testing Tools (tools/start-servers.js)
  • ✅ Documentation

🚧 Future Work

  • ⏳ Unit Tests
  • ⏳ Performance & Optimization
  • ⏳ Deployment & Publishing

See ROADMAP.md for details.

License

MIT

Links