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 +5 -0
- package/index-stdio.js +0 -0
- package/index.js +1 -1
- package/package.json +2 -2
- package/server.json +20 -20
- package/server.remote.json +1 -1
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
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docbot-mcp",
|
|
3
|
-
"version": "1.0.
|
|
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.
|
|
10
|
-
"packages": [
|
|
11
|
-
{
|
|
12
|
-
"registryType": "npm",
|
|
13
|
-
"identifier": "docbot-mcp",
|
|
14
|
-
"version": "1.0.
|
|
15
|
-
"transport": {
|
|
16
|
-
"type": "
|
|
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
|
+
}
|