@runonflux/flux-cloud-mcp 0.2.3 → 0.2.4
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/server.d.ts +1 -1
- package/dist/server.js +1 -1
- package/package.json +2 -2
package/dist/server.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
|
8
8
|
import type { Config } from './config.js';
|
|
9
9
|
import { walletFromConfig } from './deploy.js';
|
|
10
10
|
export declare const SERVER_NAME = "flux-cloud";
|
|
11
|
-
export declare const SERVER_VERSION = "0.2.
|
|
11
|
+
export declare const SERVER_VERSION = "0.2.4";
|
|
12
12
|
export interface ServerOptions {
|
|
13
13
|
/**
|
|
14
14
|
* Hosted mode: the server holds no keys. Tools that need them take
|
package/dist/server.js
CHANGED
|
@@ -14,7 +14,7 @@ import { currentSession, generateIdentity, identityFromWif } from './keys.js';
|
|
|
14
14
|
import { DEFAULT_USD_RATES, estimateQuote, fetchFluxUsdRate, fetchUsdRates, quoteFromNetwork, } from './pricing.js';
|
|
15
15
|
import { BLOCKS_PER_MONTH, buildSpecification, componentsOf, durabilityWarnings, expireOf, formatSpecification, normalizePublished, validateSpecification, } from './spec.js';
|
|
16
16
|
export const SERVER_NAME = 'flux-cloud';
|
|
17
|
-
export const SERVER_VERSION = '0.2.
|
|
17
|
+
export const SERVER_VERSION = '0.2.4';
|
|
18
18
|
// ---------------------------------------------------------------------------
|
|
19
19
|
// Schemas shared by several tools
|
|
20
20
|
// ---------------------------------------------------------------------------
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runonflux/flux-cloud-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "MCP server for Flux Cloud. Lets any AI agent quote, deploy, pay for, inspect and manage apps on the Flux decentralized cloud, priced in USD.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"bugs": {
|
|
70
70
|
"url": "https://github.com/RunOnFlux/flux-cloud-mcp/issues"
|
|
71
71
|
},
|
|
72
|
-
"mcpName": "io.github.
|
|
72
|
+
"mcpName": "io.github.RunOnFlux/flux-cloud-mcp"
|
|
73
73
|
}
|