Skip to content

Commit a5ef817

Browse files
committed
updating version, corrected namespace for registry
1 parent 4178819 commit a5ef817

File tree

7 files changed

+16
-15
lines changed

7 files changed

+16
-15
lines changed

bin/update-server-json-version.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const packageJson = JSON.parse(fs.readFileSync(path.join(__dirname, '../package.
1010

1111
// Update the version in your file
1212
data.version = packageJson.version;
13+
data.packages[0].version = packageJson.version;
1314

1415
// Write it back
1516
fs.writeFileSync(filePath, JSON.stringify(data, null, 2) + '\n');

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fusionauth-mcp-api",
3-
"version": "0.1.10",
3+
"version": "0.1.12",
44
"mcpName": "com.fusionAuth/fusionauth-mcp-api",
55
"description": "Preview release of FusionAuth API MCP server",
66
"main": "index.js",

packages/mcp-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ You can omit the `env` section above if you have configured an `.env` file.
159159

160160
## Publishing
161161

162-
use npm publish
162+
npm publish --access public --workspace=packages/mcp-api
163163

164164
## Feedback
165165

packages/mcp-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fusionauth/mcp-api",
3-
"version": "0.1.10",
3+
"version": "0.1.12",
44
"description": "MCP Server generated from OpenAPI spec for fusionauth-api",
55
"private": false,
66
"type": "module",

packages/mcp-api/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22
/**
3-
* MCP Server generated from OpenAPI spec for fusionauth-api v0.1.10
4-
* Generated on: 2025-11-10T23:58:32.159Z
3+
* MCP Server generated from OpenAPI spec for fusionauth-api v0.1.12
4+
* Generated on: 2025-11-11T01:12:45.419Z
55
*/
66

77
// Load environment variables from .env file
@@ -45,7 +45,7 @@ interface McpToolDefinition {
4545
* Server configuration
4646
*/
4747
export const SERVER_NAME = "fusionauth-api";
48-
export const SERVER_VERSION = "0.1.10";
48+
export const SERVER_VERSION = "0.1.12";
4949
export const OPENAPI_BASE_URL = "http://localhost:9011";
5050
export const API_BASE_URL = process.env[`API_BASE_URL`] || OPENAPI_BASE_URL;
5151
export const TOOL_BUCKETS = process.env[`TOOL_BUCKETS`] || "create,delete,patch,update,retrieve,search"; // anything else goes into other

server.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3-
"name": "com.fusionAuth/fusionauth-mcp-api",
3+
"name": "io.fusionauth/fusionauth-mcp-api",
44
"description": "Preview release of FusionAuth API MCP server",
55
"repository": {
66
"url": "https://github.com/FusionAuth/fusionauth-mcp-api",
77
"source": "github"
88
},
9-
"version": "0.1.10",
9+
"version": "0.1.12",
1010
"packages": [
1111
{
1212
"registryType": "npm",
13-
"identifier": "fusionauth-mcp-api",
14-
"version": "0.1.7",
13+
"identifier": "@fusionauth/mcp-api",
14+
"version": "0.1.12",
1515
"transport": {
1616
"type": "stdio"
1717
},

0 commit comments

Comments
 (0)