We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/queenamara/bridge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
CLAUDE_CODE_INSTRUCTIONS.md•1.84 KiB
# CLAUDE CODE INSTRUCTIONS
## What This Is
This is the Bridge MCP Server - a hosted MCP server that connects AI to business tools.
Amara needs help deploying this to Google Cloud Run.
## Your Mission
Deploy this server to Google Cloud Run so Amara can share the MCP endpoint with her students.
## Prerequisites Check
Before deploying, verify:
1. `gcloud` CLI is installed: `gcloud --version`
2. User is authenticated: `gcloud auth list`
3. A project is set: `gcloud config get-value project`
4. Required APIs are enabled
## Deployment Steps
1. **Enable APIs** (if not already):
```bash
gcloud services enable cloudbuild.googleapis.com run.googleapis.com
```
2. **Build the container**:
```bash
gcloud builds submit --tag gcr.io/$(gcloud config get-value project)/bridge-mcp
```
3. **Deploy to Cloud Run**:
```bash
gcloud run deploy bridge-mcp \
--image gcr.io/$(gcloud config get-value project)/bridge-mcp \
--platform managed \
--region us-central1 \
--allow-unauthenticated \
--memory 512Mi \
--cpu 1 \
--min-instances 0 \
--max-instances 10
```
4. **Get the URL**:
```bash
gcloud run services describe bridge-mcp --region us-central1 --format 'value(status.url)'
```
5. **Test it**:
```bash
curl https://YOUR_URL/health
```
## Success Criteria
- `/health` endpoint returns JSON with `status: "healthy"`
- `/mcp` endpoint is accessible (will return error without proper MCP request, that's fine)
## If Something Goes Wrong
- Check Cloud Build logs: `gcloud builds list`
- Check Cloud Run logs: `gcloud run services logs read bridge-mcp --region us-central1`
## Notes for Amara
Once deployed, give students this info:
- MCP URL: `https://YOUR_URL/mcp`
- They'll need their own ClickUp API key
- Skills library defaults to your GitHub repo (update `DEFAULT_SKILLS_REPO` in skills.ts)