- Home
- MCP servers
- S2T Accelerators
S2T Accelerators
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"s2tconsulting-accelerators-mcp": {
"command": "npx",
"args": [
"s2t-mcp-accelerators"
],
"env": {
"S2T_API_KEY": "sk_live_your_api_key_here"
}
}
}
}You can run the S2T Accelerators MCP Server locally or alongside Claude Desktop to access enterprise accelerators for vector embeddings, CloudFormation generation, and OAuth validation. This MCP server exposes practical tools that empower retrieval-augmented generation, infrastructure templating, and secure OAuth configuration checks through a unified API surface.
How to use
You will connect your MCP client (for example, Claude Desktop) to the S2T Accelerators MCP Server by running the MCP client command and providing your API key. Once connected, you can invoke the three core accelerators to embed text, generate infrastructure templates, and validate OAuth configurations. Use cases include building semantic search pipelines, producing production-ready CloudFormation/SAM templates from natural language descriptions, and validating OAuth setups before deployment.
How to install
Prerequisites you need installed on your system: Node.js and npm (Node.js 14+ recommended). You will install the MCP package globally, then configure your API key and client with Claude Desktop.
# Install the MCP server package globally
npm install -g s2t-mcp-accelerators
# Optional: verify installation
s2t-mcp-accelerators --version
Additional setup and usage notes
Obtain your API key from the S2T API portal and configure Claude Desktop to connect to the MCP server. The Mobius integration requires you to set the API key in the environment the MCP server runs in.
{
"mcpServers": {
"s2t-accelerators": {
"command": "npx",
"args": ["s2t-mcp-accelerators"],
"env": {
"S2T_API_KEY": "sk_live_your_api_key_here"
}
}
}
}
Notes for Claude Desktop configuration
Place the configuration in your Claude Desktop config file. On macOS/Linux, use ~/.config/Claude/claude_desktop_config.json. On Windows, use %APPDATA%\Claude\claude_desktop_config.json. After adding the config, restart Claude Desktop to activate the tools.
{
"mcpServers": {
"s2t-accelerators": {
"command": "npx",
"args": ["s2t-mcp-accelerators"],
"env": {
"S2T_API_KEY": "sk_live_your_api_key_here"
}
}
}
}
Available tools
s2t_embed
Generate vector embeddings for text, supporting automatic chunking for long documents. Useful for RAG, semantic search, and document similarity.
s2t_generate_cloudformation
Create CloudFormation/SAM templates from natural language descriptions. Outputs a complete YAML template with best practices for resources like Lambda, API Gateway, DynamoDB, S3, SQS, SNS, EventBridge, and IAM.
s2t_validate_oauth
Validate OAuth 2.0 configurations and detect common misconfigurations such as invalid client IDs, insecure redirect URIs, missing scopes, and deprecated endpoints.
s2t_catalog
List all available S2T accelerators with capabilities and pricing.
s2t_usage
Check API usage statistics and remaining quota.