🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

s2t-mcp-accelerators

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

s2t-mcp-accelerators

MCP server with 36 enterprise tools: vector embeddings, CloudFormation/DynamoDB generation, OAuth/IAM/MFA validation, error analysis, data lake readiness, agent orchestration, resilience patterns, stakeholder interviews, and 12 ACI governance tools for AI

latest
Source
npmnpm
Version
1.4.3
Version published
Maintainers
1
Created
Source

S2T Accelerators MCP Server

npm version License: MIT MCP Compatible Node.js

36 production-ready tools for AI agents -- covering AWS infrastructure, security compliance, AI workflows, stakeholder interviews, agent orchestration, and ACI governance.

Works with Claude Code, Claude Desktop, Cursor, Windsurf, OpenAI ChatGPT, and any MCP-compatible client.

Quick Start

Option 1: npx (no install)

S2T_API_KEY=sk_live_your_key npx s2t-mcp-accelerators

Option 2: Global install

npm install -g s2t-mcp-accelerators

Get an API Key

Visit https://dev.s2tconsulting.com/ai-sales/purchase.html to create an account and get your API key. A free tier is available.

Configuration

Claude Code / Claude Desktop

Add to your MCP config file:

Claude Code: ~/.mcp.json (or project-level .mcp.json) Claude Desktop (macOS/Linux): ~/.config/Claude/claude_desktop_config.json Claude Desktop (Windows): %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "s2t-accelerators": {
      "command": "npx",
      "args": ["-y", "s2t-mcp-accelerators"],
      "env": {
        "S2T_API_KEY": "sk_live_your_api_key_here"
      }
    }
  }
}

Cursor / Windsurf

Add to your MCP settings with the same structure as above.

Streamable HTTP (Remote)

For web-based clients that support Streamable HTTP transport:

URL: https://mcp.s2tconsulting.com/mcp
Header: X-S2T-API-Key: sk_live_your_api_key_here

Environment Variables

VariableDescriptionDefault
S2T_API_KEYYour S2T API key (required)--
S2T_API_URLCustom API endpointProduction API
PORTHTTP server port (HTTP mode only)3001

All 36 Tools

Infrastructure & Cloud (4 tools)

ToolDescription
s2t_generate_cloudformationGenerate production-ready SAM/CloudFormation templates from natural language
s2t_generate_dynamodb_designGenerate optimal DynamoDB single-table designs from entity and access patterns
s2t_validate_oauthValidate OAuth 2.0 configs for Google, Microsoft, GitHub, QuickBooks
s2t_check_data_lake_readinessAssess data lake architecture readiness with scoring and recommendations

Security & Compliance (3 tools)

ToolDescription
s2t_validate_iam_policyValidate IAM policies for security best practices with scoring (0-100)
s2t_validate_mfa_complianceCheck IAM users/roles for MFA compliance with remediation steps
s2t_validate_cli_readinessValidate CLI tool availability and API key health

AI & Embeddings (2 tools)

ToolDescription
s2t_embedGenerate vector embeddings via Amazon Titan for RAG and semantic search
s2t_analyze_error_patternsAnalyze error logs to identify patterns, root causes, and trends

Agent Orchestration (7 tools)

ToolDescription
s2t_classify_action_riskClassify action risk level (LOW/MEDIUM/HIGH/CRITICAL) for agent safety
s2t_route_task_to_agentRoute tasks to optimal agents via semantic matching across 54 domains
s2t_predict_system_issuesPredict system issues from budget trends, error rates, dependencies
s2t_attempt_auto_recoveryMatch errors against known patterns and suggest recovery steps
s2t_execute_with_resilienceConfigure retry + circuit breaker patterns for operations
s2t_manage_agent_memoryPersistent agent memory with namespace isolation across sessions
s2t_submit_agent_taskSubmit tasks to SQS FIFO queue for async multi-agent execution

Distributed Systems (2 tools)

ToolDescription
s2t_create_trace_contextGenerate W3C Trace Context IDs for distributed tracing
s2t_acquire_file_lockFile-based mutex locks with stale lock detection

Interview & Engagement (4 tools)

ToolDescription
s2t_interview_createCreate and start a structured stakeholder interview session
s2t_interview_messageSend a response and receive the next adaptive interview question
s2t_interview_summaryGenerate structured findings from a completed interview session
s2t_interview_listList active and completed interview sessions

Platform (2 tools)

ToolDescription
s2t_catalogList all available accelerators with capabilities and pricing
s2t_usageGet your current API usage statistics and remaining quota

ACI Governance (12 tools)

Tools for Autonomous Corporate Intelligence -- enterprise AI agent governance with immutable audit trails.

ToolDescription
aci_classify_decisionClassify agent actions as APPROVE/ESCALATE/BLOCK with audit logging
aci_financial_gateEstimate financial impact and check budget gates before execution
aci_compliance_checkEvaluate actions against SOC2, GDPR, HIPAA, PCI-DSS frameworks
aci_route_domainRoute governance tasks to domain expert agents with sensitivity tagging
aci_parallel_reviewInitiate parallel governance review across multiple domain agents
aci_synthesize_reviewsCollect and synthesize results from parallel review sessions
aci_log_decisionRecord governance decisions in the immutable audit log
aci_recall_precedentSemantic search over past governance decisions for precedent
aci_record_outcomeRecord actual outcomes to calibrate future classification accuracy
aci_estimate_blast_radiusEstimate blast radius: affected systems, users, recovery time
aci_generate_rollbackGenerate step-by-step rollback plans for high-risk operations
aci_governance_healthAggregate governance health metrics and calibration status

Pricing

TierPriceRate LimitMonthly Limit
Free$010/min100 calls
Developer$29/mo60/min5,000 calls
Business$99/mo300/min50,000 calls
Enterprise$299/mo1,000/minUnlimited

All tiers include access to all 36 tools. ACI governance tools are included in Business tier and above.

Transports

TransportEntry PointProtocol
stdios2t-mcp-acceleratorsMCP over stdin/stdout
HTTPs2t-mcp-accelerators-httpStreamable HTTP + legacy SSE

The stdio transport is used by default with npx. The HTTP transport can be started with:

S2T_API_KEY=sk_live_your_key npx s2t-mcp-accelerators-http
# Listening on http://localhost:3001/mcp

Local Development

git clone https://github.com/S2TConsulting/accelerators-mcp.git
cd accelerators-mcp
npm install
npm run build
npm test

MCP Inspector

Test the server interactively:

npx @modelcontextprotocol/inspector node dist/index.js

Running Locally

export S2T_API_KEY="sk_live_your_api_key"

# Stdio mode
npm start

# HTTP mode
npm run start:http

Testing

npm test              # Run tests once
npm run test:watch    # Watch mode
npm run test:coverage # Coverage report

Contributing

  • Fork the repo and create a feature branch
  • Install dependencies: npm install
  • Make changes in src/
  • Add tests for new functionality
  • Run the test suite: npm test
  • Submit a PR with a clear description

Support

License

MIT -- See LICENSE file for details.

Keywords

mcp

FAQs

Package last updated on 21 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts