TigerData Pulumi MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TigerData Pulumi MCP Serverlist my TimescaleDB services"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TigerData Pulumi MCP Server
Note: If you are using this MCP server via an MCP client (such as Cursor), you do not need to run or manage the server process manually. The client will handle all communication with the MCP server for you.
This project provides a server interface for managing TigerData Cloud services using Pulumi automation.
Quick Setup for MCP Clients (e.g., Cursor)
In your main project's
.envfile, add:PULUMI_PROJECT_PATH=/absolute/path/to/your/project/infraSet the
DOTENV_PATHenvironment variable in your shell profile:export DOTENV_PATH=/absolute/path/to/your/project/.envThis ensures the MCP server can always find and use your project's
.envfile, no matter where the MCP server is installed or run. Setting it in your shell profile makes it available in every terminal session.Configure your MCP client (e.g., Cursor) as needed (e.g., with
mcp.json).
That's it! You can now use all MCP features in your client, and the MCP server will automatically use your configuration.
MCP Configuration Setup
For Cursor IDE
Create or update your MCP configuration file at ~/.cursor/mcp.json:
{
"mcpServers": {
"tigerdata-pulumi": {
"command": "node",
"args": [
"/absolute/path/to/tigerdata-pulumi-mcp-server/dist/index.js"
],
"env": {
"PULUMI_PROJECT_PATH": "/absolute/path/to/your/project/infra"
}
}
}
}Example paths:
If your server is at:
/Users/username/projects/tigerdata-pulumi-mcp-server/And your Pulumi infra is at:
/Users/username/projects/my-project/infra/Your config would be:
{
"mcpServers": {
"tigerdata-pulumi": {
"command": "node",
"args": [
"/Users/username/projects/tigerdata-pulumi-mcp-server/dist/index.js"
],
"env": {
"PULUMI_PROJECT_PATH": "/Users/username/projects/my-project/infra"
}
}
}
}For Other MCP Clients
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"tigerdata-pulumi": {
"command": "node",
"args": ["/path/to/tigerdata-pulumi-mcp-server/dist/index.js"],
"env": {
"PULUMI_PROJECT_PATH": "/path/to/your/project/infra"
}
}
}
}Anthropic's Inspector (Debugging Tool)
Add this to your MCP config for debugging:
{
"mcpServers": {
"inspector": {
"command": "npx",
"args": ["--yes", "@anthropic-ai/inspector"]
}
}
}Configuration Options
Option | Description | Required | Default |
| Command to run the server | Yes |
|
| Array of command arguments | Yes |
|
| Path to your Pulumi infrastructure directory | Yes | None |
After Configuration
Restart your MCP client (Cursor, Claude Desktop, etc.)
Verify connection - you should see the server connect successfully
Test tools - try using one of the available TimescaleDB tools:
timescale_create_servicetimescale_create_servicestimescale_delete_servicetimescale_list_services
Troubleshooting MCP Connection
"No tools or prompts" error: Ensure the server path in your config is correct
Server not found: Verify the
dist/index.jsfile exists and the path is absolutePermission denied: Make sure the server directory is readable
Environment variables: Confirm
PULUMI_PROJECT_PATHis set correctly
Advanced: Running the MCP Server Manually
If you ever need to run the MCP server as a standalone process (for development or debugging):
Install dependencies:
cd /path/to/tigerdata-pulumi-mcp-server npm installStart the server:
npm start
Initializing or Selecting a Pulumi Stack (from the terminal)
You can initialize or select your Pulumi stack directly from your infra directory:
cd /absolute/path/to/your/project/infra
pulumi stack init dev # (or pulumi stack select dev if it already exists)
pulumi upTroubleshooting
Error: Invalid workDir passed to local workspace:
Make sure your
.envfile contains the correctPULUMI_PROJECT_PATH.Make sure
DOTENV_PATHis set to your.envfile and is available in your shell (check withecho $DOTENV_PATH).Restart your terminal after editing your shell profile.
Example .env.example
# Path to your Pulumi infra directory
# PULUMI_PROJECT_PATH=/absolute/path/to/your/project/infraThis setup allows you to use the MCP server with any project structure, making it flexible and user-friendly for all users.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheSurfingCoder/tigerdata-pulumi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server