Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/igniteui-mcp/igniteui-doc-mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@igniteui/mcp-server",
"mcpName": "io.github.IgniteUI/mcp-server",
"version": "15.0.1",
"description": "Unified MCP server for Ignite UI — documentation, GitHub API, and CLI scaffolding",
"repository": {
Expand Down
12 changes: 12 additions & 0 deletions packages/igniteui-mcp/igniteui-doc-mcp/server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.IgniteUI/mcp-server",
"description": "Unified MCP server for Ignite UI — documentation, GitHub API, and CLI scaffolding",
"version": "15.0.1",
Comment thread
dkalinovInfra marked this conversation as resolved.
"packages": [{
"registryType": "npm",
"identifier": "@igniteui/mcp-server",
"version": "15.0.1",
Comment thread
damyanpetev marked this conversation as resolved.
"transport": { "type": "stdio" }
}]
}
17 changes: 17 additions & 0 deletions scripts/versionScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,28 @@ function updatePackageJson(fileLocation: string) {
writeFileSync(fileLocation, JSON.stringify(pkgJson, null, 2) + "\n");
}

function updateServerJson(pkgJsonLocation: string, serverJsonLocation: string) {
const pkgVersion = JSON.parse(readFileSync(pkgJsonLocation).toString()).version;
const serverJson = JSON.parse(readFileSync(serverJsonLocation).toString());
const previousVersion = serverJson.version;
serverJson.version = pkgVersion;
if (Array.isArray(serverJson.packages)) {
for (const entry of serverJson.packages) {
entry.version = pkgVersion;
}
}
writeFileSync(serverJsonLocation, JSON.stringify(serverJson, null, 2) + "\n");
}

function main() {
version = getVersion();
for (const folder of packageFolders) {
updatePackageJson(path.join("packages", folder, "package.json"));
}
updateServerJson(
path.join("packages", "igniteui-mcp", "igniteui-doc-mcp", "package.json"),
path.join("packages", "igniteui-mcp", "igniteui-doc-mcp", "server.json"),
);
}
main();
generateChangelog(version);
Loading