| Method | Command | When to Use | Pros | Cons |
|---|---|---|---|---|
| Global NPM | npm install -g @modelcontextprotocol/server-filesystem |
Regular usage, performance needs | Works offline, faster startup, consistent version | Requires manual updates |
| NPX | npx @modelcontextprotocol/server-filesystem |
Occasional use, exploration | Always latest version, no maintenance | Requires internet for each start, slower startup |
| Docker | docker run [repository]/mcp-server |
Consistent environments, isolation | Isolated environment, consistent across systems | Higher resource usage, more complex setup |
| Local Development | Point to local files | Custom development | Full control, immediate testing | More setup, not portable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Flickr On Black Button | |
| // @description Adds "Small On Black" and "Large On Black" button to a Flickr photo page | |
| // @namespace http://.org/ | |
| // @include http://flickr.com/photos/* | |
| // @include http://www.flickr.com/photos/* | |
| // Based upon the original by Simon Whitaker (simon AT netcetera DOT org) that was based upon the original by Fabricio Zuardi (http://www.mamata.com.br/greasemonkey/) | |
| // By Aki Korhonen (http://akikorhonen.org/) | |
| // Edit by GeekShadow to work on last Flickr update | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" | |
| xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> | |
| <head> | |
| <title>Ubiquity Lifehacker Google Search Command</title> | |
| </head> | |
| <body> | |
| <p>This page contains a Ubiquity command for Googling lifehackers archives.</p> | |
| <script src="fake-infrastructure.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bingcommand("bing"); | |
| bingcommand("python", "docs.python.org", "http://www.python.org/favicon.ico"); | |
| bingcommand("django", "docs.djangoproject.com", "http://www.djangoproject.com/favicon.ico"); | |
| bingcommand("jquery", "api.jquery.com", "http://www.jquery.com/favicon.ico"); | |
| bingcommand("php", "www.php.net", "http://www.php.net/favicon.ico"); | |
| bingcommand("javascript", "developer.mozilla.org", "https://developer.mozilla.org/favicon.ico"); | |
| bingcommand("w3.org", "www.w3.org"); | |
| bingcommand("lifehacker", "lifehacker.com", "http://www.lifehacker.com/favicon.ico"); | |
| bingcommand("snownews", "0-21.co.uk", "http://www.0-21.co.uk/favicon.ico"); | |
| bingcommand("emacs", "emacswiki.org", "http://emacswiki.org/favicon.ico"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CmdUtils.CreateCommand({ | |
| name: "tiny-geocode", | |
| icon: "http://tinygeocoder.com/favicon.ico", | |
| homepage: "http://tinygeocoder.com/", | |
| author: { name: "Mskadu", email: "[email protected]"}, | |
| license: "GPL", | |
| description: "Turns a location (E.g. London, UK) into a latitude longitude pair (e.g. 51.5001524,-0.1262362)", | |
| help: "tiny-geocode <location><BR/>Eg: tiny-geocode London, UK", | |
| takes: {"location": noun_arb_text}, | |
| tinyGeoCode: function( location ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| noun_type_feed = new CmdUtils.NounType( "feed",["bbc", "cnn"]); | |
| CmdUtils.CreateCommand({ | |
| name: "poo", | |
| takes: {channel: noun_type_feed}, | |
| preview: function(pblock, feed) | |
| { | |
| var searchTerm = "poo "+feed.text; | |
| // Don't even display any text before fetching search results, | |
| // since the results come back nearly instantaneously. In the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Read an article | |
| CmdUtils.CreateCommand({ | |
| name: "read an article", | |
| icon: "http://media.ineedtoreadthis.com/images/favicon.ico", | |
| homepage: "http://www.0-21.co.uk/index.php/200902173422/Blog/Lee-s-Blog/My-Ubiquity-commands.html", | |
| author: { name: "Lee Everson", email: "[email protected]"}, | |
| license: "GPL", | |
| description: "Takes you to your list of stored articles at ineedtoreadthis.com", | |
| preview: function(pblock) { | |
| pblock.innerHTML = "Takes you to your list of stored articles at ineedtoreadthis.com"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //need to read this | |
| CmdUtils.CreateCommand({ | |
| name: "need to read this", | |
| icon: "http://media.ineedtoreadthis.com/images/favicon.ico", | |
| homepage: "http://www.0-21.co.uk/index.php/200902173422/Blog/Lee-s-Blog/My-Ubiquity-commands.html", | |
| author: { name: "Lee Everson", email: "[email protected]"}, | |
| license: "GPL", | |
| description: "Adds the current page to your to-read list at ineedtoreadthis.com.", | |
| preview: function(pblock) { | |
| pblock.innerHTML = "Adds the current page to your to-read list at ineedtoreadthis.com"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //post-to-facebook | |
| CmdUtils.CreateCommand({ | |
| name: "post-to-facebook", | |
| icon: "http://www.facebook.com/favicon.ico", | |
| homepage: "http://www.leeeverson.co.uk/20090223/my-ubiquity-commands/", | |
| author: { name: "Lee Everson", email: "[email protected]"}, | |
| license: "GPL", | |
| description: "quickly share any web page with your friends, even when you're not on Facebook.", | |
| help: "The Share Bookmarklet will recognise when you share videos and music, making them easy to play within Facebook.", | |
| preview: function(pblock) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class LifeStream_UtterliFeed extends LifeStream_Feed | |
| { | |
| const ID = 'utterli'; | |
| const NAME = 'utterli'; | |
| const URL = 'http://www.utterli.com/'; | |
| const LABEL_SINGLE = 'Submitted an Utter on <a href="%s">%s</a>.'; | |
| const LABEL_PLURAL = 'Submitted %d Utterz on <a href="%s">%s</a>.'; | |
| const LABEL_SINGLE_USER = '<a href="%s">%s</a> submitted an Utter on <a href="%s">%s</a>.'; | |
| const LABEL_PLURAL_USER = '<a href="%s">%s</a> submitted %d Utterz on <a href="%s">%s</a>.'; | |
NewerOlder