Skip to main content
Glama
SERVICE_READY.md2.33 kB
# ✅ Service is Ready and Working! ## Status ✅ **API Key:** Configured and working ✅ **Service:** Deployed and running ✅ **Agent:** Executing successfully ## Service URL **https://langchain-agent-mcp-server-554655392699.us-central1.run.app** ## Available Endpoints - **Health Check:** `GET /health` - **MCP Manifest:** `GET /mcp/manifest` - **MCP Invoke:** `POST /mcp/invoke` - **API Documentation:** `GET /docs` (FastAPI Swagger UI) ## Test Your Service ### Using PowerShell ```powershell $serviceUrl = "https://langchain-agent-mcp-server-554655392699.us-central1.run.app" # Health check Invoke-WebRequest -Uri "$serviceUrl/health" # Get manifest Invoke-WebRequest -Uri "$serviceUrl/mcp/manifest" # Invoke agent $body = @{ tool = "agent_executor" arguments = @{ query = "What is the capital of France?" } } | ConvertTo-Json Invoke-WebRequest -Uri "$serviceUrl/mcp/invoke" ` -Method POST ` -ContentType "application/json" ` -Body $body ``` ### Using curl ```bash # Health check curl https://langchain-agent-mcp-server-554655392699.us-central1.run.app/health # Get manifest curl https://langchain-agent-mcp-server-554655392699.us-central1.run.app/mcp/manifest # Invoke agent curl -X POST https://langchain-agent-mcp-server-554655392699.us-central1.run.app/mcp/invoke \ -H "Content-Type: application/json" \ -d '{"tool":"agent_executor","arguments":{"query":"What is 2+2?"}}' ``` ## Configuration - **Project:** slashmcp - **Region:** us-central1 - **Memory:** 2Gi - **CPU:** 2 - **Timeout:** 300 seconds - **Max Instances:** 10 - **Min Instances:** 0 (scales to zero) ## View Logs ```powershell $env:PATH += ";C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin" gcloud run services logs read langchain-agent-mcp-server ` --platform managed ` --region us-central1 ` --project slashmcp ``` ## View in Console https://console.cloud.google.com/run/detail/us-central1/langchain-agent-mcp-server?project=slashmcp ## Next Steps 1. ✅ Service is deployed and working 2. ✅ API key is configured 3. 🎯 **Ready to use!** Start making requests to the `/mcp/invoke` endpoint --- **🎉 Your LangChain Agent MCP Server is fully operational!**

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/mcpmessenger/LangchainMCP'

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