@vint.tri/report_gen_mcp 1.0.13 → 1.0.14
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/index.js +0 -18
- package/package.json +1 -1
- package/src/index.ts +0 -17
package/dist/index.js
CHANGED
|
@@ -104,14 +104,6 @@ if (process.argv.length === 2) {
|
|
|
104
104
|
},
|
|
105
105
|
required: ["document", "charts"]
|
|
106
106
|
}
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
name: "health",
|
|
110
|
-
description: "Check if the tool is running correctly",
|
|
111
|
-
inputSchema: {
|
|
112
|
-
type: "object",
|
|
113
|
-
properties: {}
|
|
114
|
-
}
|
|
115
107
|
}
|
|
116
108
|
]
|
|
117
109
|
}));
|
|
@@ -139,16 +131,6 @@ if (process.argv.length === 2) {
|
|
|
139
131
|
],
|
|
140
132
|
};
|
|
141
133
|
}
|
|
142
|
-
else if (request.params.name === 'health') {
|
|
143
|
-
return {
|
|
144
|
-
content: [
|
|
145
|
-
{
|
|
146
|
-
type: 'text',
|
|
147
|
-
text: JSON.stringify({ status: 'ok' }),
|
|
148
|
-
}
|
|
149
|
-
],
|
|
150
|
-
};
|
|
151
|
-
}
|
|
152
134
|
else {
|
|
153
135
|
return {
|
|
154
136
|
content: [
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -116,14 +116,6 @@ if (process.argv.length === 2) {
|
|
|
116
116
|
},
|
|
117
117
|
required: ["document", "charts"]
|
|
118
118
|
}
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
name: "health",
|
|
122
|
-
description: "Check if the tool is running correctly",
|
|
123
|
-
inputSchema: {
|
|
124
|
-
type: "object",
|
|
125
|
-
properties: {}
|
|
126
|
-
}
|
|
127
119
|
}
|
|
128
120
|
]
|
|
129
121
|
}));
|
|
@@ -154,15 +146,6 @@ if (process.argv.length === 2) {
|
|
|
154
146
|
}
|
|
155
147
|
],
|
|
156
148
|
};
|
|
157
|
-
} else if (request.params.name === 'health') {
|
|
158
|
-
return {
|
|
159
|
-
content: [
|
|
160
|
-
{
|
|
161
|
-
type: 'text',
|
|
162
|
-
text: JSON.stringify({ status: 'ok' }),
|
|
163
|
-
}
|
|
164
|
-
],
|
|
165
|
-
};
|
|
166
149
|
} else {
|
|
167
150
|
return {
|
|
168
151
|
content: [
|