@weijingwei/email 1.0.0 → 1.0.1
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/dist/bundle.js +3 -1
- package/package.json +1 -1
package/dist/bundle.js
CHANGED
|
@@ -83344,9 +83344,11 @@ server.registerTool(
|
|
|
83344
83344
|
}
|
|
83345
83345
|
);
|
|
83346
83346
|
async function main() {
|
|
83347
|
+
console.error("Starting Email MCP Server...");
|
|
83347
83348
|
const transport = new StdioServerTransport();
|
|
83349
|
+
console.error("Connecting to transport...");
|
|
83348
83350
|
await server.connect(transport);
|
|
83349
|
-
console.error("Email MCP Server started");
|
|
83351
|
+
console.error("\u2713 Email MCP Server started successfully");
|
|
83350
83352
|
}
|
|
83351
83353
|
main().catch((error2) => {
|
|
83352
83354
|
console.error("Server error:", error2);
|