Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/cloud/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Configure Claude Desktop to access your agent server
"command": "/path/to/npx",
"args": [
"mcp-remote",
"https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse",
"https://[your-agent-server-id].deployments.mcp-agent.com/sse",
"--header",
"Authorization: Bearer ${BEARER_TOKEN}"
],
Comment on lines +74 to 77
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"

Expand All @@ -92,7 +92,7 @@ Connect with the following settings
| Setting | Value |
|---|---|
| *Transport Type* | *SSE* |
| *SSE* | *https://[your-agent-server-id].deployments.mcp-agent-cloud.lastmileai.dev/sse* |
| *SSE* | *https://[your-agent-server-id].deployments.mcp-agent.com/sse* |
| *Header Name* | *Authorization* |
| *Bearer Token* | *your-mcp-agent-cloud-api-token* |

Expand Down
Loading