obsidian_fetch 0.1.7 → 0.1.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79b62e5dc9bdbca99d59118ab63228a2c00e7d8c62dacfde8a1dd4a4aca889cb
4
- data.tar.gz: 6220a008d0f543538f3c409b5b63030c26c1a270e7c14a623e59256c3d77d994
3
+ metadata.gz: be242fb83e36e23491358f1109b2cf71b0b849d685aadc5752483733d8d92b3b
4
+ data.tar.gz: f960f0a39c9a008e35a27f4d420440583232907c8f2114be8df84de12f66a67d
5
5
  SHA512:
6
- metadata.gz: 61859ffd8983057f79b2b25565e27e69319a19106c60cd4bc07ca52665c451e0cd0f9c2aa9db508b28470836c9742341d10b1493162ccd222f078b3e60a17ca0
7
- data.tar.gz: c9d6f2e06399394596ea93664523ae98ce0e2dfa90f059424db846675cf85f25b3d23273e1a04314fbce8bbd11a9d03959275568f23ae6275a47d650c7f4128e
6
+ metadata.gz: '00738a009acd96f5545035d30a5c4fc96987c90d014abd62c2b159c09a4c3e2ee64bbc85ea454242f1c86b0124deafa06f2d1fba010fb0445a1e5a55434357f5'
7
+ data.tar.gz: bde26b406b1cad4f1554b17970ed8d79ab816cbd2735ff8542e82ebc53d3934b95d9f4ad5a03216141af0a0b125ed82d106a22008eb2ea7d6816b7acae1954eb
data/README.md CHANGED
@@ -1,38 +1,35 @@
1
1
  # ObsidianFetch
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
3
+ MCP servers specialising in retrieving information from Obsidian vaults.
4
4
 
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/obsidian_fetch`. To experiment with that code, run `bin/console` for an interactive prompt.
5
+ The existing MCP server has the following drawbacks:
6
+ - There are many commands, and when computational resources are limited, it can take a long time to load the prompt.
7
+ - When reading a note labeled "LLM," it is necessary to search for the path first before loading it, but the LLM may not always follow this procedure.
8
+ - Some tools have unnecessary options, causing the LLM to sometimes fail to invoke the tool correctly.
6
9
 
7
- ## Installation
10
+ These issues become particularly noticeable when running an LLM on a local GPU.
11
+ To address this, we developed a new MCP server that simply retrieves and loads a list of notes.
8
12
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
13
+ Additionally, the new server has the following features:
14
+ - When the LLM tries to retrieve link information and searches with brackets like `[[link name]]`, it automatically removes characters that cannot be used in links.
15
+ - When reading a file, if there are links pointing to the opened file, it displays them.
16
+ - Especially in network-style note tools like Obsidian, following such links to load related notes can be very powerful.
10
17
 
11
- Install the gem and add to the application's Gemfile by executing:
18
+ ## Installation
12
19
 
13
20
  ```bash
14
- bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
21
+ gem install obsidian_fetch
15
22
  ```
16
23
 
17
- If bundler is not being used to manage dependencies, install the gem by executing:
24
+ ## Usage
18
25
 
19
26
  ```bash
20
- gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
27
+ obsidian_fetch /path/to/your/vault
21
28
  ```
22
29
 
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake ` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
30
  ## Contributing
34
31
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/obsidian_fetch.
32
+ Bug reports and pull requests are welcome on GitHub at https://github.com/soukouki/obsidian_fetch.
36
33
 
37
34
  ## License
38
35
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ObsidianFetch
4
- VERSION = "0.1.7"
4
+ VERSION = "0.1.8"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: obsidian_fetch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - sou7