specshield-mcp-server 0.1.0 → 1.0.1
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 -1
package/dist/server.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
|
2
2
|
import type { SpecShieldApiClient } from "./client.js";
|
|
3
3
|
import type { Logger } from "./logger.js";
|
|
4
4
|
export declare const SERVER_NAME = "specshield-mcp-server";
|
|
5
|
-
export declare const SERVER_VERSION = "0.1
|
|
5
|
+
export declare const SERVER_VERSION = "1.0.1";
|
|
6
6
|
export interface ServerDeps {
|
|
7
7
|
client: SpecShieldApiClient;
|
|
8
8
|
logger: Logger;
|
package/dist/server.js
CHANGED
|
@@ -2,7 +2,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
|
2
2
|
import { TOOLS } from "./tools/index.js";
|
|
3
3
|
import { HELP_TEXT } from "./resources/help.js";
|
|
4
4
|
export const SERVER_NAME = "specshield-mcp-server";
|
|
5
|
-
export const SERVER_VERSION = "0.1
|
|
5
|
+
export const SERVER_VERSION = "1.0.1";
|
|
6
6
|
/**
|
|
7
7
|
* Builds the MCP server with all tools registered in pitch order and the single
|
|
8
8
|
* read-only help resource. `deps.client` is injectable so tests can mock the
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specshield-mcp-server",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"mcpName": "io.github.specshield26/specshield-mcp-server",
|
|
4
5
|
"description": "SpecShield MCP server — the API-change deploy gate for AI coding agents. Ask 'is it safe to ship this API change to my consumers?' inside Claude, Cursor, and other MCP clients. Analyze-only; it never modifies code.",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"author": "SpecShield Software Private Limited",
|