- Home
- MCP servers
- MCP System Infra
MCP System Infra
- typescript
2
GitHub Stars
typescript
Language
6 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": {
"deeppath-ai-mcp-system-infra": {
"command": "npx",
"args": [
"-y",
"mcp-system-infra"
]
}
}
}The Intelligent Architecture Recommendation Engine helps you quickly tailor a scalable and reliable technical infrastructure by analyzing your key usage parameters and generating an optimized overall architecture, middleware combinations, and deployment guidance. It delivers practical, ready-to-use plans you can export as reports and diagrams.
How to use
You interact with the MCP by running the engine from your terminal or integrating it into your MCP client workflow. Provide your system’s workload and usage characteristics, and the engine will propose CPU/memory/network configurations, cache sizing and eviction strategy, message queue setup, microservices relevance, and whether to enable distributed GPU-enabled inference clusters. You can then export a Markdown report and an architecture diagram with a single action.
How to install
Prerequisites you need on your machine before installing: Node.js and npm, or a compatible runtime environment for executing MCP commands.
# 1) Install the MCP client globally (example command)
npm install -g mcp-system-infra
# 2) Verify installation
mcp-system-infra --version
# 3) Run a quick setup or diagnostic (optional)
#mcp-system-infra --diagnose
Additional configuration and usage notes
To run the MCP server via the CLI, you can use the following command snippet which demonstrates invoking the MCP engine directly.
{
"mcpServers": {
"mcp-system-infra": {
"command": "npx",
"args": [
"-y",
"mcp-system-infra"
]
}
}
}