ask-web-fetch-mcp 0.1.0 → 0.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/ask/web_fetch/mcp/version.rb +1 -1
- data/lib/ask/web_fetch/mcp.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 89b64a1226c493d02920a26674d9441833806dadc4d217dee7df2b4cb89fcd4f
|
|
4
|
+
data.tar.gz: 460199671b6c955784389c148a5cbe3cafa98a151eca7a48424f0f19751825f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d82628ece7e873db8a2cba9a37babf6b78c65f4504e8ff59da137329c103008af5394cea41f2ab37b99c1d26be5c26a214963a7fa84f649358dc2e0b8fa0a9eb
|
|
7
|
+
data.tar.gz: 339933690eb680af27b42ca7d5cb650563b0014aa352a19c16524b5a4a60f732954e7929da40bdcebe63ad42770559f4546c96d0748a2b74aebfd552230f741d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [0.2.0] — 2026-08-04
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
|
|
5
|
+
- Subprocess integration test suite (`test/server_test.rb`) driving the
|
|
6
|
+
server end-to-end with `Ask::MCP::Client` over a real stdio subprocess,
|
|
7
|
+
using a stub backend so no network is involved: stateless negotiation,
|
|
8
|
+
tool listing, tool calls, `max_chars` truncation, and unknown-tool errors.
|
|
9
|
+
- The server now reports its own gem version in the MCP `serverInfo`
|
|
10
|
+
handshake (via `ask-mcp >= 0.4.3`), instead of ask-mcp's version.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- `ask-mcp` floor raised to `>= 0.4.3` for the serverInfo version
|
|
15
|
+
passthrough.
|
|
16
|
+
|
|
1
17
|
## [0.1.0] — 2026-08-04
|
|
2
18
|
|
|
3
19
|
### Added
|
data/lib/ask/web_fetch/mcp.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ask-web-fetch-mcp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kaka Ruto
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version:
|
|
18
|
+
version: 0.4.3
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - ">="
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version:
|
|
25
|
+
version: 0.4.3
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: ask-web-fetch
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|