Skip to main content
Glama

Tigris MCP Server

Official
by tigrisdata
get-bucket-acls.ts548 B
import { S3Client } from '@aws-sdk/client-s3'; import { GetBucketAclCommand } from '@aws-sdk/client-s3'; export const getBucketAcl = async (S3: S3Client, bucketName: string) => { return S3.send(new GetBucketAclCommand({ Bucket: bucketName })); }; export const isBucketPublic = async (S3: S3Client, bucketName: string) => { const acl = await getBucketAcl(S3, bucketName); return acl.Grants?.some( (grant) => grant.Grantee?.Type === 'Group' && grant.Grantee?.URI === 'http://acs.amazonaws.com/groups/global/AllUsers', ); };

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/tigrisdata/tigris-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server