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
@@ -176,25 +176,31 @@ This server can be used with any MCP-compatible client, such as:
176
176
- Other AI assistants supporting the MCP protocol
177
177
- Custom applications built with MCP client libraries
178
178
179
+
> ⚠️ Reminder: Please ensure you have an active paid plan with your LLM provider to fully utilize the MCP server.
180
+
Without it, you may encounter the error: `message will exceed the length limit for this chat`.
181
+
182
+
179
183
### Usage with Claude Desktop
180
184
181
185
```json
182
186
{
183
187
"mcpServers": {
184
-
"github": {
185
-
"command": "snmcp",
188
+
"snmcp": {
189
+
"command": "${PATH_TO_SNMCP}/bin/snmcp",
186
190
"args": [
187
191
"stdio",
188
192
"--organization",
189
-
"my-org",
193
+
"${STREAMNATIVE_CLOUD_ORGANIZATION_ID}",
190
194
"--key-file",
191
-
"/path/to/key-file.json"
192
-
],
195
+
"${STREAMNATIVE_CLOUD_KEY_FILE}"
196
+
]
193
197
}
194
198
}
195
199
}
196
200
```
197
201
202
+
Please remember to replace `${PATH_TO_SNMCP}` with the actual path to the `snmcp` binary and `${STREAMNATIVE_CLOUD_ORGANIZATION_ID}` and `${STREAMNATIVE_CLOUD_KEY_FILE}` with your StreamNative Cloud organization ID and key file path, respectively.
203
+
198
204
## About Model Context Protocol (MCP)
199
205
200
206
The Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to LLMs. MCP helps build agents and complex workflows on top of LLMs by providing:
0 commit comments