36 tools for AWS infrastructure, security compliance, AI workflows, and ACI governance.
MCPpedia last refreshed this data
io.github.S2TConsulting/accelerators is an MCP server that 36 tools for AWS infrastructure, security compliance, AI workflows, and ACI governance. Its tool list has not been published yet over stdio and http, requires no API key, and scores 75/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"s2t-accelerators": {
"env": {
"S2T_API_KEY": "sk_live_your_api_key_here"
},
"args": [
"s2t-mcp-accelerators"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server providing Claude with access to S2T's battle-tested enterprise accelerators:
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 's2t-mcp-accelerators' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked s2t-mcp-accelerators against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud / security
MCP Server for GCP environment for interacting with various Observability APIs.
Regression testing for MCP servers. Checks capabilities, invokes tools, detects schema drift.
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.S2TConsulting/accelerators and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server providing Claude with access to S2T's battle-tested enterprise accelerators:
npm install -g s2t-mcp-accelerators
Visit https://dev.s2tconsulting.com/ai-sales/purchase.html to create an account and get your API key.
Add to your Claude Desktop config file:
macOS/Linux: ~/.config/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"s2t-accelerators": {
"command": "npx",
"args": ["s2t-mcp-accelerators"],
"env": {
"S2T_API_KEY": "sk_live_your_api_key_here"
}
}
}
}
Restart Claude Desktop to activate the tools.
Generate vector embeddings for text. Supports automatic chunking for long documents.
Input:
- text: string (required) - Text to embed (max 100,000 characters)
- model: "amazon.titan-embed-text-v2:0" | "amazon.titan-embed-text-v1"
- chunk_size: number (100-2000, default: 512)
- chunk_overlap: number (0-500, default: 50)
Output: Embedding vectors with metadata
Use cases: RAG systems, semantic search, document similarity, knowledge base indexing
Generate CloudFormation/SAM templates from natural language descriptions.
Input:
- description: string (required) - What infrastructure you need (max 5000 chars)
- format: "sam" | "cloudformation" (default: sam)
- include_parameters: boolean (default: true)
- include_outputs: boolean (default: true)
Output: Complete YAML template with best practices
Supported resources: Lambda, API Gateway, DynamoDB, S3, SQS, SNS, EventBridge, IAM
Validate OAuth 2.0 configuration and detect common misconfigurations.
Input:
- provider: "google" | "microsoft" | "github" | "quickbooks" | "generic"
- client_id: string (required)
- redirect_uris: string[] (required)
- scopes: string[] (required)
- token_endpoint: string (optional, for generic)
- authorization_endpoint: string (optional, for generic)
Output: Validation results, warnings, recommendations
Detects: Invalid client IDs, insecure redirect URIs, missing scopes, deprecated endpoints
List all available S2T accelerators with their capabilities and pricing.
Check your API usage statistics and remaining quota.
| Tier | Price | Rate Limit | Monthly Limit |
|---|---|---|---|
| Free | $0 | 10/min | 100 |
| Developer | $29/mo | 60/min | 5,000 |
| Business | $99/mo | 300/min | 50,000 |
| Enterprise | $299/mo | 1,000/min | Unlimited |
git clone https://github.com/S2TConsulting/accelerators-mcp.git
cd accelerators-mcp
npm install
npm run build
npm test
Test the server interactively with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js
# Set API key
export S2T_API_KEY="sk_live_your_api_key"
# Run server
npm start
npm test # Run tests once
npm run test:watch # Watch mode
npm run test:coverage # Coverage report
| Variable | Description | Default |
|---|