We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/domdomegg/airtable-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env bash
set -euo pipefail
# Build the project first
echo "Building project..."
npm run build
# Update manifest.json with version from package.json
echo "Updating manifest version..."
VERSION=$(node -p "require('./package.json').version")
sed "s/{{VERSION}}/$VERSION/g" manifest.json > manifest.json.tmp
mv manifest.json.tmp manifest.json
# Remove devDependencies
echo "Removing devDependencies and types from node_modules..."
rm -rf node_modules
npm ci --omit=dev --audit false --fund false
find node_modules -name "*.ts" -type f -delete 2>/dev/null || true
# Create the MCP Bundle
echo "Creating MCP Bundle..."
rm -rf airtable-mcp-server.mcpb
# --no-dir-entries: https://github.com/anthropics/mcpb/issues/18#issuecomment-3021467806
zip --recurse-paths --no-dir-entries \
airtable-mcp-server.mcpb \
manifest.json \
icon.png \
dist/ \
node_modules/ \
package.json \
README.md \
LICENSE
# Restore the template version
echo "Restoring manifest template..."
sed "s/$VERSION/{{VERSION}}/g" manifest.json > manifest.json.tmp
mv manifest.json.tmp manifest.json
# Restore full node_modules
echo "Restoring node_modules..."
npm ci --audit false --fund false
echo
echo "MCP Bundle created: airtable-mcp-server.mcpb ($(du -h airtable-mcp-server.mcpb | cut -f1))"