Skip to content

Commit eda1825

Browse files
feat: add MCP icon and update docs with local image assets
1 parent db27b1d commit eda1825

File tree

8 files changed

+42
-8
lines changed

8 files changed

+42
-8
lines changed

components/icons/Mcp.tsx

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
export default function Mcp(props: React.SVGProps<SVGSVGElement>) {
2+
return (
3+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
4+
<defs>
5+
<clipPath id="clip0_7011_10333">
6+
<rect width="16" height="16" rx="2" fill="white" />
7+
</clipPath>
8+
</defs>
9+
<g clipPath="url(#clip0_7011_10333)">
10+
<path
11+
d="M5.64617 9.44949L10.1972 4.89847C11.0069 4.08873 11.0069 2.77589 10.1972 1.96615C9.38745 1.15641 8.07461 1.15641 7.26487 1.96615L1.25 7.98102"
12+
stroke="#1F293A"
13+
strokeWidth="1.33"
14+
strokeLinecap="round"
15+
/>
16+
<path
17+
d="M7.58284 13.5992L10.1626 11.0195L13.1834 7.9987C14.0247 7.15741 14.0247 5.79342 13.1834 4.95213C12.3421 4.11085 10.9781 4.11085 10.1368 4.95213L5.61851 9.47043"
18+
stroke="#1F293A"
19+
strokeWidth="1.33"
20+
strokeLinecap="round"
21+
/>
22+
<path
23+
d="M8.45532 3.71483L7.15276 5.01739L4.10645 8.0637C3.27925 8.89089 3.27925 10.232 4.10645 11.0592C4.93364 11.8864 6.27478 11.8864 7.10198 11.0592L11.6458 6.51541"
24+
stroke="#1F293A"
25+
strokeWidth="1.33"
26+
strokeLinecap="round"
27+
/>
28+
<path
29+
d="M7.51895 14.0675L8.89563 15.5"
30+
stroke="#1F293A"
31+
strokeWidth="1.33"
32+
strokeLinecap="round"
33+
/>
34+
</g>
35+
</svg>
36+
);
37+
}

content/blog/moving-to-playwright-from-cypress-part-1.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ This is the speedup we measured, granted this no way a fair comparison between P
6464
Total **3.87x** speedup 😳
6565

6666

67-
![image](https://media.tenor.com/WXUFUZ5g7uUAAAAC/speed.gif)
67+
![Speed GIF](/img/blog/cypress/speed.gif)
6868

6969
And beyond speed, the ease to develop - debugging tests has improved drastically mainly due to really short feedback loop and really good APIs from the playwright. Also for the first time, many of the developers in the team feel it's a joy to write tests! In conclusion, we think Playwright was a big game changer for us on how fastly we can ship releases.
7070

content/docs/account-settings/oss-specific-details.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Signup without an invitation is disabled by default and can be managed from UI b
1717

1818
App store lists available integrations for NocoDB. You can install and configure these integrations from the App store.
1919

20-
![Screenshot 2023-08-22 at 5 02 26 PM](https://github.com/nocodb/nocodb/assets/86527202/e739a4b6-6ab6-4ee7-aac3-073d3aaf20ac)
20+
![App Store](/img/v2/account-settings/app-store.png)
2121
We provide different integrations in three main categories.
2222

2323
| Category | App Name |

content/docs/mcp/index.mdx renamed to content/docs/mcp.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: MCP Server
33
description: Connect NocoDB to Large Language Models (LLMs) via the Model Context Protocol (MCP).
44
tags: ["MCP", "LLM", "AI", "Claude", "Cursor", "Windsurf"]
55
keywords: ["MCP", "Model Context Protocol", "NocoDB MCP", "LLM Integration", "Claude", "Cursor", "Windsurf"]
6+
icon: 'mcp'
67
---
78

89
## Getting Started

content/docs/mcp/meta.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

lib/iconMap.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import Extension from '@/components/icons/Extension';
2929
import Sparkle from '@/components/icons/Sparkle';
3030
import Chart from '@/components/icons/Chart';
3131
import Legal from '@/components/icons/Legal';
32+
import Mcp from '@/components/icons/Mcp';
3233

3334
const iconMap = {
3435
alertCircle: AlertCircle,
@@ -62,6 +63,7 @@ const iconMap = {
6263
sparkle: Sparkle,
6364
chart: Chart,
6465
legal: Legal,
66+
mcp: Mcp,
6567
} as const;
6668

6769
type IconNameType = keyof typeof iconMap;

public/img/blog/cypress/speed.gif

665 KB
Loading
397 KB
Loading

0 commit comments

Comments
 (0)