agentcat 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7f639d3a1cd677316b9b49405f083395a0e16bcb0a242fa3c198bd5ec8c4482a
4
+ data.tar.gz: 7f71ec64726092b66f2e99240f8732ea2ee656959f5999175c7746ef147bc5b3
5
+ SHA512:
6
+ metadata.gz: 12df33afa38cd636deb206c7987886eda39b3a84c5e7c74d994ea11c21cc51999adc751c67b0dac4d4f238afec7a6b512585117375717e9ad4486987b0c6536e
7
+ data.tar.gz: e18e97c14e90e753d57163cfb0fc1b5dff830cceee7b2e8415cc0c865a3d9dbf4b24e0ba2c2d15d8dab7cda6722e31909b9ea8a5a0b12457e56492b1477c4747
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 AgentCat, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # agentcat
2
+
3
+ Analytics for MCP (Model Context Protocol) servers.
4
+
5
+ > **Status: placeholder.** This gem reserves the `agentcat` name for the official
6
+ > AgentCat Ruby SDK, which is in active development and will ship as `1.0.0`.
7
+ > It has no functionality yet — do not depend on it in production.
8
+
9
+ AgentCat captures how AI agents actually use your MCP server: which tools get
10
+ called, how often, by whom, and — via intent capture — *why*.
11
+
12
+ ## Available today
13
+
14
+ | Language | Package |
15
+ | ---------- | ------------------------------------------------------------------ |
16
+ | TypeScript | [`agentcat`](https://www.npmjs.com/package/agentcat) |
17
+ | Python | [`agentcat`](https://pypi.org/project/agentcat/) |
18
+ | Go | [`go.agentcat.com/sdk`](https://github.com/agentcathq/agentcat-go-sdk) |
19
+ | Ruby | *in development* |
20
+ | Java | *in development* |
21
+
22
+ ## Links
23
+
24
+ - Website — https://agentcat.com
25
+ - Docs — https://docs.agentcat.com
26
+
27
+ ## License
28
+
29
+ MIT © AgentCat, Inc.
data/agentcat.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/agentcat/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "agentcat"
7
+ spec.version = AgentCat::VERSION
8
+ spec.authors = ["AgentCat, Inc."]
9
+ spec.email = ["support@agentcat.com"]
10
+
11
+ spec.summary = "Analytics for MCP servers - placeholder for the official AgentCat Ruby SDK"
12
+ spec.description = "AgentCat captures tool usage patterns and user intent from MCP " \
13
+ "(Model Context Protocol) servers. This release reserves the gem name " \
14
+ "for the official Ruby SDK, which is in active development."
15
+ spec.homepage = "https://agentcat.com"
16
+ spec.license = "MIT"
17
+
18
+ spec.required_ruby_version = ">= 2.7.0"
19
+
20
+ spec.metadata = {
21
+ "homepage_uri" => "https://agentcat.com",
22
+ "source_code_uri" => "https://github.com/agentcathq/agentcat-ruby-sdk",
23
+ "bug_tracker_uri" => "https://github.com/agentcathq/agentcat-ruby-sdk/issues",
24
+ "documentation_uri" => "https://docs.agentcat.com",
25
+ "rubygems_mfa_required" => "true"
26
+ }
27
+
28
+ spec.files = %w[README.md LICENSE agentcat.gemspec] + Dir["lib/**/*.rb"]
29
+ spec.require_paths = ["lib"]
30
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AgentCat
4
+ VERSION = "0.0.1"
5
+ end
data/lib/agentcat.rb ADDED
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "agentcat/version"
4
+
5
+ # AgentCat — analytics for MCP servers.
6
+ #
7
+ # This release is a name placeholder. The official AgentCat Ruby SDK, built on
8
+ # the official Model Context Protocol Ruby SDK (the `mcp` gem), is in active
9
+ # development and will ship as version 1.0.0.
10
+ #
11
+ # Until then, see the reference implementations:
12
+ # TypeScript — https://github.com/agentcathq/agentcat-typescript-sdk
13
+ # Python — https://github.com/agentcathq/agentcat-python-sdk
14
+ # Go — https://github.com/agentcathq/agentcat-go-sdk
15
+ module AgentCat
16
+ # Raised by {AgentCat.track} until the real SDK ships.
17
+ class NotYetImplementedError < StandardError; end
18
+
19
+ # Placeholder for the SDK entry point.
20
+ #
21
+ # @raise [NotYetImplementedError] always, in this release.
22
+ def self.track(*, **)
23
+ raise NotYetImplementedError,
24
+ "The AgentCat Ruby SDK is not released yet. This gem reserves the name " \
25
+ "for the official implementation. See https://agentcat.com for status."
26
+ end
27
+ end
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: agentcat
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - AgentCat, Inc.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-08-23 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: AgentCat captures tool usage patterns and user intent from MCP (Model
14
+ Context Protocol) servers. This release reserves the gem name for the official Ruby
15
+ SDK, which is in active development.
16
+ email:
17
+ - support@agentcat.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - LICENSE
23
+ - README.md
24
+ - agentcat.gemspec
25
+ - lib/agentcat.rb
26
+ - lib/agentcat/version.rb
27
+ homepage: https://agentcat.com
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ homepage_uri: https://agentcat.com
32
+ source_code_uri: https://github.com/agentcathq/agentcat-ruby-sdk
33
+ bug_tracker_uri: https://github.com/agentcathq/agentcat-ruby-sdk/issues
34
+ documentation_uri: https://docs.agentcat.com
35
+ rubygems_mfa_required: 'true'
36
+ post_install_message:
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 2.7.0
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirements: []
51
+ rubygems_version: 3.0.3.1
52
+ signing_key:
53
+ specification_version: 4
54
+ summary: Analytics for MCP servers - placeholder for the official AgentCat Ruby SDK
55
+ test_files: []