mursa-mcp 0.4.0 → 0.4.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/package.json +2 -10
- package/server.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mursa-mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Mursa MCP server — connect Claude, Cursor, and other MCP clients to your Mursa tasks, calendar, goals, notes, habits, projects, and Gmail.",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,8 +9,7 @@
|
|
|
9
9
|
"type": "commonjs",
|
|
10
10
|
"files": [
|
|
11
11
|
"server.js",
|
|
12
|
-
"README.md"
|
|
13
|
-
"LICENSE"
|
|
12
|
+
"README.md"
|
|
14
13
|
],
|
|
15
14
|
"scripts": {
|
|
16
15
|
"start": "node server.js"
|
|
@@ -30,13 +29,6 @@
|
|
|
30
29
|
],
|
|
31
30
|
"license": "MIT",
|
|
32
31
|
"homepage": "https://mursa.me/mcp",
|
|
33
|
-
"repository": {
|
|
34
|
-
"type": "git",
|
|
35
|
-
"url": "git+https://github.com/Murali1889/MCP-mursa.git"
|
|
36
|
-
},
|
|
37
|
-
"bugs": {
|
|
38
|
-
"url": "https://github.com/Murali1889/MCP-mursa/issues"
|
|
39
|
-
},
|
|
40
32
|
"dependencies": {
|
|
41
33
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
42
34
|
"dotenv": "^16.4.5",
|
package/server.js
CHANGED
|
@@ -30,7 +30,7 @@ const { z } = require("zod");
|
|
|
30
30
|
|
|
31
31
|
// Default to the public Mursa proxy. Override only if you're self-hosting or
|
|
32
32
|
// pointing at a preview deployment.
|
|
33
|
-
const MURSA_API_URL = process.env.MURSA_API_URL || "https://mursa.me/api/mcp";
|
|
33
|
+
const MURSA_API_URL = process.env.MURSA_API_URL || "https://www.mursa.me/api/mcp";
|
|
34
34
|
const MURSA_API_KEY = process.env.MURSA_API_KEY;
|
|
35
35
|
|
|
36
36
|
if (!MURSA_API_KEY) {
|
|
@@ -83,7 +83,7 @@ function errorContent(err) {
|
|
|
83
83
|
};
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
const server = new McpServer({ name: "mursa", version: "0.
|
|
86
|
+
const server = new McpServer({ name: "mursa", version: "0.4.1" });
|
|
87
87
|
|
|
88
88
|
function tool(name, description, schema, action) {
|
|
89
89
|
server.tool(name, description, schema, async (args) => {
|