- Home
- MCP servers
- Stakpak
Stakpak
- typescript
9
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": {
"stakpak-mcp": {
"command": "npx",
"args": [
"@stakpak/mcp@latest",
"--output=resource"
],
"env": {
"STAKPAK_API_KEY": "<your-stakpak-api-key>"
}
}
}
}This MCP server connects to the Stakpak API to enable you to generate infrastructure code and interact with the Stakpak service from your development environment. You can run it locally with your preferred MCP client, supply your API key, and use the provided tools to generate infrastructure code and manage development tasks.
How to use
You interact with the Stakpak MCP server from your MCP client by configuring an MCP server entry and supplying your API key. The server exposes tools you can call to generate infrastructure code or perform development-related tasks. Each client integrates by loading the MCP server via a local runtime (such as npx or a project-specific integration) and then invoking the available tools.
How to install
Prerequisites: ensure you have Node.js and npm or an alternative runtime installed on your system. You may also need bun depending on the exact setup you follow. You will add a local MCP server entry to your client’s configuration to run the Stakpak MCP server.
Available tools
generate_infrastructure_code
Generates infrastructure code for a project using the Stakpak MCP server.
setup_development
Guides you through setting up the development environment (clone, install dependencies, build) and prepares the MCP server for use.