Tell us what you are trying to do? Hi I would like for toolset shortcodes not to show or work when in the RSS feeds. Can toolset be completely disabled from the RSS feed?
Is there any documentation that you are following?
WordPress has limited built-in templates for outputting feeds (in the /wp-includes/ directory).
These will output the post content in addition to the title and some meta data such as post date, and this content is passed over the_content filter, meaning that shortcodes are parsed.
But that is shortcodes that are within the posts themselves.
Typically you would use shortcodes when you create templates for displaying these posts on the front end. But the templates that you create for displaying posts are different from the template WordPress uses for generating the RSS feeds, and whatever is in your post templates would have no effect on the RSS feed.
So can you give some more information about how your feeds are being created, and what specifically appears in them that you do not want to appear?