@mcp-web/client 0.1.0
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/LICENSE +201 -0
- package/README.md +146 -0
- package/dist/client.d.ts +216 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +663 -0
- package/dist/client.js.map +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +36 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas.d.ts +40 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +33 -0
- package/dist/schemas.js.map +1 -0
- package/dist/standalone.js +27226 -0
- package/dist/types.d.ts +8 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/dist/utils.d.ts +3 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +5 -0
- package/dist/utils.js.map +1 -0
- package/esbuild.standalone.mjs +17 -0
- package/package.json +29 -0
- package/src/client.test.ts +259 -0
- package/src/client.ts +783 -0
- package/src/index.ts +44 -0
- package/src/schemas.ts +38 -0
- package/src/types.ts +14 -0
- package/src/utils.ts +5 -0
- package/tsconfig.json +20 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2025 Fritz Lekschas
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
# MCP Client
|
|
2
|
+
|
|
3
|
+
An MCP (Model Context Protocol) client that connects AI applications like Claude Desktop to the MCP bridge server, enabling AI-powered control of web applications.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
This package provides the MCP client that acts as a bridge between AI applications (like Claude Desktop) and web applications. It should be installed and configured in your AI application to connect to the MCP bridge server that communicates with your web application.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
The MCP client is typically installed via npm when configuring your AI application:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx @mcp-web/client
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Configuration
|
|
18
|
+
|
|
19
|
+
### For Claude Desktop
|
|
20
|
+
|
|
21
|
+
The MCP client is configured through Claude Desktop's configuration file. **However, you should not manually configure this**. Instead, the configuration is automatically generated by your web application using the `@mcp-web/core` library.
|
|
22
|
+
|
|
23
|
+
### Getting Configuration from Your Web App
|
|
24
|
+
|
|
25
|
+
When you integrate `@mcp-web/core` into your web application, it automatically generates the correct MCP configuration. Your web application should expose this configuration to users (typically through a help dialog or setup page).
|
|
26
|
+
|
|
27
|
+
Here's how a web application typically exposes the configuration:
|
|
28
|
+
|
|
29
|
+
```typescript
|
|
30
|
+
// In your web application
|
|
31
|
+
import { MCPWeb } from '@mcp-web/core';
|
|
32
|
+
|
|
33
|
+
const mcp = new MCPWeb({
|
|
34
|
+
name: 'My Web App',
|
|
35
|
+
description: 'Control my web application',
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
// Get the MCP configuration for Claude Desktop
|
|
39
|
+
const mcpConfig = mcp.mcpConfig;
|
|
40
|
+
|
|
41
|
+
// Display this to users so they can copy it to Claude Desktop
|
|
42
|
+
console.log(JSON.stringify(mcpConfig, null, 2));
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Example Configuration
|
|
46
|
+
|
|
47
|
+
The generated configuration will look like this:
|
|
48
|
+
|
|
49
|
+
```json
|
|
50
|
+
{
|
|
51
|
+
"My Web App": {
|
|
52
|
+
"command": "npx",
|
|
53
|
+
"args": ["@mcp-web/client"],
|
|
54
|
+
"env": {
|
|
55
|
+
"MCP_SERVER_URL": "http://localhost:3002",
|
|
56
|
+
"AUTH_TOKEN": "your-unique-auth-token"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
This configuration should be added to your Claude Desktop config file at:
|
|
63
|
+
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
64
|
+
- **Windows**: `%APPDATA%/Claude/claude_desktop_config.json`
|
|
65
|
+
|
|
66
|
+
Under the `mcpServers` section:
|
|
67
|
+
|
|
68
|
+
```json
|
|
69
|
+
{
|
|
70
|
+
"mcpServers": {
|
|
71
|
+
"My Web App": {
|
|
72
|
+
"command": "npx",
|
|
73
|
+
"args": ["@mcp-web/client"],
|
|
74
|
+
"env": {
|
|
75
|
+
"MCP_SERVER_URL": "http://localhost:3002",
|
|
76
|
+
"AUTH_TOKEN": "your-unique-auth-token"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
## Environment Variables
|
|
84
|
+
|
|
85
|
+
The MCP client uses these environment variables (automatically set by the configuration):
|
|
86
|
+
|
|
87
|
+
- `MCP_SERVER_URL`: URL of the bridge server (typically `http://localhost:3002`)
|
|
88
|
+
- `AUTH_TOKEN`: Authentication token for secure communication (automatically generated by your web app)
|
|
89
|
+
|
|
90
|
+
## How It Works
|
|
91
|
+
|
|
92
|
+
1. **Web Application**: Uses `@mcp-web/core` to register tools and connect to the bridge server
|
|
93
|
+
2. **Bridge Server**: Mediates communication between the web app and MCP clients
|
|
94
|
+
3. **MCP Client** (this package): Connects Claude Desktop to the bridge server
|
|
95
|
+
4. **Claude Desktop**: Uses the MCP client to access tools from your web application
|
|
96
|
+
|
|
97
|
+
```
|
|
98
|
+
Claude Desktop ↔ MCP Client ↔ Bridge Server ↔ Web Application
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## Setup Process
|
|
102
|
+
|
|
103
|
+
1. **Install the web library** in your web application:
|
|
104
|
+
```bash
|
|
105
|
+
npm install @mcp-web/core
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
2. **Integrate MCP tools** in your web application using `@mcp-web/core`
|
|
109
|
+
|
|
110
|
+
3. **Get the configuration** from your web app (usually shown in a help dialog)
|
|
111
|
+
|
|
112
|
+
4. **Copy the configuration** to Claude Desktop's config file
|
|
113
|
+
|
|
114
|
+
5. **Restart Claude Desktop** to load the new MCP server
|
|
115
|
+
|
|
116
|
+
6. **Start using** your web application through Claude Desktop!
|
|
117
|
+
|
|
118
|
+
## Troubleshooting
|
|
119
|
+
|
|
120
|
+
- **Connection refused**: Make sure your web application is running and the bridge server is active
|
|
121
|
+
- **Authentication failed**: The auth token in Claude Desktop config must match the one generated by your web app
|
|
122
|
+
- **Tools not available**: Ensure your web application has registered tools using `mcp.addTool()`
|
|
123
|
+
|
|
124
|
+
## Security
|
|
125
|
+
|
|
126
|
+
The MCP client uses secure authentication tokens that are:
|
|
127
|
+
- Automatically generated by your web application
|
|
128
|
+
- Unique per application instance
|
|
129
|
+
- Required for all bridge server communications
|
|
130
|
+
|
|
131
|
+
## Development
|
|
132
|
+
|
|
133
|
+
This package is part of the MCP Frontend Integration System. For development:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
npm run build # Build the client
|
|
137
|
+
npm run dev # Watch mode for development
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
## Examples
|
|
141
|
+
|
|
142
|
+
See the [HiGlass demo](../../demos/higlass) for a complete example of:
|
|
143
|
+
- Setting up `@mcp-web/core` in a React application
|
|
144
|
+
- Registering various types of tools
|
|
145
|
+
- Displaying the MCP configuration to users
|
|
146
|
+
- Complete integration workflow
|
package/dist/client.d.ts
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { type ErroredListPromptsResult, type ErroredListResourcesResult, type ErroredListToolsResult, type Query } from '@mcp-web/types';
|
|
3
|
+
import { type CallToolResult, type ListPromptsResult, type ListResourcesResult, type ListToolsResult } from '@modelcontextprotocol/sdk/types.js';
|
|
4
|
+
import type { MCPWebClientConfig } from './types.js';
|
|
5
|
+
/**
|
|
6
|
+
* MCP client that connects AI agents (like Claude Desktop) to the bridge server.
|
|
7
|
+
*
|
|
8
|
+
* MCPWebClient implements the MCP protocol and can run as a stdio server for
|
|
9
|
+
* AI host applications, or be used programmatically in agent server code.
|
|
10
|
+
*
|
|
11
|
+
* @example Running as MCP server for Claude Desktop
|
|
12
|
+
* ```typescript
|
|
13
|
+
* const client = new MCPWebClient({
|
|
14
|
+
* serverUrl: 'http://localhost:3001',
|
|
15
|
+
* authToken: 'your-auth-token',
|
|
16
|
+
* });
|
|
17
|
+
* await client.run(); // Starts stdio transport
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @example Programmatic usage in agent code
|
|
21
|
+
* ```typescript
|
|
22
|
+
* const client = new MCPWebClient({
|
|
23
|
+
* serverUrl: 'http://localhost:3001',
|
|
24
|
+
* authToken: 'your-auth-token',
|
|
25
|
+
* });
|
|
26
|
+
*
|
|
27
|
+
* // List available tools
|
|
28
|
+
* const { tools } = await client.listTools();
|
|
29
|
+
*
|
|
30
|
+
* // Call a tool
|
|
31
|
+
* const result = await client.callTool('get_todos');
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* @example With query context (for agent servers)
|
|
35
|
+
* ```typescript
|
|
36
|
+
* const contextualClient = client.contextualize(query);
|
|
37
|
+
* const result = await contextualClient.callTool('update_todo', { id: '1' });
|
|
38
|
+
* await contextualClient.complete('Todo updated successfully');
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
export declare class MCPWebClient {
|
|
42
|
+
#private;
|
|
43
|
+
/**
|
|
44
|
+
* Creates a new MCPWebClient instance.
|
|
45
|
+
*
|
|
46
|
+
* @param config - Client configuration with server URL and auth token
|
|
47
|
+
* @param query - Optional query for contextualized instances (internal use)
|
|
48
|
+
*/
|
|
49
|
+
constructor(config: MCPWebClientConfig, query?: Query);
|
|
50
|
+
private getMetaParams;
|
|
51
|
+
private getParams;
|
|
52
|
+
private makeToolCallRequest;
|
|
53
|
+
private makeListToolsRequest;
|
|
54
|
+
private makeListResourcesRequest;
|
|
55
|
+
private makeListPromptsRequest;
|
|
56
|
+
private makeReadResourceRequest;
|
|
57
|
+
private setupHandlers;
|
|
58
|
+
/**
|
|
59
|
+
* Creates a contextualized client for a specific query.
|
|
60
|
+
*
|
|
61
|
+
* All tool calls made through the returned client will be tagged with the
|
|
62
|
+
* query UUID, enabling the bridge to track tool calls for that query.
|
|
63
|
+
*
|
|
64
|
+
* @param query - The query object containing uuid and optional responseTool
|
|
65
|
+
* @returns A new MCPWebClient instance bound to the query context
|
|
66
|
+
*
|
|
67
|
+
* @example
|
|
68
|
+
* ```typescript
|
|
69
|
+
* const contextualClient = client.contextualize(query);
|
|
70
|
+
* await contextualClient.callTool('analyze_data');
|
|
71
|
+
* await contextualClient.complete('Analysis complete');
|
|
72
|
+
* ```
|
|
73
|
+
*/
|
|
74
|
+
contextualize(query: Query): MCPWebClient;
|
|
75
|
+
/**
|
|
76
|
+
* Calls a tool on the connected frontend.
|
|
77
|
+
*
|
|
78
|
+
* Automatically includes query context if this is a contextualized client.
|
|
79
|
+
* If the query has tool restrictions, only allowed tools can be called.
|
|
80
|
+
*
|
|
81
|
+
* @param name - Name of the tool to call
|
|
82
|
+
* @param args - Optional arguments to pass to the tool
|
|
83
|
+
* @param sessionId - Optional session ID for multi-session scenarios
|
|
84
|
+
* @returns Tool execution result
|
|
85
|
+
* @throws {Error} If query is already done or tool is not allowed
|
|
86
|
+
*
|
|
87
|
+
* @example
|
|
88
|
+
* ```typescript
|
|
89
|
+
* const result = await client.callTool('create_todo', {
|
|
90
|
+
* title: 'New task',
|
|
91
|
+
* priority: 'high',
|
|
92
|
+
* });
|
|
93
|
+
* ```
|
|
94
|
+
*/
|
|
95
|
+
callTool(name: string, args?: Record<string, unknown>, sessionId?: string): Promise<CallToolResult>;
|
|
96
|
+
/**
|
|
97
|
+
* Lists all available tools from the connected frontend.
|
|
98
|
+
*
|
|
99
|
+
* If this is a contextualized client with restricted tools, returns only
|
|
100
|
+
* those tools. Otherwise fetches all tools from the bridge.
|
|
101
|
+
*
|
|
102
|
+
* @param sessionId - Optional session ID for multi-session scenarios
|
|
103
|
+
* @returns List of available tools
|
|
104
|
+
* @throws {Error} If query is already done
|
|
105
|
+
*/
|
|
106
|
+
listTools(sessionId?: string): Promise<ListToolsResult | ErroredListToolsResult>;
|
|
107
|
+
/**
|
|
108
|
+
* Lists all available resources from the connected frontend.
|
|
109
|
+
*
|
|
110
|
+
* @param sessionId - Optional session ID for multi-session scenarios
|
|
111
|
+
* @returns List of available resources
|
|
112
|
+
* @throws {Error} If query is already done
|
|
113
|
+
*/
|
|
114
|
+
listResources(sessionId?: string): Promise<ListResourcesResult | ErroredListResourcesResult>;
|
|
115
|
+
/**
|
|
116
|
+
* Lists all available prompts from the connected frontend.
|
|
117
|
+
*
|
|
118
|
+
* @param sessionId - Optional session ID for multi-session scenarios
|
|
119
|
+
* @returns List of available prompts
|
|
120
|
+
* @throws {Error} If query is already done
|
|
121
|
+
*/
|
|
122
|
+
listPrompts(sessionId?: string): Promise<ListPromptsResult | ErroredListPromptsResult>;
|
|
123
|
+
/**
|
|
124
|
+
* Sends a progress update for the current query.
|
|
125
|
+
*
|
|
126
|
+
* Use this to provide intermediate updates during long-running operations.
|
|
127
|
+
* Can only be called on a contextualized client instance.
|
|
128
|
+
*
|
|
129
|
+
* @param message - Progress message to send to the frontend
|
|
130
|
+
* @throws {Error} If not a contextualized client or query is done
|
|
131
|
+
*
|
|
132
|
+
* @example
|
|
133
|
+
* ```typescript
|
|
134
|
+
* await contextualClient.sendProgress('Processing step 1 of 3...');
|
|
135
|
+
* // ... do work ...
|
|
136
|
+
* await contextualClient.sendProgress('Processing step 2 of 3...');
|
|
137
|
+
* ```
|
|
138
|
+
*/
|
|
139
|
+
sendProgress(message: string): Promise<void>;
|
|
140
|
+
/**
|
|
141
|
+
* Marks the current query as complete with a message.
|
|
142
|
+
*
|
|
143
|
+
* Can only be called on a contextualized client instance.
|
|
144
|
+
* If the query specified a responseTool, call that tool instead - calling
|
|
145
|
+
* this method will result in an error.
|
|
146
|
+
*
|
|
147
|
+
* @param message - Completion message to send to the frontend
|
|
148
|
+
* @throws {Error} If not a contextualized client, query is done, or responseTool was specified
|
|
149
|
+
*
|
|
150
|
+
* @example
|
|
151
|
+
* ```typescript
|
|
152
|
+
* await contextualClient.complete('Analysis complete: found 5 issues');
|
|
153
|
+
* ```
|
|
154
|
+
*/
|
|
155
|
+
complete(message: string): Promise<void>;
|
|
156
|
+
/**
|
|
157
|
+
* Marks the current query as failed with an error message.
|
|
158
|
+
*
|
|
159
|
+
* Can only be called on a contextualized client instance.
|
|
160
|
+
* Use this when the query encounters an unrecoverable error.
|
|
161
|
+
*
|
|
162
|
+
* @param error - Error message or Error object describing the failure
|
|
163
|
+
* @throws {Error} If not a contextualized client or query is already done
|
|
164
|
+
*
|
|
165
|
+
* @example
|
|
166
|
+
* ```typescript
|
|
167
|
+
* try {
|
|
168
|
+
* await contextualClient.callTool('risky_operation');
|
|
169
|
+
* } catch (e) {
|
|
170
|
+
* await contextualClient.fail(e);
|
|
171
|
+
* }
|
|
172
|
+
* ```
|
|
173
|
+
*/
|
|
174
|
+
fail(error: string | Error): Promise<void>;
|
|
175
|
+
/**
|
|
176
|
+
* Cancels the current query.
|
|
177
|
+
*
|
|
178
|
+
* Can only be called on a contextualized client instance.
|
|
179
|
+
* Use this when the user or system needs to abort query processing.
|
|
180
|
+
*
|
|
181
|
+
* @param reason - Optional reason for the cancellation
|
|
182
|
+
* @throws {Error} If not a contextualized client or query is already done
|
|
183
|
+
*
|
|
184
|
+
* @example
|
|
185
|
+
* ```typescript
|
|
186
|
+
* // User requested cancellation
|
|
187
|
+
* await contextualClient.cancel('User cancelled operation');
|
|
188
|
+
* ```
|
|
189
|
+
*/
|
|
190
|
+
cancel(reason?: string): Promise<void>;
|
|
191
|
+
private makeRequest;
|
|
192
|
+
/**
|
|
193
|
+
* Fetches server identity (name, version, icon) from the bridge.
|
|
194
|
+
* Falls back to defaults if the bridge is unreachable.
|
|
195
|
+
*/
|
|
196
|
+
private fetchBridgeInfo;
|
|
197
|
+
/**
|
|
198
|
+
* Starts the MCP server using stdio transport.
|
|
199
|
+
*
|
|
200
|
+
* This method is intended for running as a subprocess of an AI host like
|
|
201
|
+
* Claude Desktop. It connects to stdin/stdout for MCP communication.
|
|
202
|
+
*
|
|
203
|
+
* Cannot be called on contextualized client instances.
|
|
204
|
+
*
|
|
205
|
+
* @throws {Error} If called on a contextualized client or server not initialized
|
|
206
|
+
*
|
|
207
|
+
* @example
|
|
208
|
+
* ```typescript
|
|
209
|
+
* // In your entry point script
|
|
210
|
+
* const client = new MCPWebClient(config);
|
|
211
|
+
* await client.run();
|
|
212
|
+
* ```
|
|
213
|
+
*/
|
|
214
|
+
run(): Promise<void>;
|
|
215
|
+
}
|
|
216
|
+
//# sourceMappingURL=client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":";AAEA,OAAO,EAEL,KAAK,wBAAwB,EAC7B,KAAK,0BAA0B,EAC/B,KAAK,sBAAsB,EAK3B,KAAK,KAAK,EAKX,MAAM,gBAAgB,CAAC;AAGxB,OAAO,EAGL,KAAK,cAAc,EAEnB,KAAK,iBAAiB,EAEtB,KAAK,mBAAmB,EAExB,KAAK,eAAe,EAKrB,MAAM,oCAAoC,CAAC;AAM5C,OAAO,KAAK,EAEV,kBAAkB,EAEnB,MAAM,YAAY,CAAC;AAMpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,qBAAa,YAAY;;IAMvB;;;;;OAKG;gBACS,MAAM,EAAE,kBAAkB,EAAE,KAAK,CAAC,EAAE,KAAK;IAQrD,OAAO,CAAC,aAAa;IAcrB,OAAO,CAAC,SAAS;YAQH,mBAAmB;YA0HnB,oBAAoB;YAUpB,wBAAwB;YAUxB,sBAAsB;YAUtB,uBAAuB;IAgBrC,OAAO,CAAC,aAAa;IAmBrB;;;;;;;;;;;;;;;OAeG;IACH,aAAa,CAAC,KAAK,EAAE,KAAK,GAAG,YAAY;IAIzC;;;;;;;;;;;;;;;;;;;OAmBG;IACG,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;IAoCzG;;;;;;;;;OASG;IACG,SAAS,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,GAAG,sBAAsB,CAAC;IAoBtF;;;;;;OAMG;IACG,aAAa,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,GAAG,0BAA0B,CAAC;IAQlG;;;;;;OAMG;IACG,WAAW,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,GAAG,wBAAwB,CAAC;IAQ5F;;;;;;;;;;;;;;;OAeG;IACG,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAyBlD;;;;;;;;;;;;;;OAcG;IACG,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAiC9C;;;;;;;;;;;;;;;;;OAiBG;IACG,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;IAkChD;;;;;;;;;;;;;;OAcG;IACG,MAAM,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;YAiC9B,WAAW;IAyDzB;;;OAGG;YACW,eAAe;IAqC7B;;;;;;;;;;;;;;;;OAgBG;IACG,GAAG;CA4BV"}
|