Skip to content

Commit d397ca5

Browse files
Merge pull request #49 from smutyala1at/main
Embed Mesh packages and Aiken site docs, Add Mesh MCP Server
2 parents ba2b7a2 + 162037b commit d397ca5

23 files changed

+3716
-202
lines changed

apps/.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# System Files
2+
.DS_Store
3+
Thumbs.db
4+
Desktop.ini
5+
6+
# Dependencies
7+
node_modules/
8+
9+
# Build outputs
10+
dist/
11+
build/
12+
13+
# Environment
14+
.env
15+
.env.local
16+
17+
# Logs
18+
*.log

apps/docs/content/docs/ai/index.mdx

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,38 @@ Mesh provides llms.txt file that is easily understood by AI tools. This file con
2828
AI code editors like Cursor let you add and index documentation, so you can reference it directly in your chats. For example, you can bring Mesh docs into Cursor by typing @Docs → Add new doc. A modal will open where you can paste the link to the <Link href="/llms.txt">/llms.txt</Link> file. Once added, the doc becomes available as context, making it easier and faster to build apps with AI.
2929

3030

31-
## Mesh MCP (Coming Soon)
31+
## Mesh MCP Setup
3232

33-
We’re bringing Model Context Protocol (MCP) integration to Mesh, so you’ll be able to access Mesh knowledge right inside your favorite development tools. This means your editor will be able to help as you code, suggest snippets as you type, and even assist with debugging issues directly in your IDE. It’s designed to work seamlessly with tools like VS Code, Cursor, and other AI-powered editors, making your development workflow smoother and faster.
33+
Use Mesh MCP to access Mesh docs and get coding/debugging help directly in VS Code, Cursor, or Claude Desktop.
34+
35+
### Add this to your MCP server settings:
36+
37+
```ts
38+
{
39+
"servers": {
40+
"mesh-mcp": {
41+
"name": "mesh-mcp-server",
42+
"command": "npx",
43+
"args": ["-y", "meshjs-mcp"],
44+
"env": {
45+
"OPENAI_API_KEY": "your-openai-api-key",
46+
"MODEL": "your-preferred-model"
47+
}
48+
}
49+
}
50+
}
51+
```
52+
53+
### Setup notes
54+
55+
1. Replace your-openai-api-key with your OpenAI API key.
56+
57+
2. Set MODEL to the model you want to use.
58+
59+
3. Restart your editor after saving the config.
60+
61+
4. Get help to code faster with Mesh MCP and AI editor
62+
63+
### Example
64+
65+
<img src="ai/mcp-example.png" alt="mcp-example" />
359 KB
Loading

apps/meshjs-mcp/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
node_modules/
3+
.DS_Store

0 commit comments

Comments
 (0)