Local MCP Server
Please prefer using the Remote MCP server whenever possible. Using the local MCP server employs a significantly different threat model than the remote MCP server. Please consult with your local systems administrator if you need a better understanding of the risks involved.
The Tigris MCP Server implements the MCP specification to create a seamless connection between AI agents and Tigris key features like bucket and object management.
Features
The Tigris MCP server provides your agents context to your Tigris buckets and objects. That allows you to use Tigris in your AI editor workflows.
Here are some example prompts you can try:
Buckets
- List my tigris buckets
- Create a new tigris bucket and call it
my-bucket - Delete my tigris bucket called
my-bucket
Objects
- List my objects in bucket
my-bucket - Upload
/Users/ME/tigris-mcp-server/myfile.txttomy-bucket - Create a folder named
testinmy-bucket - Create a file
test.txtwith contentHello Worldinmy-bucket - Give me a link to share for
test.txt - Delete
myfile.txtfrommy-bucket
Checkout our blog post about Vibe coding with Tigris MCP Server and more tips on sharing files using the Tigris MCP Server.
Installation
As every tool has its own setup flows for MCP servers, each will be explained in detail in its own subsection:
Claude Desktop
Run our setup script to automate setup:
npx -y @tigrisdata/tigris-mcp-server init
Cursor AI
Run our setup script to automate setup:
npx -y @tigrisdata/tigris-mcp-server init
OpenAI Codex
Run codex mcp add to add the Tigris MCP server:
codex mcp add tigris --env AWS_PROFILE=tigris -- npx -y @tigrisdata/tigris-mcp-server run
Be sure that your credentials are configured in your AWS configuration and replace the AWS profile name as appropriate.
VS Code (and VS Code Insiders)
Run our setup script to automate setup:
npx -y @tigrisdata/tigris-mcp-server init
Or do the following:
- Press Control+Shift+P or Command+Shift+P to open the command palette.
- Search for "MCP: Add Server".
- Create a Command (stdio) MCP server.
- Enter the command
npx -y @tigrisdata/tigris-mcp-server run. - Name the MCP server
tigris. - Authenticate with Tigris and get off to work!