@omkar273/mcp-temp 0.0.45 → 0.0.47

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.
@@ -0,0 +1,7 @@
1
+ # flexprice MCP client config examples
2
+
3
+ Example MCP client configs for flexprice. Copy the relevant snippet into your editor's MCP config (see the main [MCP README](../README.md)). Replace `YOUR_API_KEY` and any paths as needed.
4
+
5
+ - **cursor-mcp-config.example.json** — Cursor (npx, default mode)
6
+ - **claude-desktop-config.example.json** — Claude Desktop (npx)
7
+ - **dynamic-mode.example.json** — Any client with dynamic mode (`--mode dynamic`) for fewer tools in context
@@ -0,0 +1,16 @@
1
+ {
2
+ "mcpServers": {
3
+ "flexprice": {
4
+ "command": "npx",
5
+ "args": [
6
+ "-y",
7
+ "@flexprice/mcp-server",
8
+ "start",
9
+ "--server-url",
10
+ "https://us.api.flexprice.io/v1",
11
+ "--api-key-auth",
12
+ "YOUR_API_KEY"
13
+ ]
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "mcpServers": {
3
+ "flexprice": {
4
+ "command": "npx",
5
+ "args": [
6
+ "-y",
7
+ "@flexprice/mcp-server",
8
+ "start",
9
+ "--server-url",
10
+ "https://us.api.flexprice.io/v1",
11
+ "--api-key-auth",
12
+ "YOUR_API_KEY"
13
+ ]
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "mcpServers": {
3
+ "flexprice": {
4
+ "command": "npx",
5
+ "args": [
6
+ "-y",
7
+ "@flexprice/mcp-server",
8
+ "start",
9
+ "--server-url",
10
+ "https://us.api.flexprice.io/v1",
11
+ "--api-key-auth",
12
+ "YOUR_API_KEY",
13
+ "--mode",
14
+ "dynamic"
15
+ ]
16
+ }
17
+ }
18
+ }
package/manifest.json CHANGED
@@ -46,7 +46,7 @@
46
46
  "sensitive": true
47
47
  }
48
48
  },
49
- "version": "0.0.45",
49
+ "version": "0.0.47",
50
50
  "tools": [
51
51
  {
52
52
  "name": "update-customer",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omkar273/mcp-temp",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "author": "flexprice",
5
5
  "type": "module",
6
6
  "sideEffects": false,
package/src/lib/config.ts CHANGED
@@ -62,8 +62,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
62
62
  export const SDK_METADATA = {
63
63
  language: "typescript",
64
64
  openapiDocVersion: "1.0",
65
- sdkVersion: "0.0.45",
65
+ sdkVersion: "0.0.47",
66
66
  genVersion: "2.845.1",
67
67
  userAgent:
68
- "speakeasy-sdk/mcp-typescript 0.0.45 2.845.1 1.0 @omkar273/mcp-temp",
68
+ "speakeasy-sdk/mcp-typescript 0.0.47 2.845.1 1.0 @omkar273/mcp-temp",
69
69
  } as const;
@@ -21,7 +21,7 @@ const routes = buildRouteMap({
21
21
  export const app = buildApplication(routes, {
22
22
  name: "mcp",
23
23
  versionInfo: {
24
- currentVersion: "0.0.45",
24
+ currentVersion: "0.0.47",
25
25
  },
26
26
  });
27
27
 
@@ -56,7 +56,7 @@ export function createMCPServer(deps: {
56
56
  }) {
57
57
  const server = new McpServer({
58
58
  name: "Flexprice",
59
- version: "0.0.45",
59
+ version: "0.0.47",
60
60
  });
61
61
 
62
62
  const getClient = deps.getSDK || (() =>