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
+104-4Lines changed: 104 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,29 @@ Then open http://localhost:12005 in your browser to open MetaMCP App.
44
44
It is recommended to have npx (node.js based mcp) and uvx (python based mcp) installed globally.
45
45
To install uv check: https://docs.astral.sh/uv/getting-started/installation/
46
46
47
-
You also need a MCP Client to connect to `@metamcp/mcp-server-metamcp`. For example if you are using [Claude Desktop](https://modelcontextprotocol.io/quickstart/user), the config json may look like this:
47
+
### Default Remote Mode SSE endpoint for MetaMCP
48
+
49
+
The recommended way to connect to MetaMCP is via the SSE endpoint:
50
+
51
+
```
52
+
http://localhost:12007/sse with Authorization: Bearer <your-api-key>
53
+
```
54
+
55
+
Alternatively, if you cannot set headers, you can use this URL-based endpoint:
56
+
57
+
```
58
+
http://localhost:12007/api-key/<your-api-key>/sse
59
+
```
60
+
61
+
You can get the API key from the MetaMCP App's API Keys page.
62
+
63
+
### For Local Access
64
+
65
+
You can still use these methods even if your workspace is in Default Remote Mode.
66
+
67
+
#### Claude Desktop Configuration
68
+
69
+
For Claude Desktop, the config json should look like this:
48
70
49
71
```json
50
72
{
@@ -61,13 +83,91 @@ You also need a MCP Client to connect to `@metamcp/mcp-server-metamcp`. For exam
61
83
}
62
84
```
63
85
64
-
For Cursor, env vars aren't easy to get typed in so you may use args instead
86
+
#### Cursor Configuration
87
+
88
+
For Cursor, env vars aren't easy to get typed in so you may use args instead:
0 commit comments