@h1deya/mcp-client-cli 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -25
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ A Python equivalent of this utility is available [here](https://pypi.org/project
|
|
|
58
58
|
|
|
59
59
|
"mcp_servers": {
|
|
60
60
|
"us-weather": { // US weather only
|
|
61
|
-
"command": "npx",
|
|
61
|
+
"command": "npx",
|
|
62
62
|
"args": ["-y", "@h1deya/mcp-server-weather"]
|
|
63
63
|
},
|
|
64
64
|
},
|
|
@@ -180,55 +180,63 @@ Create a `llm_mcp_config.json5` file:
|
|
|
180
180
|
// To disable the automatic schema transformations, uncomment the following line.
|
|
181
181
|
// See this for details about the schema transformations:
|
|
182
182
|
// https://github.com/hideya/langchain-mcp-tools-ts/blob/main/README.md#llm-provider-schema-compatibility
|
|
183
|
-
//
|
|
183
|
+
//
|
|
184
184
|
// "schema_transformations": false,
|
|
185
185
|
|
|
186
186
|
"example_queries": [
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
// "Tell me about my GitHub profile"
|
|
191
|
-
// "
|
|
192
|
-
// "Open the webpage at bbc.com",
|
|
193
|
-
// "Tell me about my Notion account",
|
|
187
|
+
"Read and briefly summarize the LICENSE file in the current directory",
|
|
188
|
+
"Fetch the raw HTML content from bbc.com and tell me the titile",
|
|
189
|
+
// "Search for 'news in California' and show the first hit",
|
|
190
|
+
// "Tell me about my default GitHub profile",
|
|
191
|
+
// "Tell me about my default Notion account",
|
|
194
192
|
],
|
|
195
193
|
|
|
196
194
|
"mcp_servers": {
|
|
197
195
|
// Local MCP server that uses `npx`
|
|
198
|
-
|
|
196
|
+
// https://www.npmjs.com/package/@modelcontextprotocol/server-filesystem
|
|
197
|
+
"filesystem": {
|
|
199
198
|
"command": "npx",
|
|
200
|
-
"args": [
|
|
199
|
+
"args": [
|
|
200
|
+
"-y",
|
|
201
|
+
"@modelcontextprotocol/server-filesystem",
|
|
202
|
+
"." // path to a directory to allow access to
|
|
203
|
+
]
|
|
201
204
|
},
|
|
202
205
|
|
|
203
|
-
//
|
|
206
|
+
// Local MCP server that uses `uvx`
|
|
207
|
+
// https://pypi.org/project/mcp-server-fetch/
|
|
204
208
|
"fetch": {
|
|
205
209
|
"command": "uvx",
|
|
206
|
-
"args": [
|
|
210
|
+
"args": [
|
|
211
|
+
"mcp-server-fetch"
|
|
212
|
+
]
|
|
207
213
|
},
|
|
208
214
|
|
|
209
|
-
// Embedding the value of an environment variable
|
|
215
|
+
// Embedding the value of an environment variable
|
|
216
|
+
// https://www.npmjs.com/package/@modelcontextprotocol/server-brave-search
|
|
210
217
|
"brave-search": {
|
|
211
218
|
"command": "npx",
|
|
212
|
-
"args": [
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
"url": "https://api.example.com/..."
|
|
219
|
+
"args": [
|
|
220
|
+
"-y",
|
|
221
|
+
"@modelcontextprotocol/server-brave-search"
|
|
222
|
+
],
|
|
223
|
+
"env": {
|
|
224
|
+
"BRAVE_API_KEY": "${BRAVE_API_KEY}"
|
|
225
|
+
}
|
|
220
226
|
},
|
|
221
227
|
|
|
222
|
-
//
|
|
228
|
+
// Example of remote MCP server authentication via Authorization header
|
|
229
|
+
// https://github.com/github/github-mcp-server?tab=readme-ov-file#remote-github-mcp-server
|
|
223
230
|
"github": {
|
|
224
|
-
|
|
231
|
+
// To avoid auto protocol fallback, specify the protocol explicitly when using authentication
|
|
232
|
+
"type": "http",
|
|
225
233
|
"url": "https://api.githubcopilot.com/mcp/",
|
|
226
234
|
"headers": {
|
|
227
235
|
"Authorization": "Bearer ${GITHUB_PERSONAL_ACCESS_TOKEN}"
|
|
228
236
|
}
|
|
229
237
|
},
|
|
230
238
|
|
|
231
|
-
// For
|
|
239
|
+
// For remote MCP servers that require OAuth, consider using "mcp-remote"
|
|
232
240
|
"notion": {
|
|
233
241
|
"command": "npx",
|
|
234
242
|
"args": ["-y", "mcp-remote", "https://mcp.notion.com/mcp"],
|