├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── examples └── pdf-mcp ├── lib ├── tiny_mcp.rb └── tiny_mcp │ └── version.rb ├── test ├── test_helper.rb └── tiny_mcp_test.rb └── tiny_mcp.gemspec /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/bin/setup -------------------------------------------------------------------------------- /examples/pdf-mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/examples/pdf-mcp -------------------------------------------------------------------------------- /lib/tiny_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/lib/tiny_mcp.rb -------------------------------------------------------------------------------- /lib/tiny_mcp/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module TinyMCP 4 | VERSION = '0.2.0' 5 | end 6 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/tiny_mcp_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/test/tiny_mcp_test.rb -------------------------------------------------------------------------------- /tiny_mcp.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim/tiny_mcp/HEAD/tiny_mcp.gemspec --------------------------------------------------------------------------------