@flink-app/mcp 0.12.1-alpha.15 → 0.12.1-alpha.16
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 +1 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -30,7 +30,6 @@ async function makeFlinkApiDocsRequest() {
|
|
|
30
30
|
const headers = {
|
|
31
31
|
Accept: "application/json",
|
|
32
32
|
};
|
|
33
|
-
console.log(`Fetching API docs from ${apiRoot}`);
|
|
34
33
|
try {
|
|
35
34
|
const response = await fetch(apiRoot, { headers });
|
|
36
35
|
if (!response.ok) {
|
|
@@ -50,7 +49,7 @@ async function main() {
|
|
|
50
49
|
const transport = new stdio_js_1.StdioServerTransport();
|
|
51
50
|
// Connect the server to the transport
|
|
52
51
|
await server.connect(transport);
|
|
53
|
-
console.error
|
|
52
|
+
console.log(JSON.stringify({ error: "Flink API MCP server started successfully" }));
|
|
54
53
|
}
|
|
55
54
|
catch (error) {
|
|
56
55
|
console.error("Failed to start Flink API MCP server:", error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flink-app/mcp",
|
|
3
|
-
"version": "0.12.1-alpha.
|
|
3
|
+
"version": "0.12.1-alpha.16",
|
|
4
4
|
"description": "MCP server/client to expose API docs and possibly other things to LLM",
|
|
5
5
|
"bin": {
|
|
6
6
|
"flink-mcp": "./dist/index.js"
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@modelcontextprotocol/sdk": "^1.11.0"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "c2c582a2763c9da7a099567384251c6bf64493cf"
|
|
36
36
|
}
|