Skip to content
Merged
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
12 changes: 6 additions & 6 deletions docs/mcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ https://mcp.everyrow.io/mcp
<div style={{display: 'grid', gridTemplateColumns: '1fr 1fr', gap: '1rem', marginTop: '1.5rem', marginBottom: '1.5rem'}}>
<div>
<p style={{fontWeight: 600, fontSize: '0.875rem', marginBottom: '0.5rem'}}>Adding the connector</p>
<video controls preload="metadata" poster="/docs/videos/setup-claude-web-poster.jpg" style={{display: 'block', width: '100%', borderRadius: '8px', border: '1px solid #e5e7eb'}}>
<source src="/docs/videos/setup-claude-web.mp4" type="video/mp4" />
<video controls preload="metadata" poster="https://media.githubusercontent.com/media/futuresearch/everyrow-sdk/main/docs-site/public/videos/setup-claude-web-poster.jpg" style={{display: 'block', width: '100%', borderRadius: '8px', border: '1px solid #e5e7eb'}}>
<source src="https://media.githubusercontent.com/media/futuresearch/everyrow-sdk/main/docs-site/public/videos/setup-claude-web.mp4" type="video/mp4" />
Comment on lines +29 to +30
Copy link

Choose a reason for hiding this comment

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

Bug: New video URLs use an incorrect path format (main/ instead of refs/heads/main/), which will cause the CI link checker script to fail and block deployment.
Severity: CRITICAL

Suggested Fix

Update the new video and poster URLs in docs/mcp-server.mdx to use the refs/heads/main/ path instead of main/. This will align them with the existing pattern and allow the check-links.py script to correctly validate them.

Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.

Location: docs/mcp-server.mdx#L29-L30

Potential issue: The pull request introduces new URLs for video assets using the
`.../main/...` path format. The continuous integration link checker script,
`check-links.py`, is configured with a `REPO_LFS_PREFIX` that expects a
`.../refs/heads/main/...` path to validate local files. Since the new URLs do not match
this prefix, the script will classify them as unrecognized external links. This will
trigger an error during the link check step, causing the deployment workflow to fail.

Did we get this right? 👍 / 👎 to inform future reviews.

</video>
</div>
<div>
<p style={{fontWeight: 600, fontSize: '0.875rem', marginBottom: '0.5rem'}}>Whitelisting the upload domain</p>
<video controls preload="metadata" poster="/docs/videos/setup-whitelist-poster.jpg" style={{display: 'block', width: '100%', borderRadius: '8px', border: '1px solid #e5e7eb'}}>
<source src="/docs/videos/setup-whitelist.mp4" type="video/mp4" />
<video controls preload="metadata" poster="https://media.githubusercontent.com/media/futuresearch/everyrow-sdk/main/docs-site/public/videos/setup-whitelist-poster.jpg" style={{display: 'block', width: '100%', borderRadius: '8px', border: '1px solid #e5e7eb'}}>
<source src="https://media.githubusercontent.com/media/futuresearch/everyrow-sdk/main/docs-site/public/videos/setup-whitelist.mp4" type="video/mp4" />
</video>
</div>
</div>
Expand Down Expand Up @@ -61,8 +61,8 @@ Then start Claude Code and authenticate:

<div style={{marginTop: '1.5rem', marginBottom: '1.5rem'}}>
<p style={{fontWeight: 600, fontSize: '0.875rem', marginBottom: '0.5rem'}}>Connecting Claude Code via remote HTTP MCP</p>
<video controls preload="metadata" poster="/docs/videos/setup-claude-code-poster.jpg" style={{display: 'block', width: '100%', maxWidth: '640px', borderRadius: '8px', border: '1px solid #e5e7eb'}}>
<source src="/docs/videos/setup-claude-code.mp4" type="video/mp4" />
<video controls preload="metadata" poster="https://media.githubusercontent.com/media/futuresearch/everyrow-sdk/main/docs-site/public/videos/setup-claude-code-poster.jpg" style={{display: 'block', width: '100%', maxWidth: '640px', borderRadius: '8px', border: '1px solid #e5e7eb'}}>
<source src="https://media.githubusercontent.com/media/futuresearch/everyrow-sdk/main/docs-site/public/videos/setup-claude-code.mp4" type="video/mp4" />
</video>
</div>

Expand Down