Skip to content
Closed
Changes from all commits
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 examples/workflows/workflow_evaluator_optimizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Configure Claude Desktop to access your agent by updating `~/.claude-desktop/con
"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 +135 to 138
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 looks correct; please verify repo‑wide consistency and endpoint validity.

Change to deployments.mcp-agent.com for the SSE endpoint LGTM. Please confirm there are no remaining references to the old domain and that all SSE examples consistently include the /sse suffix.

Run:


🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Find any lingering old-domain references
rg -n --hidden -S 'deployments\.mcp-agent-cloud\.lastmileai\.dev'

# Spot any new-domain mentions that might be missing the /sse suffix in docs/examples
rg -nP --hidden 'https://\[.*?\]\.deployments\.mcp-agent\.com(?!/sse)\b' examples docs || true

Length of output: 2008


URL swap incomplete — lingering old-domain references found

  • Found matches referencing deployments.mcp-agent-cloud.lastmileai.dev (update to https://[your-agent-server-id].deployments.mcp-agent.com/sse):
    examples/usecases/mcp_github_to_slack_agent/README.md:114,137
    examples/mcp_agent_server/asyncio/README.md:225
    examples/workflows/workflow_orchestrator_worker/README.md:105,128
    examples/workflows/workflow_intent_classifier/README.md:87,110
    docs/cloud/overview.mdx:74,95
    docs/cloud/agent-server.mdx:185
    examples/basic/mcp_model_selector/README.md:101,124
    examples/basic/mcp_basic_agent/README.md:125,148

  • Your second rg pattern failed with a PCRE2 error; use these commands to finish verification:

    • rg -n --hidden -S 'deployments.mcp-agent-cloud.lastmileai.dev'
    • rg -n --hidden 'https://[.*].deployments.mcp-agent.com' examples docs | rg -v '/sse' || true
🤖 Prompt for AI Agents
In examples/workflows/workflow_evaluator_optimizer/README.md around lines
135-138, the example still references the old domain; search the repo for any
remaining deployments.mcp-agent-cloud.lastmileai.dev entries and replace them
with the new pattern https://[your-agent-server-id].deployments.mcp-agent.com
(ensure the /sse path is present where appropriate and the Authorization header
line remains unchanged), then verify no other lingering references by running
the suggested ripgrep checks (rg -n --hidden -S
'deployments\.mcp-agent-cloud\.lastmileai\.dev' and rg -n --hidden
'https://\[.*\]\.deployments\.mcp-agent\.com' examples docs | rg -v '/sse' ||
true) and update the listed files accordingly.

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

Expand Down
Loading