@sgpdirectory/mcp 1.0.2 → 1.1.0

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @sgpdirectory/mcp
2
2
 
3
- Official local MCP (Model Context Protocol) wrapper for the `sgpdirectory` remote server.
3
+ Official local MCP (Model Context Protocol) wrapper for the `sgpdirectory` remote server. Singapore business directory: search entities, UENs, and SSIC industry classifications.
4
4
 
5
5
  This package provides a standard `stdio` interface compatible with local MCP clients (like Claude Desktop and Cursor), proxying requests securely to the remote HTTP streamable sgpdirectory server (`https://mcp.sgpdirectory.com/mcp`).
6
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sgpdirectory/mcp",
3
- "version": "1.0.2",
4
- "description": "The official local MCP package for sgpdirectory",
3
+ "version": "1.1.0",
4
+ "description": "Singapore business directory. Search entities, UENs, and SSIC industry classifications.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "start": "node ./index.js",
@@ -0,0 +1,13 @@
1
+ #!/bin/bash
2
+
3
+ # Ensure we're in the project root
4
+ cd "$(dirname "$0")/.."
5
+
6
+ # Publish to NPM
7
+ echo "📦 Publishing to npmjs.com..."
8
+ npm publish --access public
9
+
10
+ # Publish to MCP Registry
11
+ echo "🚀 Publishing to registry.modelcontextprotocol.io..."
12
+ # mcp-publisher publish uses the server.json file to update the MCP registry
13
+ mcp-publisher publish server.json
package/server.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "com.sgpdirectory/mcp",
4
- "description": "The official local MCP package for sgpdirectory",
4
+ "description": "Singapore business directory. Search entities, UENs, and SSIC industry classifications.",
5
5
  "repository": {
6
6
  "url": "https://github.com/sgpdirectory/sgpdirectory-mcp-package",
7
7
  "source": "github"
8
8
  },
9
- "version": "1.0.2",
9
+ "version": "1.1.0",
10
10
  "remotes": [
11
11
  {
12
12
  "type": "streamable-http",
@@ -26,7 +26,7 @@
26
26
  "registryType": "npm",
27
27
  "registryBaseUrl": "https://registry.npmjs.org",
28
28
  "identifier": "@sgpdirectory/mcp",
29
- "version": "1.0.2",
29
+ "version": "1.1.0",
30
30
  "transport": {
31
31
  "type": "stdio"
32
32
  },