-
Notifications
You must be signed in to change notification settings - Fork 771
Update overview.mdx - url fix #492
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Update_deployment_URLs_from_lastmileai.dev_to_mcp-agent.com_domain
Warning Rate limit exceeded@Haniehz1 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 5 minutes and 9 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
WalkthroughUpdated two SSE endpoint URLs in docs/cloud/overview.mdx from cloud-lastmileai.dev to mcp-agent.com within the Claude Desktop integration example and MCP Inspector settings. No code or logic changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
docs/cloud/overview.mdx
(2 hunks)
🔇 Additional comments (1)
docs/cloud/overview.mdx (1)
95-95
: Inspector settings updated consistently.SSE endpoint aligns with the Claude Desktop example.
"https://[your-agent-server-id].deployments.mcp-agent.com/sse", | ||
"--header", | ||
"Authorization: Bearer ${BEARER_TOKEN}" | ||
], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
URL swap to mcp-agent.com looks correct.
Nice catch; this matches the expected deployments subdomain and SSE path.
Run this to ensure no lingering references to the old domain remain elsewhere:
🏁 Script executed:
#!/bin/bash
# Find any stale domains
rg -n --hidden -S -g '!**/node_modules/**' -e 'cloud-lastmileai\.dev' -e 'lastmileai\.dev' -e 'deployments\.lastmileai\.dev'
Length of output: 148
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "Searching repository for old lastmileai domains..."
patterns=(
'cloud-lastmileai\.dev'
'lastmileai\.dev'
'deployments\.lastmileai\.dev'
)
found=0
# 1) Search tracked files via git (if available)
if command -v git >/dev/null 2>&1; then
echo "-> git grep (tracked files):"
git_grep_output="$(git grep -n -e "${patterns[0]}" -e "${patterns[1]}" -e "${patterns[2]}" || true)"
if [[ -n "${git_grep_output//[[:space:]]/}" ]]; then
echo "$git_grep_output"
found=1
else
echo " (no matches in tracked files)"
fi
else
echo "git not available; skipping git grep."
fi
# 2) Search entire workspace with ripgrep (if available)
if command -v rg >/dev/null 2>&1; then
echo "-> rg (including hidden/untracked, excluding node_modules):"
rg_output="$(rg -n -S --hidden --no-ignore --glob '!node_modules/**' -e "${patterns[0]}" -e "${patterns[1]}" -e "${patterns[2]}" || true)"
if [[ -n "${rg_output//[[:space:]]/}" ]]; then
echo "$rg_output"
found=1
else
echo " (no matches found by rg)"
fi
else
echo "rg not available; skipping ripgrep."
fi
if [[ $found -eq 0 ]]; then
echo "RESULT: no lingering references to lastmileai domains found."
else
echo "RESULT: one or more matches found above."
fi
exit 0
Length of output: 3072
URL swap to mcp-agent.com looks correct — stale lastmileai domains remain
Verification found these occurrences; update them to the new mcp-agent domain (or confirm they should remain):
- docs/cloud/agent-server.mdx:185: "https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse"
- docs/docs.json:165: "mailto:[email protected]"
- docs/roadmap.mdx:195: "- Email: [email protected]"
- examples/basic/mcp_basic_agent/README.md:125: "https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse"
- examples/basic/mcp_basic_agent/README.md:148: "| SSE | https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse |"
- examples/basic/mcp_model_selector/README.md:101: "https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse"
- examples/basic/mcp_model_selector/README.md:124: "| SSE | https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse |"
- examples/mcp_agent_server/asyncio/README.md:225: "INFO: App URL: https://770xdsp22y321prwv9rasdfasd9l5zj5.deployments.mcp-agent-cloud.lastmileai.dev"
- examples/temporal/evaluator_optimizer.py:106: "https://lastmileai.dev/about"
- examples/usecases/mcp_github_to_slack_agent/README.md:114: "https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse"
- examples/usecases/mcp_github_to_slack_agent/README.md:137: "| SSE | https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse |"
- examples/workflows/workflow_evaluator_optimizer/README.md:135: "https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse"
- examples/workflows/workflow_evaluator_optimizer/README.md:159: "| SSE URL |
https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse
|" - examples/workflows/workflow_evaluator_optimizer/main.py:35: "https://lastmileai.dev/about"
- examples/workflows/workflow_intent_classifier/README.md:87: "https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse"
- examples/workflows/workflow_intent_classifier/README.md:110: "| SSE | https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse |"
- examples/workflows/workflow_orchestrator_worker/README.md:105: "https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse"
- examples/workflows/workflow_orchestrator_worker/README.md:128: "| SSE | https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse |"
- pyproject.toml:8: { name = "Sarmad Qadri", email = "[email protected]" }
- src/mcp_agent/cli/cloud/commands/deploy/constants.py:5: CLOUDFLARE_EMAIL = "[email protected]"
- src/mcp_agent/cli/cloud/commands/deploy/constants.py:10: "https://mcp-agent-cloud-deployments-api-cf.lastmileai.dev"
Co-authored-by: Sarmad Qadri <[email protected]>
Update_deployment_URLs_from_lastmileai.dev_to_mcp-agent.com_domain
Summary by CodeRabbit