status_mcp 0.1.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 +7 -0
- data/CHANGELOG.md +12 -0
- data/LICENSE.md +21 -0
- data/README.md +129 -0
- data/assets/data.json +17536 -0
- data/bin/status_mcp +14 -0
- data/lib/status_mcp/server.rb +1253 -0
- data/lib/status_mcp/version.rb +5 -0
- data/lib/status_mcp.rb +22 -0
- metadata +260 -0
data/bin/status_mcp
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
# Suppress all output to prevent breaking JSON parsing in MCP clients
|
|
5
|
+
unless ENV["DEBUG"]
|
|
6
|
+
require "stringio"
|
|
7
|
+
$stderr = StringIO.new
|
|
8
|
+
$stderr.set_encoding("UTF-8")
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
require "status_mcp"
|
|
12
|
+
require "status_mcp/server"
|
|
13
|
+
|
|
14
|
+
StatusMcp::Server.start
|