docbot-mcp 1.0.4 → 1.0.5

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/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.0.5] - 2026-03-15
6
+ ### Changed
7
+ - Switch transport back to stdio for Official MCP Registry
8
+ - Hide App Runner URL from server settings
9
+
5
10
  ## [1.0.4] - 2026-03-15
6
11
  ### Changed
7
12
  - Move sample data into `data/` subfolder for better organization
package/index-stdio.js CHANGED
File without changes
package/index.js CHANGED
@@ -13,7 +13,7 @@ app.use(express.json());
13
13
  function createServer() {
14
14
  const server = new McpServer({
15
15
  name: 'docbot-mcp',
16
- version: '1.0.4'
16
+ version: '1.0.5'
17
17
  });
18
18
 
19
19
  server.registerTool(
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "docbot-mcp",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "mcpName": "io.github.rflukerii-dev/docbot-mcp",
5
5
  "description": "Bidirectional CSV <> JSON <> Markdown transformer",
6
6
  "main": "index.js",
7
7
  "bin": {
8
- "docbot-mcp": "./index.js"
8
+ "docbot-mcp": "./index-stdio.js"
9
9
  },
10
10
  "scripts": {
11
11
  "start": "node index.js",
package/server.json CHANGED
@@ -1,20 +1,20 @@
1
- {
2
- "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "io.github.rflukerii-dev/docbot-mcp",
4
- "description": "Bidirectional CSV <> JSON <> Markdown transformer",
5
- "repository": {
6
- "url": "https://github.com/rflukerii-dev/docbot-mcp",
7
- "source": "github"
8
- },
9
- "version": "1.0.4",
10
- "packages": [
11
- {
12
- "registryType": "npm",
13
- "identifier": "docbot-mcp",
14
- "version": "1.0.4",
15
- "transport": {
16
- "type": "streamable-http"
17
- }
18
- }
19
- ]
20
- }
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.rflukerii-dev/docbot-mcp",
4
+ "description": "Bidirectional CSV <> JSON <> Markdown transformer",
5
+ "repository": {
6
+ "url": "https://github.com/rflukerii-dev/docbot-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.5",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "docbot-mcp",
14
+ "version": "1.0.5",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "remotes": {
21
21
  "streamable-http": {
22
- "url": "https://spdeyfjpfv.us-east-1.awsapprunner.com/docbot-mcp"
22
+ "url": "https://app_runner_url/app_name"
23
23
  }
24
24
  }
25
25
  }