You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-44Lines changed: 10 additions & 44 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,47 +32,22 @@ YepCode is built to be the ideal platform for running a **dynamic MCP tools serv
32
32
33
33
-**Polyglot tool implementations**: Implement tools in **Python** or **Node.js** (or both). The same MCP server can expose tools backed by different runtimes—think of it as one MCP server that mixes implementations across several languages.
34
34
35
-
## Integration Guide
35
+
For complete documentation, see the [YepCode MCP Server docs](https://yepcode.io/docs/mcp-server/).
36
36
37
-
YepCode MCP server can be integrated with AI platforms like [Cursor](https://cursor.sh) or [Claude Desktop](https://www.anthropic.com/news/claude-desktop) using either a remote approach (we offer a hosted version of the MCP server) or a local approach (NPX or Docker installation is required).
37
+
## Installation
38
38
39
-
For both approaches, you need to get your YepCode API credentials:
39
+
This package lets you run the YepCode MCP server **locally** or in your own infrastructure (NPX, Docker, or custom deployment). Integrate it with AI platforms like [Cursor](https://cursor.sh) or [Claude Desktop](https://www.anthropic.com/news/claude-desktop).
40
40
41
-
1. Sign up to [YepCode Cloud](https://yepcode.io/l/LQUKe)
42
-
2. Visit `Settings` > `API credentials` to create a new API token.
43
-
44
-
### Remote Approach using SSE Server
45
-
46
-
- If your MCP Client doesn't support authentication headers, just use the SSE server URL that includes the API Token. Use a configuration similar to the following:
41
+
> **Tip:** From your YepCode account you also have access to a hosted MCP server that doesn't require local installation. The connection URL is always: `https://cloud.yepcode.io/mcp`
- If your MCP Client supports authentication headers, you can use the HTTP server URL that includes the API Token. Use a configuration similar to the following:
45
+
Get your YepCode API credentials:
59
46
60
-
```typescript
61
-
{
62
-
"mcpServers": {
63
-
"yepcode-mcp-server": {
64
-
"url": "https://cloud.yepcode.io/mcp/sse",
65
-
"headers": {
66
-
"Authorization": "Bearer <sk-c2E....RD>"
67
-
}
68
-
}
69
-
}
70
-
}
71
-
```
72
-
73
-
### Local Approach
47
+
1. Sign up to [YepCode Cloud](https://yepcode.io/l/LQUKe)
48
+
2. Visit `Settings` > `API credentials` to create a new API token.
74
49
75
-
####Using NPX
50
+
### Using NPX
76
51
77
52
Make sure you have Node.js installed (version 18 or higher), and use a configuration similar to the following:
78
53
@@ -90,7 +65,7 @@ Make sure you have Node.js installed (version 18 or higher), and use a configura
90
65
}
91
66
```
92
67
93
-
####Using Docker
68
+
### Using Docker
94
69
95
70
1. Build the container image:
96
71
@@ -183,15 +158,6 @@ You can control which tools are enabled by setting the `YEPCODE_MCP_TOOLS` envir
183
158
If not specified, all built-in tools are enabled by default, but no process tools will be exposed.
0 commit comments