@wireweave/mcp-server 1.5.0 → 1.5.1-beta.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/README.md +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This MCP server enables AI assistants like Claude to generate wireframes using t
|
|
|
21
21
|
|
|
22
22
|
## Prerequisites
|
|
23
23
|
|
|
24
|
-
You need a Wireweave API key. Get one from the [Dashboard](https://
|
|
24
|
+
You need a Wireweave API key. Get one from the [Dashboard](https://wireweave.org).
|
|
25
25
|
|
|
26
26
|
## Installation
|
|
27
27
|
|
|
@@ -160,7 +160,7 @@ All authentication, rate limiting, and business logic runs on the API Server.
|
|
|
160
160
|
## Links
|
|
161
161
|
|
|
162
162
|
- [Documentation](https://docs.wireweave.org)
|
|
163
|
-
- [Dashboard](https://
|
|
163
|
+
- [Dashboard](https://wireweave.org)
|
|
164
164
|
- [Playground](https://playground.wireweave.org)
|
|
165
165
|
- [GitHub](https://github.com/wireweave/mcp-server)
|
|
166
166
|
|
package/dist/index.js
CHANGED
|
@@ -851,7 +851,7 @@ function buildRequest(config, endpoint, args) {
|
|
|
851
851
|
return { url, options, bodyForGet: body };
|
|
852
852
|
}
|
|
853
853
|
function parseErrorMessage(status, error) {
|
|
854
|
-
if (status === 401) return "Invalid API key. Get one at https://
|
|
854
|
+
if (status === 401) return "Invalid API key. Get one at https://wireweave.org";
|
|
855
855
|
if (status === 402) return `Insufficient credits. ${error.message || "Please add more credits."}`;
|
|
856
856
|
if (status === 403) return "Access denied. Upgrade your plan for this feature.";
|
|
857
857
|
if (status === 404 && error.error?.includes("project")) {
|
|
@@ -1039,7 +1039,7 @@ async function main() {
|
|
|
1039
1039
|
await server.connect(transport);
|
|
1040
1040
|
log(`MCP server started with ${tools.length} tools, ${prompts.length} prompts, ${resources.length} resources`);
|
|
1041
1041
|
if (!API_KEY) {
|
|
1042
|
-
log("API key not configured. Get one at https://
|
|
1042
|
+
log("API key not configured. Get one at https://wireweave.org", "warn");
|
|
1043
1043
|
}
|
|
1044
1044
|
}
|
|
1045
1045
|
main().catch(() => {
|