Skip to content

Conversation

Haniehz1
Copy link
Contributor

@Haniehz1 Haniehz1 commented Sep 16, 2025

Update_deployment_URLs_from_lastmileai.dev_to_mcp-agent.com_domain

Summary by CodeRabbit

  • Documentation
    • Updated SSE endpoint URLs to the production mcp-agent.com domain in the Claude Desktop integration example and MCP Inspector settings.
    • Replaced outdated cloud-lastmileai.dev references to ensure users configure the correct production endpoint.
    • Improves clarity and reliability of setup instructions; no functional or code changes.

Update_deployment_URLs_from_lastmileai.dev_to_mcp-agent.com_domain
Copy link

coderabbitai bot commented Sep 16, 2025

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 @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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.

📥 Commits

Reviewing files that changed from the base of the PR and between d6d4bb3 and f0ce791.

📒 Files selected for processing (1)
  • docs/cloud/agent-server.mdx (1 hunks)

Walkthrough

Updated 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

Cohort / File(s) Summary of changes
Docs URL updates
docs/cloud/overview.mdx
Replaced SSE endpoint domain from cloud-lastmileai.dev to mcp-agent.com in two documentation snippets (Claude Desktop integration, MCP Inspector settings). Text-only change.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested reviewers

  • saqadri
  • andrew-lastmile
  • StreetLamb

Poem

I hop through docs with gentle might,
Swapping clouds for agents bright.
Two URLs, a tidy tune—
Streams now hum a proper rune.
Thump-thump! My paws approve the run,
Small change made; big job done. 🐇✨

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title Check ✅ Passed The title "Update overview.mdx - url fix" is concise and directly reflects the primary change in the changeset: updating URL(s) in docs/cloud/overview.mdx, naming the affected file and the nature of the change so a reviewer scanning history can understand the intent.
Docstring Coverage ✅ Passed No functions found in the changes. Docstring coverage check skipped.

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@coderabbitai coderabbitai bot left a 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

📥 Commits

Reviewing files that changed from the base of the PR and between 875152f and d6d4bb3.

📒 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.

Comment on lines +74 to 77
"https://[your-agent-server-id].deployments.mcp-agent.com/sse",
"--header",
"Authorization: Bearer ${BEARER_TOKEN}"
],
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

🧩 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"

@saqadri saqadri merged commit 35d97d5 into main Oct 3, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants