Skip to content
Merged
Show file tree
Hide file tree
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { app } from '$lib/stores/app';
import Light from '../assets/windsurf.svg';
import Dark from '../assets/dark/windsurf.svg';
import Light from '../assets/openai.svg';
import Dark from '../assets/dark/openai.svg';
</script>

<img src={$app.themeInUse === 'dark' ? Dark : Light} width="16" height="16" alt="" />
Original file line number Diff line number Diff line change
Expand Up @@ -584,14 +584,14 @@
color="--fgcolor-neutral-secondary">
Deploy the Appwrite MCP server with a single
click, or view the <Link.Anchor
href="https://appwrite.io/docs"
href="https://appwrite.io/docs/tooling/ai/mcp-servers"
target="_blank">docs</Link.Anchor> for instructions.
</Typography.Text>
</Layout.Stack>
<Layout.Stack gap="s">
<Typography.Text
color="--fgcolor-neutral-tertiary"
size="s">One-click install</Typography.Text>
size="s">Quick install</Typography.Text>
<Layout.Stack
direction="row"
gap="s"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
<Empty type="secondary" title="MCP installation">
<svelte:fragment slot="description">
Deploy the Appwrite MCP server with a single click, or view the <PinkLink.Anchor
href="https://appwrite.io/docs"
href="https://appwrite.io/docs/tooling/ai/mcp-servers"
target="_blank"
rel="noreferrer">docs</PinkLink.Anchor> for instructions.
</svelte:fragment>
Expand Down
18 changes: 9 additions & 9 deletions src/routes/(console)/project-[region]-[project]/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { page } from '$app/stores';
import CursorIcon from './overview/components/CursorIcon.svelte';
import ClaudeIcon from './overview/components/ClaudeIcon.svelte';
import VSCodeIcon from './overview/components/VSCodeIcon.svelte';
import WindsurfIcon from './overview/components/WindsurfIcon.svelte';
import CodexIcon from './overview/components/CodexIcon.svelte';

export const project = derived(page, ($page) => $page.data.project as Models.Project);

Expand Down Expand Up @@ -80,23 +80,23 @@ export const stats = createStats();

export const mcpTools = [
{
href: 'https://apwr.dev/docs-mcp-cursor?ref=docs',
href: 'https://cursor.com/install-mcp?name=appwrite&config=eyJ1cmwiOiJodHRwczovL21jcC5hcHB3cml0ZS5pby8ifQ==',
icon: CursorIcon,
label: 'Cursor'
},
{
href: 'https://appwrite.io/docs/tooling/mcp/claude',
href: 'https://appwrite.io/docs/tooling/ai/agents/claude-code',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P2 Docs links resemble installers

Claude Code and Codex now open documentation, but both MCP cards render them identically to direct installers while promising deployment “with a single click.” This makes users expecting installation navigate to setup documentation without any label or external-link treatment that distinguishes the action.

Knowledge Base Used: Project overview and miscellaneous console pages

Prompt To Fix With AI
This is a comment left during a code review.
Path: src/routes/(console)/project-[region]-[project]/store.ts
Line: 88

Comment:
**Docs links resemble installers**

Claude Code and Codex now open documentation, but both MCP cards render them identically to direct installers while promising deployment “with a single click.” This makes users expecting installation navigate to setup documentation without any label or external-link treatment that distinguishes the action.

**Knowledge Base Used:** [Project overview and miscellaneous console pages](https://app.greptile.com/appwrite/-/custom-context/knowledge-base/appwrite/console/-/docs/project-overview-misc.md)

---

For each issue above, determine whether it is valid and should be fixed. If so, fix it directly.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Fix in Claude Code Fix in Codex

icon: ClaudeIcon,
label: 'Claude Desktop'
label: 'Claude Code'
},
{
href: 'https://apwr.dev/docs-mcp-vscode?ref=docs',
href: 'vscode:mcp/install?%7B%22name%22%3A%22appwrite%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.appwrite.io%2F%22%7D',
icon: VSCodeIcon,
label: 'VS code'
label: 'VS Code'
},
{
href: 'https://appwrite.io/docs/tooling/mcp/windsurf',
icon: WindsurfIcon,
label: 'Windsurf editor'
href: 'https://appwrite.io/docs/tooling/ai/agents/codex',
icon: CodexIcon,
label: 'Codex'
}
];
Loading