vector_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/README.md +421 -114
- data/lib/vector_mcp/definitions.rb +210 -1
- data/lib/vector_mcp/errors.rb +39 -0
- data/lib/vector_mcp/handlers/core.rb +17 -0
- data/lib/vector_mcp/image_util.rb +358 -0
- data/lib/vector_mcp/sampling/request.rb +193 -0
- data/lib/vector_mcp/sampling/result.rb +80 -0
- data/lib/vector_mcp/server/capabilities.rb +156 -0
- data/lib/vector_mcp/server/message_handling.rb +166 -0
- data/lib/vector_mcp/server/registry.rb +289 -0
- data/lib/vector_mcp/server.rb +53 -415
- data/lib/vector_mcp/session.rb +100 -23
- data/lib/vector_mcp/transport/stdio.rb +174 -16
- data/lib/vector_mcp/util.rb +135 -10
- data/lib/vector_mcp/version.rb +1 -1
- data/lib/vector_mcp.rb +2 -1
- metadata +21 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vector_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
|
- Sergio Bayona
|
@@ -65,6 +65,20 @@ dependencies:
|
|
65
65
|
- - "~>"
|
66
66
|
- !ruby/object:Gem::Version
|
67
67
|
version: '1.36'
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: base64
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0.2'
|
75
|
+
type: :runtime
|
76
|
+
prerelease: false
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0.2'
|
68
82
|
- !ruby/object:Gem::Dependency
|
69
83
|
name: falcon
|
70
84
|
requirement: !ruby/object:Gem::Requirement
|
@@ -97,7 +111,13 @@ files:
|
|
97
111
|
- lib/vector_mcp/definitions.rb
|
98
112
|
- lib/vector_mcp/errors.rb
|
99
113
|
- lib/vector_mcp/handlers/core.rb
|
114
|
+
- lib/vector_mcp/image_util.rb
|
115
|
+
- lib/vector_mcp/sampling/request.rb
|
116
|
+
- lib/vector_mcp/sampling/result.rb
|
100
117
|
- lib/vector_mcp/server.rb
|
118
|
+
- lib/vector_mcp/server/capabilities.rb
|
119
|
+
- lib/vector_mcp/server/message_handling.rb
|
120
|
+
- lib/vector_mcp/server/registry.rb
|
101
121
|
- lib/vector_mcp/session.rb
|
102
122
|
- lib/vector_mcp/transport/sse.rb
|
103
123
|
- lib/vector_mcp/transport/stdio.rb
|