@edda-business/mcp 0.51.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 +216 -0
- package/package.json +38 -0
- package/src/client.js +150 -0
- package/src/http.js +122 -0
- package/src/index.js +32 -0
- package/src/server.js +1190 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
203
|
+
|
|
204
|
+
Copyright 2026 Nous
|
|
205
|
+
|
|
206
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
207
|
+
you may not use this file except in compliance with the License.
|
|
208
|
+
You may obtain a copy of the License at
|
|
209
|
+
|
|
210
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
211
|
+
|
|
212
|
+
Unless required by applicable law or agreed to in writing, software
|
|
213
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
214
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
215
|
+
See the License for the specific language governing permissions and
|
|
216
|
+
limitations under the License.
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@edda-business/mcp",
|
|
3
|
+
"version": "0.51.0",
|
|
4
|
+
"description": "Edda — the company data layer for AI agents.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/NousC/opennous.git",
|
|
9
|
+
"directory": "apps/mcp"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"bin": {
|
|
13
|
+
"edda-mcp": "src/index.js"
|
|
14
|
+
},
|
|
15
|
+
"main": "./src/index.js",
|
|
16
|
+
"files": [
|
|
17
|
+
"src"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "node --watch src/index.js",
|
|
21
|
+
"start": "node src/index.js",
|
|
22
|
+
"dev:http": "node --watch src/http.js",
|
|
23
|
+
"start:http": "node src/http.js",
|
|
24
|
+
"typecheck": "echo 'no ts in mcp — skipping'"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"mcp",
|
|
28
|
+
"nous",
|
|
29
|
+
"memory",
|
|
30
|
+
"crm",
|
|
31
|
+
"gtm",
|
|
32
|
+
"agents"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
36
|
+
"zod": "^3.23.8"
|
|
37
|
+
}
|
|
38
|
+
}
|
package/src/client.js
ADDED
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Edda API Client
|
|
3
|
+
* Thin HTTP wrapper that handles auth, workspace context, and error handling.
|
|
4
|
+
*
|
|
5
|
+
* The API key is resolved per request: in the hosted HTTP server each request
|
|
6
|
+
* carries its own Bearer key (scoped via AsyncLocalStorage); in the stdio bin
|
|
7
|
+
* there is one key from the env. currentApiKey() checks the ALS store first,
|
|
8
|
+
* then falls back to NOUS_API_KEY, so tool handlers stay key-agnostic.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import { AsyncLocalStorage } from "node:async_hooks";
|
|
12
|
+
import fs from "node:fs";
|
|
13
|
+
import os from "node:os";
|
|
14
|
+
import path from "node:path";
|
|
15
|
+
|
|
16
|
+
// Resolve an env var defensively — Claude Code plugins use ${user_config.X}
|
|
17
|
+
// substitution; when an optional userConfig field is left blank, the literal
|
|
18
|
+
// "${user_config.field}" string can leak through. Treat any value that looks
|
|
19
|
+
// like an unresolved substitution as missing.
|
|
20
|
+
function resolvedEnv(name) {
|
|
21
|
+
const v = process.env[name];
|
|
22
|
+
if (!v) return undefined;
|
|
23
|
+
if (v.includes("${")) return undefined; // unresolved substitution marker
|
|
24
|
+
return v;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const API_URL = resolvedEnv("NOUS_API_URL") || "https://api.opennous.cloud";
|
|
28
|
+
|
|
29
|
+
// Per-request key context for the hosted HTTP server. Empty in stdio mode.
|
|
30
|
+
export const apiKeyStore = new AsyncLocalStorage();
|
|
31
|
+
|
|
32
|
+
// Run `fn` with `apiKey` bound for the duration of its async execution, so any
|
|
33
|
+
// request() call inside it uses that key.
|
|
34
|
+
export function runWithApiKey(apiKey, fn) {
|
|
35
|
+
return apiKeyStore.run({ apiKey }, fn);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Credential written by `nous login` (the browser device-auth flow). The CLI and
|
|
39
|
+
// the MCP server share ~/.nous/config.json, so a user who runs the login command
|
|
40
|
+
// gets a key — and, for self-host, the API URL — the MCP picks up on the next
|
|
41
|
+
// call, with no paste and no env var.
|
|
42
|
+
function readFileConfig() {
|
|
43
|
+
try {
|
|
44
|
+
const dir = resolvedEnv("NOUS_CONFIG_DIR") || path.join(os.homedir(), ".nous");
|
|
45
|
+
return JSON.parse(fs.readFileSync(path.join(dir, "config.json"), "utf8"));
|
|
46
|
+
} catch {
|
|
47
|
+
return null;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
function clean(v) {
|
|
51
|
+
return v && !String(v).includes("${") ? v : undefined; // drop unresolved ${...} markers
|
|
52
|
+
}
|
|
53
|
+
function fileApiKey() { return clean(readFileConfig()?.apiKey); }
|
|
54
|
+
function fileApiUrl() { return clean(readFileConfig()?.apiUrl); }
|
|
55
|
+
|
|
56
|
+
function currentApiKey() {
|
|
57
|
+
return apiKeyStore.getStore()?.apiKey ?? resolvedEnv("NOUS_API_KEY") ?? fileApiKey();
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Resolve the API base per call: env → ~/.nous/config.json (set by `nous login
|
|
61
|
+
// --url` on self-host) → cloud default. So a self-hoster who logs in via the CLI
|
|
62
|
+
// gets the MCP pointed at their own instance automatically.
|
|
63
|
+
function currentApiUrl() {
|
|
64
|
+
return resolvedEnv("NOUS_API_URL") ?? fileApiUrl() ?? "https://api.opennous.cloud";
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// stdio-only preflight. A key may come from the env OR from `nous login`'s
|
|
68
|
+
// credential file. This is advisory — the server still starts without one so
|
|
69
|
+
// the user can run the login command after installing the plugin, and the key
|
|
70
|
+
// is resolved per-call.
|
|
71
|
+
export function validateConfig() {
|
|
72
|
+
if (!resolvedEnv("NOUS_API_KEY") && !fileApiKey()) {
|
|
73
|
+
throw new Error(
|
|
74
|
+
"No Edda API key found. Run `npx @edda-business/cli login` to sign in (or `npx @edda-business/cli init` " +
|
|
75
|
+
"to set up from scratch), or set NOUS_API_KEY."
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
async function request(method, path, { body, query } = {}) {
|
|
81
|
+
const apiKey = currentApiKey();
|
|
82
|
+
if (!apiKey) {
|
|
83
|
+
throw new Error("Missing Edda API key. Pass it as an Authorization: Bearer header.");
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const url = new URL(path, currentApiUrl());
|
|
87
|
+
|
|
88
|
+
if (query) {
|
|
89
|
+
for (const [key, value] of Object.entries(query)) {
|
|
90
|
+
if (value !== undefined && value !== null) {
|
|
91
|
+
url.searchParams.set(key, String(value));
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
const headers = {
|
|
97
|
+
Authorization: `Bearer ${apiKey}`,
|
|
98
|
+
"Content-Type": "application/json",
|
|
99
|
+
"X-Edda-Client": "mcp",
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
const res = await fetch(url.toString(), {
|
|
103
|
+
method,
|
|
104
|
+
headers,
|
|
105
|
+
body: body ? JSON.stringify(body) : undefined,
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
if (!res.ok) {
|
|
109
|
+
let err = {};
|
|
110
|
+
try { err = await res.json(); } catch { /* non-JSON body */ }
|
|
111
|
+
// Cloud-only feature on a self-hosted workspace: turn the raw 403 into a clear,
|
|
112
|
+
// non-alarming message so the agent stops reaching for it and explains why.
|
|
113
|
+
if (res.status === 403 && err.error === "cloud_only_feature") {
|
|
114
|
+
const feat = err.feature === "crmSync" ? "CRM sync"
|
|
115
|
+
: err.feature === "leadLists" ? "lead lists"
|
|
116
|
+
: err.feature || "this";
|
|
117
|
+
throw new Error(
|
|
118
|
+
`This is a Edda Cloud feature (${feat}) and isn't available on a self-hosted ` +
|
|
119
|
+
`workspace. CRM sync and lead lists are the cloud-only team layer — everything ` +
|
|
120
|
+
`else (context, accounts, ICP scoring, notes, integrations) works on self-host. ` +
|
|
121
|
+
`Don't retry; tell the user this needs Edda Cloud.`
|
|
122
|
+
);
|
|
123
|
+
}
|
|
124
|
+
const errorMessage = err.error || err.message || res.statusText;
|
|
125
|
+
throw new Error(`Edda API error (${res.status}): ${errorMessage}`);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// Some endpoints return empty 204
|
|
129
|
+
if (res.status === 204) return { success: true };
|
|
130
|
+
|
|
131
|
+
return res.json();
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export function get(path, query) {
|
|
135
|
+
return request("GET", path, { query });
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export function post(path, body) {
|
|
139
|
+
return request("POST", path, { body });
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export function patch(path, body) {
|
|
143
|
+
return request("PATCH", path, { body });
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export function del(path) {
|
|
147
|
+
return request("DELETE", path);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export { API_URL };
|
package/src/http.js
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Edda MCP Server — hosted, multi-tenant HTTP entrypoint (mcp.opennous.cloud).
|
|
5
|
+
*
|
|
6
|
+
* Serves the same tool set (server.js) over the MCP Streamable HTTP transport,
|
|
7
|
+
* so cloud clients that cannot launch a local process — n8n cloud above all —
|
|
8
|
+
* can connect by pasting one URL plus their workspace API key.
|
|
9
|
+
*
|
|
10
|
+
* Auth: each request carries its own `Authorization: Bearer pk_...` (the same
|
|
11
|
+
* workspace key the REST API already validates). A `?key=pk_...` query param is
|
|
12
|
+
* accepted as a fallback for url-only clients (less secure: it can land in logs).
|
|
13
|
+
* The key is bound for the request via AsyncLocalStorage (runWithApiKey), so the
|
|
14
|
+
* tool handlers stay key-agnostic.
|
|
15
|
+
*
|
|
16
|
+
* Stateless: a fresh server + transport per request — clean tenant isolation,
|
|
17
|
+
* no session store.
|
|
18
|
+
*
|
|
19
|
+
* Env:
|
|
20
|
+
* PORT — listen port (default 3002)
|
|
21
|
+
* NOUS_API_URL — API base URL (default https://api.opennous.cloud; in-cluster: http://api:3000)
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
import http from "node:http";
|
|
25
|
+
import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
|
|
26
|
+
import { runWithApiKey } from "./client.js";
|
|
27
|
+
import { createServer, SERVER_VERSION } from "./server.js";
|
|
28
|
+
|
|
29
|
+
const PORT = Number(process.env.PORT) || 3002;
|
|
30
|
+
const MCP_PATH = "/mcp";
|
|
31
|
+
|
|
32
|
+
const CORS_HEADERS = {
|
|
33
|
+
"Access-Control-Allow-Origin": "*",
|
|
34
|
+
"Access-Control-Allow-Methods": "GET, POST, DELETE, OPTIONS",
|
|
35
|
+
"Access-Control-Allow-Headers": "Authorization, Content-Type, Mcp-Session-Id, Mcp-Protocol-Version",
|
|
36
|
+
"Access-Control-Expose-Headers": "Mcp-Session-Id",
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
function sendJson(res, status, payload) {
|
|
40
|
+
const text = JSON.stringify(payload);
|
|
41
|
+
res.writeHead(status, { ...CORS_HEADERS, "Content-Type": "application/json" });
|
|
42
|
+
res.end(text);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// JSON-RPC shaped error so MCP clients render it cleanly.
|
|
46
|
+
function rpcError(res, status, message, id = null) {
|
|
47
|
+
sendJson(res, status, { jsonrpc: "2.0", error: { code: -32000, message }, id });
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function extractApiKey(req, url) {
|
|
51
|
+
const auth = req.headers["authorization"];
|
|
52
|
+
if (auth && auth.startsWith("Bearer ")) return auth.slice(7).trim();
|
|
53
|
+
const qp = url.searchParams.get("key");
|
|
54
|
+
if (qp) return qp.trim();
|
|
55
|
+
return null;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function readBody(req) {
|
|
59
|
+
return new Promise((resolve, reject) => {
|
|
60
|
+
const chunks = [];
|
|
61
|
+
req.on("data", (c) => chunks.push(c));
|
|
62
|
+
req.on("end", () => {
|
|
63
|
+
const raw = Buffer.concat(chunks).toString("utf8");
|
|
64
|
+
if (!raw) return resolve(undefined);
|
|
65
|
+
try { resolve(JSON.parse(raw)); }
|
|
66
|
+
catch (e) { reject(e); }
|
|
67
|
+
});
|
|
68
|
+
req.on("error", reject);
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
const httpServer = http.createServer(async (req, res) => {
|
|
73
|
+
const url = new URL(req.url, `http://${req.headers.host ?? "localhost"}`);
|
|
74
|
+
|
|
75
|
+
if (req.method === "OPTIONS") {
|
|
76
|
+
res.writeHead(204, CORS_HEADERS);
|
|
77
|
+
return res.end();
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (url.pathname === "/health" || url.pathname === "/") {
|
|
81
|
+
return sendJson(res, 200, { status: "ok", server: "edda-mcp", version: SERVER_VERSION });
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if (url.pathname !== MCP_PATH) {
|
|
85
|
+
return rpcError(res, 404, "Not found. The MCP endpoint is POST /mcp.");
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
const apiKey = extractApiKey(req, url);
|
|
89
|
+
if (!apiKey) {
|
|
90
|
+
return rpcError(res, 401, "Missing API key. Send Authorization: Bearer <your Edda API key>.");
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
let body;
|
|
94
|
+
try {
|
|
95
|
+
body = req.method === "POST" ? await readBody(req) : undefined;
|
|
96
|
+
} catch {
|
|
97
|
+
return rpcError(res, 400, "Invalid JSON body.");
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Fresh server + transport per request (stateless), with the key bound for
|
|
101
|
+
// the whole async handling so every tool call uses this tenant's key.
|
|
102
|
+
await runWithApiKey(apiKey, async () => {
|
|
103
|
+
const server = createServer();
|
|
104
|
+
const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: undefined });
|
|
105
|
+
res.on("close", () => {
|
|
106
|
+
transport.close();
|
|
107
|
+
server.close();
|
|
108
|
+
});
|
|
109
|
+
try {
|
|
110
|
+
await server.connect(transport);
|
|
111
|
+
await transport.handleRequest(req, res, body);
|
|
112
|
+
} catch (err) {
|
|
113
|
+
if (!res.headersSent) {
|
|
114
|
+
rpcError(res, 500, `MCP error: ${err?.message ?? "unknown"}`);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
});
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
httpServer.listen(PORT, () => {
|
|
121
|
+
console.log(`Edda MCP (HTTP) v${SERVER_VERSION} listening on :${PORT}${MCP_PATH}`);
|
|
122
|
+
});
|
package/src/index.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Edda MCP Server — stdio entrypoint (published as @edda-business/mcp).
|
|
5
|
+
*
|
|
6
|
+
* Runs locally and is launched by the client via `npx -y @edda-business/mcp`. The
|
|
7
|
+
* workspace API key comes from the env. For the hosted, multi-tenant HTTP
|
|
8
|
+
* variant see http.js; the tools themselves live in server.js.
|
|
9
|
+
*
|
|
10
|
+
* Required env:
|
|
11
|
+
* NOUS_API_KEY — workspace API key (Settings -> API Keys)
|
|
12
|
+
* Optional:
|
|
13
|
+
* NOUS_API_URL — API base URL (default: https://api.opennous.cloud)
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
17
|
+
import { validateConfig } from "./client.js";
|
|
18
|
+
import { createServer } from "./server.js";
|
|
19
|
+
|
|
20
|
+
// Advisory only — don't hard-exit if there's no key yet. The user may register
|
|
21
|
+
// the MCP first and sign in after (`npx @edda-business/cli login`); the server must
|
|
22
|
+
// already be running so the key (resolved per-call from env or ~/.nous/config.json)
|
|
23
|
+
// is picked up without a restart.
|
|
24
|
+
try {
|
|
25
|
+
validateConfig();
|
|
26
|
+
} catch (err) {
|
|
27
|
+
console.error(`[nous] ${err.message}`);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const server = createServer();
|
|
31
|
+
const transport = new StdioServerTransport();
|
|
32
|
+
await server.connect(transport);
|