toolmash-mcp 1.0.0__tar.gz
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.
- toolmash_mcp-1.0.0/.gitignore +23 -0
- toolmash_mcp-1.0.0/PKG-INFO +230 -0
- toolmash_mcp-1.0.0/README.md +208 -0
- toolmash_mcp-1.0.0/pyproject.toml +186 -0
- toolmash_mcp-1.0.0/toolmash_mcp/1forge_finance_apis_mcp_plugin.py +115 -0
- toolmash_mcp-1.0.0/toolmash_mcp/1password_connect_mcp_plugin.py +507 -0
- toolmash_mcp-1.0.0/toolmash_mcp/__init__.py +2 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adafruit_io_rest_api_mcp_plugin.py +88 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adobe_experience_manager_aem_api_mcp_plugin.py +3085 -0
- toolmash_mcp-1.0.0/toolmash_mcp/advice_slip_mcp_plugin.py +122 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_balance_control_api_mcp_plugin.py +107 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_binlookup_api_mcp_plugin.py +154 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_checkout_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_data_protection_api_mcp_plugin.py +105 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_payment_api_mcp_plugin.py +477 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_payout_api_mcp_plugin.py +264 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_recurring_api_mcp_plugin.py +273 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_stored_value_api_mcp_plugin.py +231 -0
- toolmash_mcp-1.0.0/toolmash_mcp/adyen_test_cards_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/afterbanks_api_mcp_plugin.py +206 -0
- toolmash_mcp-1.0.0/toolmash_mcp/agify_io_mcp_plugin.py +99 -0
- toolmash_mcp-1.0.0/toolmash_mcp/agromonitoring_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/aiception_interactive_mcp_plugin.py +382 -0
- toolmash_mcp-1.0.0/toolmash_mcp/air_quality_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/airbyte_configuration_api_mcp_plugin.py +3028 -0
- toolmash_mcp-1.0.0/toolmash_mcp/airline_code_lookup_api_mcp_plugin.py +95 -0
- toolmash_mcp-1.0.0/toolmash_mcp/airport_city_search_mcp_plugin.py +87 -0
- toolmash_mcp-1.0.0/toolmash_mcp/airport_nearest_relevant_mcp_plugin.py +87 -0
- toolmash_mcp-1.0.0/toolmash_mcp/airport_on_time_performance_mcp_plugin.py +99 -0
- toolmash_mcp-1.0.0/toolmash_mcp/airportsapi_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/alerter_system_api_mcp_plugin.py +11561 -0
- toolmash_mcp-1.0.0/toolmash_mcp/alpha_vantage_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/art_institute_of_chicago.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/authentiq_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/avatar_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/bored_api_mcp_plugin.py +98 -0
- toolmash_mcp-1.0.0/toolmash_mcp/branded_fares_upsell_mcp_plugin.py +87 -0
- toolmash_mcp-1.0.0/toolmash_mcp/breaking_bad_quotes_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/calendarific_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/carbon_interface_api.py +32 -0
- toolmash_mcp-1.0.0/toolmash_mcp/cat_facts_mcp_plugin.py +121 -0
- toolmash_mcp-1.0.0/toolmash_mcp/chuck_norris_jokes.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/classic_platforms_notifications_mcp_plugin.py +62 -0
- toolmash_mcp-1.0.0/toolmash_mcp/clearbit_logo_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/clipdrop_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/coindesk_btc_mcp_plugin.py +127 -0
- toolmash_mcp-1.0.0/toolmash_mcp/coingecko_mcp_plugin.py +135 -0
- toolmash_mcp-1.0.0/toolmash_mcp/color_api.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/configuration_webhooks_mcp_plugin.py +60 -0
- toolmash_mcp-1.0.0/toolmash_mcp/control_api_v1_mcp_plugin.py +571 -0
- toolmash_mcp-1.0.0/toolmash_mcp/countries_info_extended.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/crossref_api.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/dictionary_api_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/dog_ceo_mcp_plugin.py +122 -0
- toolmash_mcp-1.0.0/toolmash_mcp/dummyjson.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/ergast_f1_api.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/evil_insult_generator.py +32 -0
- toolmash_mcp-1.0.0/toolmash_mcp/exchangerate_api_mcp_plugin.py +122 -0
- toolmash_mcp-1.0.0/toolmash_mcp/excuser_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/financial_modeling_prep_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/flight_availibilities_search_mcp_plugin.py +87 -0
- toolmash_mcp-1.0.0/toolmash_mcp/flight_busiest_traveling_period_mcp_plugin.py +108 -0
- toolmash_mcp-1.0.0/toolmash_mcp/flight_cheapest_date_search_mcp_plugin.py +139 -0
- toolmash_mcp-1.0.0/toolmash_mcp/flight_check_in_links_mcp_plugin.py +102 -0
- toolmash_mcp-1.0.0/toolmash_mcp/flight_offers_search_mcp_plugin.py +87 -0
- toolmash_mcp-1.0.0/toolmash_mcp/fruityvice_mcp_plugin.py +122 -0
- toolmash_mcp-1.0.0/toolmash_mcp/genderize_io_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/geocode_xyz_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/geodb_cities_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/github_rest_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/gitlab_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/hacker_news_api_mcp_plugin.py +151 -0
- toolmash_mcp-1.0.0/toolmash_mcp/harvard_art_museums_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/holidays_api_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/hosted_onboarding_api_mcp_plugin.py +145 -0
- toolmash_mcp-1.0.0/toolmash_mcp/http_cat_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/httpbin_mcp_plugin.py +151 -0
- toolmash_mcp-1.0.0/toolmash_mcp/ip_api_mcp_plugin.py +92 -0
- toolmash_mcp-1.0.0/toolmash_mcp/ip_geolocation_api_mcp_plugin.py +105 -0
- toolmash_mcp-1.0.0/toolmash_mcp/ipgeolocation_io_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/iucn_red_list.py +32 -0
- toolmash_mcp-1.0.0/toolmash_mcp/jikan_api_myanimelist.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/jokeapi_mcp_plugin.py +144 -0
- toolmash_mcp-1.0.0/toolmash_mcp/jsonplaceholder_mcp_plugin.py +152 -0
- toolmash_mcp-1.0.0/toolmash_mcp/kanji_alive_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/kanye_rest_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/legal_entity_management_api_mcp_plugin.py +734 -0
- toolmash_mcp-1.0.0/toolmash_mcp/lord_of_the_rings_api.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/lorem_picsum_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/lyrics_ovh_mcp_plugin.py +99 -0
- toolmash_mcp-1.0.0/toolmash_mcp/management_webhooks_mcp_plugin.py +61 -0
- toolmash_mcp-1.0.0/toolmash_mcp/met_museum_api.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/museum_api_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/n2yo_satellite_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/nasa_apod_mcp_plugin.py +98 -0
- toolmash_mcp-1.0.0/toolmash_mcp/nationalize_io_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/newsapi_mcp_plugin.py +104 -0
- toolmash_mcp-1.0.0/toolmash_mcp/notification_configuration_api_mcp_plugin.py +262 -0
- toolmash_mcp-1.0.0/toolmash_mcp/numbers_api_mcp_plugin.py +129 -0
- toolmash_mcp-1.0.0/toolmash_mcp/omdb_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/open_library.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/open_notify_mcp_plugin.py +115 -0
- toolmash_mcp-1.0.0/toolmash_mcp/open_trivia_db_mcp_plugin.py +105 -0
- toolmash_mcp-1.0.0/toolmash_mcp/openaq_mcp_plugin.py +2173 -0
- toolmash_mcp-1.0.0/toolmash_mcp/opencage_geocoder_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/openfda_api.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/openfoodfacts_mcp_plugin.py +57 -0
- toolmash_mcp-1.0.0/toolmash_mcp/openlibrary_mcp_plugin.py +99 -0
- toolmash_mcp-1.0.0/toolmash_mcp/openweather_onecall_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/openweathermap_mcp_plugin.py +135 -0
- toolmash_mcp-1.0.0/toolmash_mcp/payment_webhooks_deprecated_mcp_plugin.py +61 -0
- toolmash_mcp-1.0.0/toolmash_mcp/philosophy_api.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/picsum_photos_mcp_plugin.py +99 -0
- toolmash_mcp-1.0.0/toolmash_mcp/pokeapi.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/pos_terminal_management_api_mcp_plugin.py +225 -0
- toolmash_mcp-1.0.0/toolmash_mcp/postman_echo_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/qrcode_monkey_mcp_plugin.py +90 -0
- toolmash_mcp-1.0.0/toolmash_mcp/quotable_mcp_plugin.py +150 -0
- toolmash_mcp-1.0.0/toolmash_mcp/random_user_generator.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/reddit_json_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/report_webhooks_mcp_plugin.py +59 -0
- toolmash_mcp-1.0.0/toolmash_mcp/reqres_mcp_plugin.py +152 -0
- toolmash_mcp-1.0.0/toolmash_mcp/restcountries_mcp_plugin.py +158 -0
- toolmash_mcp-1.0.0/toolmash_mcp/rick_and_morty_api.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/robohash_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/ron_swanson_quotes_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/short_io_mcp_plugin.py +88 -0
- toolmash_mcp-1.0.0/toolmash_mcp/spacex_api_mcp_plugin.py +144 -0
- toolmash_mcp-1.0.0/toolmash_mcp/spotify_web_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/star_wars_api_swapi.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/sunrise_sunset_api.py +32 -0
- toolmash_mcp-1.0.0/toolmash_mcp/thecocktaildb_mcp_plugin.py +158 -0
- toolmash_mcp-1.0.0/toolmash_mcp/themealdb_mcp_plugin.py +158 -0
- toolmash_mcp-1.0.0/toolmash_mcp/tmdb_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/transfer_webhooks_mcp_plugin.py +59 -0
- toolmash_mcp-1.0.0/toolmash_mcp/transfers_api_mcp_plugin.py +232 -0
- toolmash_mcp-1.0.0/toolmash_mcp/translate_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/tv_maze_api.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/university_domains_mcp_plugin.py +98 -0
- toolmash_mcp-1.0.0/toolmash_mcp/useragent_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/usgs_earthquake_api.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/uuid_generator_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/vat_validation_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/weatherapi_com_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/wikidata_api_mcp_plugin.py +86 -0
- toolmash_mcp-1.0.0/toolmash_mcp/wikimedia_rest_api.py +43 -0
- toolmash_mcp-1.0.0/toolmash_mcp/wikipedia_rest_api_mcp_plugin.py +122 -0
- toolmash_mcp-1.0.0/toolmash_mcp/yahoo_finance_mcp_plugin.py +93 -0
- toolmash_mcp-1.0.0/toolmash_mcp/zenquotes.py +54 -0
- toolmash_mcp-1.0.0/toolmash_mcp/zippopotam_mcp_plugin.py +99 -0
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: toolmash-mcp
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Collection of 145 MCP plugins for AI assistants - JSON, weather, finance, entertainment and more
|
|
5
|
+
Project-URL: Homepage, https://toolmash.cn
|
|
6
|
+
Project-URL: Repository, https://github.com/toolmash/toolmash-mcp
|
|
7
|
+
Project-URL: Documentation, https://toolmash.cn/mcp/
|
|
8
|
+
Author-email: ToolMash <hello@toolmash.cn>
|
|
9
|
+
License: MIT
|
|
10
|
+
Keywords: ai,claude,cursor,mcp,model-context-protocol,toolmash
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Requires-Dist: httpx>=0.28.0
|
|
20
|
+
Requires-Dist: mcp>=1.0.0
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# ToolMash MCP
|
|
24
|
+
|
|
25
|
+
Collection of **145 MCP plugins** for AI assistants (Claude Desktop, Cursor, etc.).
|
|
26
|
+
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# Install all plugins
|
|
31
|
+
pip install toolmash-mcp
|
|
32
|
+
|
|
33
|
+
# Or run a specific plugin directly
|
|
34
|
+
uvx toolmash-mcp --plugin <plugin-name>
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Available Plugins (145)
|
|
38
|
+
|
|
39
|
+
| Plugin | Description | Command |
|
|
40
|
+
|--------|-------------|---------|
|
|
41
|
+
| `1forge-finance-apis-mcp-plugin` | Stock and Forex Data and Realtime Quotes | `uvx toolmash-mcp-1forge-finance-apis-mcp-plugin` |
|
|
42
|
+
| `1password-connect-mcp-plugin` | REST API interface for 1Password Connect. | `uvx toolmash-mcp-1password-connect-mcp-plugin` |
|
|
43
|
+
| `adafruit-io-rest-api-mcp-plugin` | ### The Internet of Things for Everyone
|
|
44
|
+
|
|
45
|
+
The Adafruit IO HTT | `uvx toolmash-mcp-adafruit-io-rest-api-mcp-plugin` |
|
|
46
|
+
| `adobe-experience-manager-aem-api-mcp-plugin` | Swagger AEM is an OpenAPI specification for Adobe Experience | `uvx toolmash-mcp-adobe-experience-manager-aem-api-mcp-plugin` |
|
|
47
|
+
| `advice-slip-mcp-plugin` | Random advice slips | `uvx toolmash-mcp-advice-slip-mcp-plugin` |
|
|
48
|
+
| `adyen-balance-control-api-mcp-plugin` | The Balance Control API lets you transfer funds between merc | `uvx toolmash-mcp-adyen-balance-control-api-mcp-plugin` |
|
|
49
|
+
| `adyen-binlookup-api-mcp-plugin` | The BIN Lookup API provides endpoints for retrieving informa | `uvx toolmash-mcp-adyen-binlookup-api-mcp-plugin` |
|
|
50
|
+
| `adyen-checkout-api-mcp-plugin` | Adyen Checkout API provides a simple and flexible way to ini | `uvx toolmash-mcp-adyen-checkout-api-mcp-plugin` |
|
|
51
|
+
| `adyen-data-protection-api-mcp-plugin` | Adyen Data Protection API provides a way for you to process | `uvx toolmash-mcp-adyen-data-protection-api-mcp-plugin` |
|
|
52
|
+
| `adyen-payment-api-mcp-plugin` | A set of API endpoints that allow you to initiate, settle, a | `uvx toolmash-mcp-adyen-payment-api-mcp-plugin` |
|
|
53
|
+
| `adyen-payout-api-mcp-plugin` | A set of API endpoints that allow you to store payout detail | `uvx toolmash-mcp-adyen-payout-api-mcp-plugin` |
|
|
54
|
+
| `adyen-recurring-api-mcp-plugin` | The Recurring APIs allow you to manage and remove your token | `uvx toolmash-mcp-adyen-recurring-api-mcp-plugin` |
|
|
55
|
+
| `adyen-stored-value-api-mcp-plugin` | A set of API endpoints to manage stored value products. | `uvx toolmash-mcp-adyen-stored-value-api-mcp-plugin` |
|
|
56
|
+
| `adyen-test-cards-api-mcp-plugin` | The Test Cards API provides endpoints for generating custom | `uvx toolmash-mcp-adyen-test-cards-api-mcp-plugin` |
|
|
57
|
+
| `afterbanks-api-mcp-plugin` | La estandarización de la conexión con cualquier banco en tie | `uvx toolmash-mcp-afterbanks-api-mcp-plugin` |
|
|
58
|
+
| `agify-io-mcp-plugin` | Predict age from first name | `uvx toolmash-mcp-agify-io-mcp-plugin` |
|
|
59
|
+
| `agromonitoring-mcp-plugin` | Satellite crop monitoring, weather, soil | `uvx toolmash-mcp-agromonitoring-mcp-plugin` |
|
|
60
|
+
| `aiception-interactive-mcp-plugin` | Here you can play & test & prototype all the endpoints using | `uvx toolmash-mcp-aiception-interactive-mcp-plugin` |
|
|
61
|
+
| `air-quality-api-mcp-plugin` | Air quality index by location | `uvx toolmash-mcp-air-quality-api-mcp-plugin` |
|
|
62
|
+
| `airbyte-configuration-api-mcp-plugin` | Airbyte Configuration API
|
|
63
|
+
[https://airbyte.io](https://airby | `uvx toolmash-mcp-airbyte-configuration-api-mcp-plugin` |
|
|
64
|
+
| `airline-code-lookup-api-mcp-plugin` |
|
|
65
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-airline-code-lookup-api-mcp-plugin` |
|
|
66
|
+
| `airport-city-search-mcp-plugin` |
|
|
67
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-airport-city-search-mcp-plugin` |
|
|
68
|
+
| `airport-nearest-relevant-mcp-plugin` |
|
|
69
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-airport-nearest-relevant-mcp-plugin` |
|
|
70
|
+
| `airport-on-time-performance-mcp-plugin` | Before using this API, we recommend you read our **[Authoriz | `uvx toolmash-mcp-airport-on-time-performance-mcp-plugin` |
|
|
71
|
+
| `airportsapi-mcp-plugin` | Get name and website-URL for airports by ICAO code. Covered | `uvx toolmash-mcp-airportsapi-mcp-plugin` |
|
|
72
|
+
| `alerter-system-api-mcp-plugin` | <p>This is the <a href="/">Alerter System</a> API playground | `uvx toolmash-mcp-alerter-system-api-mcp-plugin` |
|
|
73
|
+
| `alpha-vantage-mcp-plugin` | Stock/TX/FX/commodities data | `uvx toolmash-mcp-alpha-vantage-mcp-plugin` |
|
|
74
|
+
| `jikan-api-myanimelist` | Anime and manga data from MyAnimeList | `uvx toolmash-mcp-jikan-api-myanimelist` |
|
|
75
|
+
| `art-institute-of-chicago` | Artwork data from the Art Institute of Chicago | `uvx toolmash-mcp-art-institute-of-chicago` |
|
|
76
|
+
| `authentiq-api-mcp-plugin` | Strong authentication, without the passwords. | `uvx toolmash-mcp-authentiq-api-mcp-plugin` |
|
|
77
|
+
| `avatar-api-mcp-plugin` | Generate avatar images from initials | `uvx toolmash-mcp-avatar-api-mcp-plugin` |
|
|
78
|
+
| `bored-api-mcp-plugin` | Random activity suggestions by type/participants | `uvx toolmash-mcp-bored-api-mcp-plugin` |
|
|
79
|
+
| `branded-fares-upsell-mcp-plugin` |
|
|
80
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-branded-fares-upsell-mcp-plugin` |
|
|
81
|
+
| `breaking-bad-quotes-mcp-plugin` | Quotes from Breaking Bad series | `uvx toolmash-mcp-breaking-bad-quotes-mcp-plugin` |
|
|
82
|
+
| `calendarific-mcp-plugin` | Holidays, observances, school holidays | `uvx toolmash-mcp-calendarific-mcp-plugin` |
|
|
83
|
+
| `carbon-interface-api` | Carbon footprint estimation for electricity, flight and vehi | `uvx toolmash-mcp-carbon-interface-api` |
|
|
84
|
+
| `cat-facts-mcp-plugin` | Random cat facts | `uvx toolmash-mcp-cat-facts-mcp-plugin` |
|
|
85
|
+
| `chuck-norris-jokes` | Random Chuck Norris jokes and facts | `uvx toolmash-mcp-chuck-norris-jokes` |
|
|
86
|
+
| `classic-platforms-notifications-mcp-plugin` | This API is used for the classic integration. If you are jus | `uvx toolmash-mcp-classic-platforms-notifications-mcp-plugin` |
|
|
87
|
+
| `clearbit-logo-mcp-plugin` | Company logo image by domain | `uvx toolmash-mcp-clearbit-logo-mcp-plugin` |
|
|
88
|
+
| `clipdrop-mcp-plugin` | AI background removal, upscaling, relighting | `uvx toolmash-mcp-clipdrop-mcp-plugin` |
|
|
89
|
+
| `coindesk-btc-mcp-plugin` | Bitcoin price in USD, EUR, GBP | `uvx toolmash-mcp-coindesk-btc-mcp-plugin` |
|
|
90
|
+
| `coingecko-mcp-plugin` | Crypto prices, market cap, DeFi data | `uvx toolmash-mcp-coingecko-mcp-plugin` |
|
|
91
|
+
| `color-api` | Color information, conversion and palettes | `uvx toolmash-mcp-color-api` |
|
|
92
|
+
| `configuration-webhooks-mcp-plugin` | Adyen sends notifications through webhooks to inform your sy | `uvx toolmash-mcp-configuration-webhooks-mcp-plugin` |
|
|
93
|
+
| `control-api-v1-mcp-plugin` | Use the Control API to manage your applications, namespaces, | `uvx toolmash-mcp-control-api-v1-mcp-plugin` |
|
|
94
|
+
| `crossref-api` | Academic publication and DOI metadata | `uvx toolmash-mcp-crossref-api` |
|
|
95
|
+
| `dictionary-api-mcp-plugin` | Word definitions, phonetics, audio pronunciation | `uvx toolmash-mcp-dictionary-api-mcp-plugin` |
|
|
96
|
+
| `dog-ceo-mcp-plugin` | Random dog pictures by breed | `uvx toolmash-mcp-dog-ceo-mcp-plugin` |
|
|
97
|
+
| `dummyjson` | Fake JSON data for testing - products, posts, comments, user | `uvx toolmash-mcp-dummyjson` |
|
|
98
|
+
| `ergast-f1-api` | Formula 1 race results, standings and circuit data | `uvx toolmash-mcp-ergast-f1-api` |
|
|
99
|
+
| `evil-insult-generator` | Generate random insults in multiple languages | `uvx toolmash-mcp-evil-insult-generator` |
|
|
100
|
+
| `exchangerate-api-mcp-plugin` | Real-time currency exchange rates | `uvx toolmash-mcp-exchangerate-api-mcp-plugin` |
|
|
101
|
+
| `excuser-mcp-plugin` | Random excuses generator | `uvx toolmash-mcp-excuser-mcp-plugin` |
|
|
102
|
+
| `financial-modeling-prep-mcp-plugin` | Real-time stock, crypto, forex, financials | `uvx toolmash-mcp-financial-modeling-prep-mcp-plugin` |
|
|
103
|
+
| `flight-availibilities-search-mcp-plugin` |
|
|
104
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-availibilities-search-mcp-plugin` |
|
|
105
|
+
| `flight-busiest-traveling-period-mcp-plugin` |
|
|
106
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-busiest-traveling-period-mcp-plugin` |
|
|
107
|
+
| `flight-cheapest-date-search-mcp-plugin` |
|
|
108
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-cheapest-date-search-mcp-plugin` |
|
|
109
|
+
| `flight-check-in-links-mcp-plugin` |
|
|
110
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-check-in-links-mcp-plugin` |
|
|
111
|
+
| `flight-offers-search-mcp-plugin` |
|
|
112
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-offers-search-mcp-plugin` |
|
|
113
|
+
| `fruityvice-mcp-plugin` | Fruit nutrition facts by name | `uvx toolmash-mcp-fruityvice-mcp-plugin` |
|
|
114
|
+
| `genderize-io-mcp-plugin` | Predict gender from first name | `uvx toolmash-mcp-genderize-io-mcp-plugin` |
|
|
115
|
+
| `geocode-xyz-mcp-plugin` | Lat/lng to address, address to lat/lng | `uvx toolmash-mcp-geocode-xyz-mcp-plugin` |
|
|
116
|
+
| `geodb-cities-mcp-plugin` | City search, population, nearby cities | `uvx toolmash-mcp-geodb-cities-mcp-plugin` |
|
|
117
|
+
| `github-rest-api-mcp-plugin` | Repo search, issues, PRs, user data | `uvx toolmash-mcp-github-rest-api-mcp-plugin` |
|
|
118
|
+
| `gitlab-api-mcp-plugin` | Projects, issues, MRs, CI/CD status | `uvx toolmash-mcp-gitlab-api-mcp-plugin` |
|
|
119
|
+
| `hacker-news-api-mcp-plugin` | HN top stories, new, ask, show, jobs | `uvx toolmash-mcp-hacker-news-api-mcp-plugin` |
|
|
120
|
+
| `harvard-art-museums-mcp-plugin` | Harvard art collection search | `uvx toolmash-mcp-harvard-art-museums-mcp-plugin` |
|
|
121
|
+
| `holidays-api-mcp-plugin` | Public holidays by country/year | `uvx toolmash-mcp-holidays-api-mcp-plugin` |
|
|
122
|
+
| `hosted-onboarding-api-mcp-plugin` | This API is used for the classic integration. If you are jus | `uvx toolmash-mcp-hosted-onboarding-api-mcp-plugin` |
|
|
123
|
+
| `http-cat-mcp-plugin` | HTTP status codes with cat images | `uvx toolmash-mcp-http-cat-mcp-plugin` |
|
|
124
|
+
| `httpbin-mcp-plugin` | HTTP testing endpoints (GET/POST/auth/status) | `uvx toolmash-mcp-httpbin-mcp-plugin` |
|
|
125
|
+
| `ip-api-mcp-plugin` | IP geolocation, ISP info, timezone | `uvx toolmash-mcp-ip-api-mcp-plugin` |
|
|
126
|
+
| `ip-geolocation-api-mcp-plugin` | Abstract IP geolocation API allows developers to retrieve th | `uvx toolmash-mcp-ip-geolocation-api-mcp-plugin` |
|
|
127
|
+
| `ipgeolocation-io-mcp-plugin` | IP to geolocation + timezone + currency | `uvx toolmash-mcp-ipgeolocation-io-mcp-plugin` |
|
|
128
|
+
| `iucn-red-list` | Endangered species data from IUCN Red List (simplified) | `uvx toolmash-mcp-iucn-red-list` |
|
|
129
|
+
| `jokeapi-mcp-plugin` | Programming and general jokes | `uvx toolmash-mcp-jokeapi-mcp-plugin` |
|
|
130
|
+
| `jsonplaceholder-mcp-plugin` | Fake REST API for testing and prototyping | `uvx toolmash-mcp-jsonplaceholder-mcp-plugin` |
|
|
131
|
+
| `kanji-alive-mcp-plugin` | Japanese kanji details: meaning, stroke order | `uvx toolmash-mcp-kanji-alive-mcp-plugin` |
|
|
132
|
+
| `kanye-rest-mcp-plugin` | Random Kanye West quotes | `uvx toolmash-mcp-kanye-rest-mcp-plugin` |
|
|
133
|
+
| `legal-entity-management-api-mcp-plugin` | The Legal Entity Management API enables you to manage legal | `uvx toolmash-mcp-legal-entity-management-api-mcp-plugin` |
|
|
134
|
+
| `lorem-picsum-mcp-plugin` | Placeholder images of any size | `uvx toolmash-mcp-lorem-picsum-mcp-plugin` |
|
|
135
|
+
| `lord-of-the-rings-api` | Characters, quotes and book data from LOTR | `uvx toolmash-mcp-lord-of-the-rings-api` |
|
|
136
|
+
| `lyrics-ovh-mcp-plugin` | Song lyrics search by artist + title | `uvx toolmash-mcp-lyrics-ovh-mcp-plugin` |
|
|
137
|
+
| `management-webhooks-mcp-plugin` | Adyen uses webhooks to inform your system about events that | `uvx toolmash-mcp-management-webhooks-mcp-plugin` |
|
|
138
|
+
| `met-museum-api` | Metropolitan Museum of Art collection data | `uvx toolmash-mcp-met-museum-api` |
|
|
139
|
+
| `museum-api-mcp-plugin` | Met Museum collection search | `uvx toolmash-mcp-museum-api-mcp-plugin` |
|
|
140
|
+
| `n2yo-satellite-mcp-plugin` | Satellite pass predictions, TLE data | `uvx toolmash-mcp-n2yo-satellite-mcp-plugin` |
|
|
141
|
+
| `nasa-apod-mcp-plugin` | NASA Astronomy Picture of the Day | `uvx toolmash-mcp-nasa-apod-mcp-plugin` |
|
|
142
|
+
| `nationalize-io-mcp-plugin` | Predict nationality from first name | `uvx toolmash-mcp-nationalize-io-mcp-plugin` |
|
|
143
|
+
| `newsapi-mcp-plugin` | Search articles from 80,000+ sources | `uvx toolmash-mcp-newsapi-mcp-plugin` |
|
|
144
|
+
| `notification-configuration-api-mcp-plugin` | This API is used for the classic integration. If you are jus | `uvx toolmash-mcp-notification-configuration-api-mcp-plugin` |
|
|
145
|
+
| `numbers-api-mcp-plugin` | Interesting facts about numbers | `uvx toolmash-mcp-numbers-api-mcp-plugin` |
|
|
146
|
+
| `omdb-mcp-plugin` | Movie search by title, ratings, poster | `uvx toolmash-mcp-omdb-mcp-plugin` |
|
|
147
|
+
| `openfda-api` | FDA drug, device and food data | `uvx toolmash-mcp-openfda-api` |
|
|
148
|
+
| `open-library` | Book data, covers and author information | `uvx toolmash-mcp-open-library` |
|
|
149
|
+
| `open-notify-mcp-plugin` | ISS current location, astronaut count | `uvx toolmash-mcp-open-notify-mcp-plugin` |
|
|
150
|
+
| `open-trivia-db-mcp-plugin` | Trivia questions by category/difficulty | `uvx toolmash-mcp-open-trivia-db-mcp-plugin` |
|
|
151
|
+
| `openaq-mcp-plugin` | OpenAQ API | `uvx toolmash-mcp-openaq-mcp-plugin` |
|
|
152
|
+
| `opencage-geocoder-mcp-plugin` | Forward/reverse geocoding | `uvx toolmash-mcp-opencage-geocoder-mcp-plugin` |
|
|
153
|
+
| `openfoodfacts-mcp-plugin` | | `uvx toolmash-mcp-openfoodfacts-mcp-plugin` |
|
|
154
|
+
| `openlibrary-mcp-plugin` | Search books, authors, ISBN | `uvx toolmash-mcp-openlibrary-mcp-plugin` |
|
|
155
|
+
| `openweather-onecall-mcp-plugin` | Current + 7-day forecast + alerts | `uvx toolmash-mcp-openweather-onecall-mcp-plugin` |
|
|
156
|
+
| `openweathermap-mcp-plugin` | Current weather, forecasts, historical data | `uvx toolmash-mcp-openweathermap-mcp-plugin` |
|
|
157
|
+
| `payment-webhooks-deprecated-mcp-plugin` | The payment webhooks are deprecated. Use the [accounting web | `uvx toolmash-mcp-payment-webhooks-deprecated-mcp-plugin` |
|
|
158
|
+
| `philosophy-api` | Random philosophical quotes and ideas | `uvx toolmash-mcp-philosophy-api` |
|
|
159
|
+
| `picsum-photos-mcp-plugin` | Random placeholder images, configurable size | `uvx toolmash-mcp-picsum-photos-mcp-plugin` |
|
|
160
|
+
| `pokeapi` | Pokemon data - types, abilities, moves, stats | `uvx toolmash-mcp-pokeapi` |
|
|
161
|
+
| `pos-terminal-management-api-mcp-plugin` | This API provides endpoints for managing your point-of-sale | `uvx toolmash-mcp-pos-terminal-management-api-mcp-plugin` |
|
|
162
|
+
| `postman-echo-mcp-plugin` | Test HTTP methods, headers, auth | `uvx toolmash-mcp-postman-echo-mcp-plugin` |
|
|
163
|
+
| `qrcode-monkey-mcp-plugin` | Generate custom QR codes with logos and colors | `uvx toolmash-mcp-qrcode-monkey-mcp-plugin` |
|
|
164
|
+
| `quotable-mcp-plugin` | Random quotes, search by author/tag | `uvx toolmash-mcp-quotable-mcp-plugin` |
|
|
165
|
+
| `random-user-generator` | Generate random fake user data for testing | `uvx toolmash-mcp-random-user-generator` |
|
|
166
|
+
| `reddit-json-api-mcp-plugin` | Subreddit posts, comments, search | `uvx toolmash-mcp-reddit-json-api-mcp-plugin` |
|
|
167
|
+
| `report-webhooks-mcp-plugin` | Adyen sends notifications through webhooks to inform your sy | `uvx toolmash-mcp-report-webhooks-mcp-plugin` |
|
|
168
|
+
| `reqres-mcp-plugin` | Fake API for testing CRUD operations | `uvx toolmash-mcp-reqres-mcp-plugin` |
|
|
169
|
+
| `countries-info-extended` | Extended country information - currencies, languages, border | `uvx toolmash-mcp-countries-info-extended` |
|
|
170
|
+
| `restcountries-mcp-plugin` | Country data: population, capital, currency, languages | `uvx toolmash-mcp-restcountries-mcp-plugin` |
|
|
171
|
+
| `rick-and-morty-api` | Characters, episodes and locations from Rick and Morty | `uvx toolmash-mcp-rick-and-morty-api` |
|
|
172
|
+
| `robohash-mcp-plugin` | Generate robot avatars from text | `uvx toolmash-mcp-robohash-mcp-plugin` |
|
|
173
|
+
| `ron-swanson-quotes-mcp-plugin` | Random Ron Swanson quotes | `uvx toolmash-mcp-ron-swanson-quotes-mcp-plugin` |
|
|
174
|
+
| `short-io-mcp-plugin` | Link shortening, custom domains, analytics | `uvx toolmash-mcp-short-io-mcp-plugin` |
|
|
175
|
+
| `spacex-api-mcp-plugin` | SpaceX launches, rockets, crew data | `uvx toolmash-mcp-spacex-api-mcp-plugin` |
|
|
176
|
+
| `spotify-web-api-mcp-plugin` | Search tracks/artists/albums, get recommendations | `uvx toolmash-mcp-spotify-web-api-mcp-plugin` |
|
|
177
|
+
| `star-wars-api-swapi` | Star Wars characters, planets, starships, films and species | `uvx toolmash-mcp-star-wars-api-swapi` |
|
|
178
|
+
| `sunrise-sunset-api` | Get sunrise, sunset and solar event times for any location | `uvx toolmash-mcp-sunrise-sunset-api` |
|
|
179
|
+
| `thecocktaildb-mcp-plugin` | Cocktail recipes by ingredient/glass/category | `uvx toolmash-mcp-thecocktaildb-mcp-plugin` |
|
|
180
|
+
| `themealdb-mcp-plugin` | Recipe search by ingredient/category/area | `uvx toolmash-mcp-themealdb-mcp-plugin` |
|
|
181
|
+
| `tmdb-mcp-plugin` | Movie/TV search, ratings, cast, trailers | `uvx toolmash-mcp-tmdb-mcp-plugin` |
|
|
182
|
+
| `transfer-webhooks-mcp-plugin` | Adyen sends notifications through webhooks to inform your sy | `uvx toolmash-mcp-transfer-webhooks-mcp-plugin` |
|
|
183
|
+
| `transfers-api-mcp-plugin` | The Transfers API provides endpoints that you can use to get | `uvx toolmash-mcp-transfers-api-mcp-plugin` |
|
|
184
|
+
| `translate-api-mcp-plugin` | Free machine translation (100+ languages) | `uvx toolmash-mcp-translate-api-mcp-plugin` |
|
|
185
|
+
| `tv-maze-api` | TV show information, episodes, cast and schedules | `uvx toolmash-mcp-tv-maze-api` |
|
|
186
|
+
| `university-domains-mcp-plugin` | Search universities by name/country | `uvx toolmash-mcp-university-domains-mcp-plugin` |
|
|
187
|
+
| `usgs-earthquake-api` | Real-time earthquake data from USGS | `uvx toolmash-mcp-usgs-earthquake-api` |
|
|
188
|
+
| `useragent-api-mcp-plugin` | Parse user-agent strings | `uvx toolmash-mcp-useragent-api-mcp-plugin` |
|
|
189
|
+
| `uuid-generator-mcp-plugin` | Generate UUIDs (via simple API) | `uvx toolmash-mcp-uuid-generator-mcp-plugin` |
|
|
190
|
+
| `vat-validation-mcp-plugin` | Validate VAT numbers (EU businesses) | `uvx toolmash-mcp-vat-validation-mcp-plugin` |
|
|
191
|
+
| `weatherapi-com-mcp-plugin` | Real-time weather, forecast, marine weather | `uvx toolmash-mcp-weatherapi-com-mcp-plugin` |
|
|
192
|
+
| `wikidata-api-mcp-plugin` | Structured knowledge base entity lookup | `uvx toolmash-mcp-wikidata-api-mcp-plugin` |
|
|
193
|
+
| `wikimedia-rest-api` | Wikipedia article summaries and search | `uvx toolmash-mcp-wikimedia-rest-api` |
|
|
194
|
+
| `wikipedia-rest-api-mcp-plugin` | Article summary, search, featured content | `uvx toolmash-mcp-wikipedia-rest-api-mcp-plugin` |
|
|
195
|
+
| `yahoo-finance-mcp-plugin` | Stock prices, fundamentals, historical data | `uvx toolmash-mcp-yahoo-finance-mcp-plugin` |
|
|
196
|
+
| `zenquotes` | Inspirational and motivational quotes | `uvx toolmash-mcp-zenquotes` |
|
|
197
|
+
| `zippopotam-mcp-plugin` | Zip/postal code to location lookup | `uvx toolmash-mcp-zippopotam-mcp-plugin` |
|
|
198
|
+
|
|
199
|
+
## Usage with Claude Desktop
|
|
200
|
+
|
|
201
|
+
Add to `claude_desktop_config.json`:
|
|
202
|
+
|
|
203
|
+
```json
|
|
204
|
+
{
|
|
205
|
+
"mcpServers": {
|
|
206
|
+
"toolmash": {
|
|
207
|
+
"command": "uvx",
|
|
208
|
+
"args": ["toolmash-mcp"]
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
## Usage with Cursor
|
|
215
|
+
|
|
216
|
+
Add to Cursor MCP settings:
|
|
217
|
+
|
|
218
|
+
```json
|
|
219
|
+
{
|
|
220
|
+
"mcpServers": {
|
|
221
|
+
"toolmash": {
|
|
222
|
+
"command": "uvx",
|
|
223
|
+
"args": ["toolmash-mcp"]
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
Generated by [ToolMash Plugin Factory](https://toolmash.cn)
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
# ToolMash MCP
|
|
2
|
+
|
|
3
|
+
Collection of **145 MCP plugins** for AI assistants (Claude Desktop, Cursor, etc.).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Install all plugins
|
|
9
|
+
pip install toolmash-mcp
|
|
10
|
+
|
|
11
|
+
# Or run a specific plugin directly
|
|
12
|
+
uvx toolmash-mcp --plugin <plugin-name>
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Available Plugins (145)
|
|
16
|
+
|
|
17
|
+
| Plugin | Description | Command |
|
|
18
|
+
|--------|-------------|---------|
|
|
19
|
+
| `1forge-finance-apis-mcp-plugin` | Stock and Forex Data and Realtime Quotes | `uvx toolmash-mcp-1forge-finance-apis-mcp-plugin` |
|
|
20
|
+
| `1password-connect-mcp-plugin` | REST API interface for 1Password Connect. | `uvx toolmash-mcp-1password-connect-mcp-plugin` |
|
|
21
|
+
| `adafruit-io-rest-api-mcp-plugin` | ### The Internet of Things for Everyone
|
|
22
|
+
|
|
23
|
+
The Adafruit IO HTT | `uvx toolmash-mcp-adafruit-io-rest-api-mcp-plugin` |
|
|
24
|
+
| `adobe-experience-manager-aem-api-mcp-plugin` | Swagger AEM is an OpenAPI specification for Adobe Experience | `uvx toolmash-mcp-adobe-experience-manager-aem-api-mcp-plugin` |
|
|
25
|
+
| `advice-slip-mcp-plugin` | Random advice slips | `uvx toolmash-mcp-advice-slip-mcp-plugin` |
|
|
26
|
+
| `adyen-balance-control-api-mcp-plugin` | The Balance Control API lets you transfer funds between merc | `uvx toolmash-mcp-adyen-balance-control-api-mcp-plugin` |
|
|
27
|
+
| `adyen-binlookup-api-mcp-plugin` | The BIN Lookup API provides endpoints for retrieving informa | `uvx toolmash-mcp-adyen-binlookup-api-mcp-plugin` |
|
|
28
|
+
| `adyen-checkout-api-mcp-plugin` | Adyen Checkout API provides a simple and flexible way to ini | `uvx toolmash-mcp-adyen-checkout-api-mcp-plugin` |
|
|
29
|
+
| `adyen-data-protection-api-mcp-plugin` | Adyen Data Protection API provides a way for you to process | `uvx toolmash-mcp-adyen-data-protection-api-mcp-plugin` |
|
|
30
|
+
| `adyen-payment-api-mcp-plugin` | A set of API endpoints that allow you to initiate, settle, a | `uvx toolmash-mcp-adyen-payment-api-mcp-plugin` |
|
|
31
|
+
| `adyen-payout-api-mcp-plugin` | A set of API endpoints that allow you to store payout detail | `uvx toolmash-mcp-adyen-payout-api-mcp-plugin` |
|
|
32
|
+
| `adyen-recurring-api-mcp-plugin` | The Recurring APIs allow you to manage and remove your token | `uvx toolmash-mcp-adyen-recurring-api-mcp-plugin` |
|
|
33
|
+
| `adyen-stored-value-api-mcp-plugin` | A set of API endpoints to manage stored value products. | `uvx toolmash-mcp-adyen-stored-value-api-mcp-plugin` |
|
|
34
|
+
| `adyen-test-cards-api-mcp-plugin` | The Test Cards API provides endpoints for generating custom | `uvx toolmash-mcp-adyen-test-cards-api-mcp-plugin` |
|
|
35
|
+
| `afterbanks-api-mcp-plugin` | La estandarización de la conexión con cualquier banco en tie | `uvx toolmash-mcp-afterbanks-api-mcp-plugin` |
|
|
36
|
+
| `agify-io-mcp-plugin` | Predict age from first name | `uvx toolmash-mcp-agify-io-mcp-plugin` |
|
|
37
|
+
| `agromonitoring-mcp-plugin` | Satellite crop monitoring, weather, soil | `uvx toolmash-mcp-agromonitoring-mcp-plugin` |
|
|
38
|
+
| `aiception-interactive-mcp-plugin` | Here you can play & test & prototype all the endpoints using | `uvx toolmash-mcp-aiception-interactive-mcp-plugin` |
|
|
39
|
+
| `air-quality-api-mcp-plugin` | Air quality index by location | `uvx toolmash-mcp-air-quality-api-mcp-plugin` |
|
|
40
|
+
| `airbyte-configuration-api-mcp-plugin` | Airbyte Configuration API
|
|
41
|
+
[https://airbyte.io](https://airby | `uvx toolmash-mcp-airbyte-configuration-api-mcp-plugin` |
|
|
42
|
+
| `airline-code-lookup-api-mcp-plugin` |
|
|
43
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-airline-code-lookup-api-mcp-plugin` |
|
|
44
|
+
| `airport-city-search-mcp-plugin` |
|
|
45
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-airport-city-search-mcp-plugin` |
|
|
46
|
+
| `airport-nearest-relevant-mcp-plugin` |
|
|
47
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-airport-nearest-relevant-mcp-plugin` |
|
|
48
|
+
| `airport-on-time-performance-mcp-plugin` | Before using this API, we recommend you read our **[Authoriz | `uvx toolmash-mcp-airport-on-time-performance-mcp-plugin` |
|
|
49
|
+
| `airportsapi-mcp-plugin` | Get name and website-URL for airports by ICAO code. Covered | `uvx toolmash-mcp-airportsapi-mcp-plugin` |
|
|
50
|
+
| `alerter-system-api-mcp-plugin` | <p>This is the <a href="/">Alerter System</a> API playground | `uvx toolmash-mcp-alerter-system-api-mcp-plugin` |
|
|
51
|
+
| `alpha-vantage-mcp-plugin` | Stock/TX/FX/commodities data | `uvx toolmash-mcp-alpha-vantage-mcp-plugin` |
|
|
52
|
+
| `jikan-api-myanimelist` | Anime and manga data from MyAnimeList | `uvx toolmash-mcp-jikan-api-myanimelist` |
|
|
53
|
+
| `art-institute-of-chicago` | Artwork data from the Art Institute of Chicago | `uvx toolmash-mcp-art-institute-of-chicago` |
|
|
54
|
+
| `authentiq-api-mcp-plugin` | Strong authentication, without the passwords. | `uvx toolmash-mcp-authentiq-api-mcp-plugin` |
|
|
55
|
+
| `avatar-api-mcp-plugin` | Generate avatar images from initials | `uvx toolmash-mcp-avatar-api-mcp-plugin` |
|
|
56
|
+
| `bored-api-mcp-plugin` | Random activity suggestions by type/participants | `uvx toolmash-mcp-bored-api-mcp-plugin` |
|
|
57
|
+
| `branded-fares-upsell-mcp-plugin` |
|
|
58
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-branded-fares-upsell-mcp-plugin` |
|
|
59
|
+
| `breaking-bad-quotes-mcp-plugin` | Quotes from Breaking Bad series | `uvx toolmash-mcp-breaking-bad-quotes-mcp-plugin` |
|
|
60
|
+
| `calendarific-mcp-plugin` | Holidays, observances, school holidays | `uvx toolmash-mcp-calendarific-mcp-plugin` |
|
|
61
|
+
| `carbon-interface-api` | Carbon footprint estimation for electricity, flight and vehi | `uvx toolmash-mcp-carbon-interface-api` |
|
|
62
|
+
| `cat-facts-mcp-plugin` | Random cat facts | `uvx toolmash-mcp-cat-facts-mcp-plugin` |
|
|
63
|
+
| `chuck-norris-jokes` | Random Chuck Norris jokes and facts | `uvx toolmash-mcp-chuck-norris-jokes` |
|
|
64
|
+
| `classic-platforms-notifications-mcp-plugin` | This API is used for the classic integration. If you are jus | `uvx toolmash-mcp-classic-platforms-notifications-mcp-plugin` |
|
|
65
|
+
| `clearbit-logo-mcp-plugin` | Company logo image by domain | `uvx toolmash-mcp-clearbit-logo-mcp-plugin` |
|
|
66
|
+
| `clipdrop-mcp-plugin` | AI background removal, upscaling, relighting | `uvx toolmash-mcp-clipdrop-mcp-plugin` |
|
|
67
|
+
| `coindesk-btc-mcp-plugin` | Bitcoin price in USD, EUR, GBP | `uvx toolmash-mcp-coindesk-btc-mcp-plugin` |
|
|
68
|
+
| `coingecko-mcp-plugin` | Crypto prices, market cap, DeFi data | `uvx toolmash-mcp-coingecko-mcp-plugin` |
|
|
69
|
+
| `color-api` | Color information, conversion and palettes | `uvx toolmash-mcp-color-api` |
|
|
70
|
+
| `configuration-webhooks-mcp-plugin` | Adyen sends notifications through webhooks to inform your sy | `uvx toolmash-mcp-configuration-webhooks-mcp-plugin` |
|
|
71
|
+
| `control-api-v1-mcp-plugin` | Use the Control API to manage your applications, namespaces, | `uvx toolmash-mcp-control-api-v1-mcp-plugin` |
|
|
72
|
+
| `crossref-api` | Academic publication and DOI metadata | `uvx toolmash-mcp-crossref-api` |
|
|
73
|
+
| `dictionary-api-mcp-plugin` | Word definitions, phonetics, audio pronunciation | `uvx toolmash-mcp-dictionary-api-mcp-plugin` |
|
|
74
|
+
| `dog-ceo-mcp-plugin` | Random dog pictures by breed | `uvx toolmash-mcp-dog-ceo-mcp-plugin` |
|
|
75
|
+
| `dummyjson` | Fake JSON data for testing - products, posts, comments, user | `uvx toolmash-mcp-dummyjson` |
|
|
76
|
+
| `ergast-f1-api` | Formula 1 race results, standings and circuit data | `uvx toolmash-mcp-ergast-f1-api` |
|
|
77
|
+
| `evil-insult-generator` | Generate random insults in multiple languages | `uvx toolmash-mcp-evil-insult-generator` |
|
|
78
|
+
| `exchangerate-api-mcp-plugin` | Real-time currency exchange rates | `uvx toolmash-mcp-exchangerate-api-mcp-plugin` |
|
|
79
|
+
| `excuser-mcp-plugin` | Random excuses generator | `uvx toolmash-mcp-excuser-mcp-plugin` |
|
|
80
|
+
| `financial-modeling-prep-mcp-plugin` | Real-time stock, crypto, forex, financials | `uvx toolmash-mcp-financial-modeling-prep-mcp-plugin` |
|
|
81
|
+
| `flight-availibilities-search-mcp-plugin` |
|
|
82
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-availibilities-search-mcp-plugin` |
|
|
83
|
+
| `flight-busiest-traveling-period-mcp-plugin` |
|
|
84
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-busiest-traveling-period-mcp-plugin` |
|
|
85
|
+
| `flight-cheapest-date-search-mcp-plugin` |
|
|
86
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-cheapest-date-search-mcp-plugin` |
|
|
87
|
+
| `flight-check-in-links-mcp-plugin` |
|
|
88
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-check-in-links-mcp-plugin` |
|
|
89
|
+
| `flight-offers-search-mcp-plugin` |
|
|
90
|
+
Before using this API, we recommend you read our **[Authori | `uvx toolmash-mcp-flight-offers-search-mcp-plugin` |
|
|
91
|
+
| `fruityvice-mcp-plugin` | Fruit nutrition facts by name | `uvx toolmash-mcp-fruityvice-mcp-plugin` |
|
|
92
|
+
| `genderize-io-mcp-plugin` | Predict gender from first name | `uvx toolmash-mcp-genderize-io-mcp-plugin` |
|
|
93
|
+
| `geocode-xyz-mcp-plugin` | Lat/lng to address, address to lat/lng | `uvx toolmash-mcp-geocode-xyz-mcp-plugin` |
|
|
94
|
+
| `geodb-cities-mcp-plugin` | City search, population, nearby cities | `uvx toolmash-mcp-geodb-cities-mcp-plugin` |
|
|
95
|
+
| `github-rest-api-mcp-plugin` | Repo search, issues, PRs, user data | `uvx toolmash-mcp-github-rest-api-mcp-plugin` |
|
|
96
|
+
| `gitlab-api-mcp-plugin` | Projects, issues, MRs, CI/CD status | `uvx toolmash-mcp-gitlab-api-mcp-plugin` |
|
|
97
|
+
| `hacker-news-api-mcp-plugin` | HN top stories, new, ask, show, jobs | `uvx toolmash-mcp-hacker-news-api-mcp-plugin` |
|
|
98
|
+
| `harvard-art-museums-mcp-plugin` | Harvard art collection search | `uvx toolmash-mcp-harvard-art-museums-mcp-plugin` |
|
|
99
|
+
| `holidays-api-mcp-plugin` | Public holidays by country/year | `uvx toolmash-mcp-holidays-api-mcp-plugin` |
|
|
100
|
+
| `hosted-onboarding-api-mcp-plugin` | This API is used for the classic integration. If you are jus | `uvx toolmash-mcp-hosted-onboarding-api-mcp-plugin` |
|
|
101
|
+
| `http-cat-mcp-plugin` | HTTP status codes with cat images | `uvx toolmash-mcp-http-cat-mcp-plugin` |
|
|
102
|
+
| `httpbin-mcp-plugin` | HTTP testing endpoints (GET/POST/auth/status) | `uvx toolmash-mcp-httpbin-mcp-plugin` |
|
|
103
|
+
| `ip-api-mcp-plugin` | IP geolocation, ISP info, timezone | `uvx toolmash-mcp-ip-api-mcp-plugin` |
|
|
104
|
+
| `ip-geolocation-api-mcp-plugin` | Abstract IP geolocation API allows developers to retrieve th | `uvx toolmash-mcp-ip-geolocation-api-mcp-plugin` |
|
|
105
|
+
| `ipgeolocation-io-mcp-plugin` | IP to geolocation + timezone + currency | `uvx toolmash-mcp-ipgeolocation-io-mcp-plugin` |
|
|
106
|
+
| `iucn-red-list` | Endangered species data from IUCN Red List (simplified) | `uvx toolmash-mcp-iucn-red-list` |
|
|
107
|
+
| `jokeapi-mcp-plugin` | Programming and general jokes | `uvx toolmash-mcp-jokeapi-mcp-plugin` |
|
|
108
|
+
| `jsonplaceholder-mcp-plugin` | Fake REST API for testing and prototyping | `uvx toolmash-mcp-jsonplaceholder-mcp-plugin` |
|
|
109
|
+
| `kanji-alive-mcp-plugin` | Japanese kanji details: meaning, stroke order | `uvx toolmash-mcp-kanji-alive-mcp-plugin` |
|
|
110
|
+
| `kanye-rest-mcp-plugin` | Random Kanye West quotes | `uvx toolmash-mcp-kanye-rest-mcp-plugin` |
|
|
111
|
+
| `legal-entity-management-api-mcp-plugin` | The Legal Entity Management API enables you to manage legal | `uvx toolmash-mcp-legal-entity-management-api-mcp-plugin` |
|
|
112
|
+
| `lorem-picsum-mcp-plugin` | Placeholder images of any size | `uvx toolmash-mcp-lorem-picsum-mcp-plugin` |
|
|
113
|
+
| `lord-of-the-rings-api` | Characters, quotes and book data from LOTR | `uvx toolmash-mcp-lord-of-the-rings-api` |
|
|
114
|
+
| `lyrics-ovh-mcp-plugin` | Song lyrics search by artist + title | `uvx toolmash-mcp-lyrics-ovh-mcp-plugin` |
|
|
115
|
+
| `management-webhooks-mcp-plugin` | Adyen uses webhooks to inform your system about events that | `uvx toolmash-mcp-management-webhooks-mcp-plugin` |
|
|
116
|
+
| `met-museum-api` | Metropolitan Museum of Art collection data | `uvx toolmash-mcp-met-museum-api` |
|
|
117
|
+
| `museum-api-mcp-plugin` | Met Museum collection search | `uvx toolmash-mcp-museum-api-mcp-plugin` |
|
|
118
|
+
| `n2yo-satellite-mcp-plugin` | Satellite pass predictions, TLE data | `uvx toolmash-mcp-n2yo-satellite-mcp-plugin` |
|
|
119
|
+
| `nasa-apod-mcp-plugin` | NASA Astronomy Picture of the Day | `uvx toolmash-mcp-nasa-apod-mcp-plugin` |
|
|
120
|
+
| `nationalize-io-mcp-plugin` | Predict nationality from first name | `uvx toolmash-mcp-nationalize-io-mcp-plugin` |
|
|
121
|
+
| `newsapi-mcp-plugin` | Search articles from 80,000+ sources | `uvx toolmash-mcp-newsapi-mcp-plugin` |
|
|
122
|
+
| `notification-configuration-api-mcp-plugin` | This API is used for the classic integration. If you are jus | `uvx toolmash-mcp-notification-configuration-api-mcp-plugin` |
|
|
123
|
+
| `numbers-api-mcp-plugin` | Interesting facts about numbers | `uvx toolmash-mcp-numbers-api-mcp-plugin` |
|
|
124
|
+
| `omdb-mcp-plugin` | Movie search by title, ratings, poster | `uvx toolmash-mcp-omdb-mcp-plugin` |
|
|
125
|
+
| `openfda-api` | FDA drug, device and food data | `uvx toolmash-mcp-openfda-api` |
|
|
126
|
+
| `open-library` | Book data, covers and author information | `uvx toolmash-mcp-open-library` |
|
|
127
|
+
| `open-notify-mcp-plugin` | ISS current location, astronaut count | `uvx toolmash-mcp-open-notify-mcp-plugin` |
|
|
128
|
+
| `open-trivia-db-mcp-plugin` | Trivia questions by category/difficulty | `uvx toolmash-mcp-open-trivia-db-mcp-plugin` |
|
|
129
|
+
| `openaq-mcp-plugin` | OpenAQ API | `uvx toolmash-mcp-openaq-mcp-plugin` |
|
|
130
|
+
| `opencage-geocoder-mcp-plugin` | Forward/reverse geocoding | `uvx toolmash-mcp-opencage-geocoder-mcp-plugin` |
|
|
131
|
+
| `openfoodfacts-mcp-plugin` | | `uvx toolmash-mcp-openfoodfacts-mcp-plugin` |
|
|
132
|
+
| `openlibrary-mcp-plugin` | Search books, authors, ISBN | `uvx toolmash-mcp-openlibrary-mcp-plugin` |
|
|
133
|
+
| `openweather-onecall-mcp-plugin` | Current + 7-day forecast + alerts | `uvx toolmash-mcp-openweather-onecall-mcp-plugin` |
|
|
134
|
+
| `openweathermap-mcp-plugin` | Current weather, forecasts, historical data | `uvx toolmash-mcp-openweathermap-mcp-plugin` |
|
|
135
|
+
| `payment-webhooks-deprecated-mcp-plugin` | The payment webhooks are deprecated. Use the [accounting web | `uvx toolmash-mcp-payment-webhooks-deprecated-mcp-plugin` |
|
|
136
|
+
| `philosophy-api` | Random philosophical quotes and ideas | `uvx toolmash-mcp-philosophy-api` |
|
|
137
|
+
| `picsum-photos-mcp-plugin` | Random placeholder images, configurable size | `uvx toolmash-mcp-picsum-photos-mcp-plugin` |
|
|
138
|
+
| `pokeapi` | Pokemon data - types, abilities, moves, stats | `uvx toolmash-mcp-pokeapi` |
|
|
139
|
+
| `pos-terminal-management-api-mcp-plugin` | This API provides endpoints for managing your point-of-sale | `uvx toolmash-mcp-pos-terminal-management-api-mcp-plugin` |
|
|
140
|
+
| `postman-echo-mcp-plugin` | Test HTTP methods, headers, auth | `uvx toolmash-mcp-postman-echo-mcp-plugin` |
|
|
141
|
+
| `qrcode-monkey-mcp-plugin` | Generate custom QR codes with logos and colors | `uvx toolmash-mcp-qrcode-monkey-mcp-plugin` |
|
|
142
|
+
| `quotable-mcp-plugin` | Random quotes, search by author/tag | `uvx toolmash-mcp-quotable-mcp-plugin` |
|
|
143
|
+
| `random-user-generator` | Generate random fake user data for testing | `uvx toolmash-mcp-random-user-generator` |
|
|
144
|
+
| `reddit-json-api-mcp-plugin` | Subreddit posts, comments, search | `uvx toolmash-mcp-reddit-json-api-mcp-plugin` |
|
|
145
|
+
| `report-webhooks-mcp-plugin` | Adyen sends notifications through webhooks to inform your sy | `uvx toolmash-mcp-report-webhooks-mcp-plugin` |
|
|
146
|
+
| `reqres-mcp-plugin` | Fake API for testing CRUD operations | `uvx toolmash-mcp-reqres-mcp-plugin` |
|
|
147
|
+
| `countries-info-extended` | Extended country information - currencies, languages, border | `uvx toolmash-mcp-countries-info-extended` |
|
|
148
|
+
| `restcountries-mcp-plugin` | Country data: population, capital, currency, languages | `uvx toolmash-mcp-restcountries-mcp-plugin` |
|
|
149
|
+
| `rick-and-morty-api` | Characters, episodes and locations from Rick and Morty | `uvx toolmash-mcp-rick-and-morty-api` |
|
|
150
|
+
| `robohash-mcp-plugin` | Generate robot avatars from text | `uvx toolmash-mcp-robohash-mcp-plugin` |
|
|
151
|
+
| `ron-swanson-quotes-mcp-plugin` | Random Ron Swanson quotes | `uvx toolmash-mcp-ron-swanson-quotes-mcp-plugin` |
|
|
152
|
+
| `short-io-mcp-plugin` | Link shortening, custom domains, analytics | `uvx toolmash-mcp-short-io-mcp-plugin` |
|
|
153
|
+
| `spacex-api-mcp-plugin` | SpaceX launches, rockets, crew data | `uvx toolmash-mcp-spacex-api-mcp-plugin` |
|
|
154
|
+
| `spotify-web-api-mcp-plugin` | Search tracks/artists/albums, get recommendations | `uvx toolmash-mcp-spotify-web-api-mcp-plugin` |
|
|
155
|
+
| `star-wars-api-swapi` | Star Wars characters, planets, starships, films and species | `uvx toolmash-mcp-star-wars-api-swapi` |
|
|
156
|
+
| `sunrise-sunset-api` | Get sunrise, sunset and solar event times for any location | `uvx toolmash-mcp-sunrise-sunset-api` |
|
|
157
|
+
| `thecocktaildb-mcp-plugin` | Cocktail recipes by ingredient/glass/category | `uvx toolmash-mcp-thecocktaildb-mcp-plugin` |
|
|
158
|
+
| `themealdb-mcp-plugin` | Recipe search by ingredient/category/area | `uvx toolmash-mcp-themealdb-mcp-plugin` |
|
|
159
|
+
| `tmdb-mcp-plugin` | Movie/TV search, ratings, cast, trailers | `uvx toolmash-mcp-tmdb-mcp-plugin` |
|
|
160
|
+
| `transfer-webhooks-mcp-plugin` | Adyen sends notifications through webhooks to inform your sy | `uvx toolmash-mcp-transfer-webhooks-mcp-plugin` |
|
|
161
|
+
| `transfers-api-mcp-plugin` | The Transfers API provides endpoints that you can use to get | `uvx toolmash-mcp-transfers-api-mcp-plugin` |
|
|
162
|
+
| `translate-api-mcp-plugin` | Free machine translation (100+ languages) | `uvx toolmash-mcp-translate-api-mcp-plugin` |
|
|
163
|
+
| `tv-maze-api` | TV show information, episodes, cast and schedules | `uvx toolmash-mcp-tv-maze-api` |
|
|
164
|
+
| `university-domains-mcp-plugin` | Search universities by name/country | `uvx toolmash-mcp-university-domains-mcp-plugin` |
|
|
165
|
+
| `usgs-earthquake-api` | Real-time earthquake data from USGS | `uvx toolmash-mcp-usgs-earthquake-api` |
|
|
166
|
+
| `useragent-api-mcp-plugin` | Parse user-agent strings | `uvx toolmash-mcp-useragent-api-mcp-plugin` |
|
|
167
|
+
| `uuid-generator-mcp-plugin` | Generate UUIDs (via simple API) | `uvx toolmash-mcp-uuid-generator-mcp-plugin` |
|
|
168
|
+
| `vat-validation-mcp-plugin` | Validate VAT numbers (EU businesses) | `uvx toolmash-mcp-vat-validation-mcp-plugin` |
|
|
169
|
+
| `weatherapi-com-mcp-plugin` | Real-time weather, forecast, marine weather | `uvx toolmash-mcp-weatherapi-com-mcp-plugin` |
|
|
170
|
+
| `wikidata-api-mcp-plugin` | Structured knowledge base entity lookup | `uvx toolmash-mcp-wikidata-api-mcp-plugin` |
|
|
171
|
+
| `wikimedia-rest-api` | Wikipedia article summaries and search | `uvx toolmash-mcp-wikimedia-rest-api` |
|
|
172
|
+
| `wikipedia-rest-api-mcp-plugin` | Article summary, search, featured content | `uvx toolmash-mcp-wikipedia-rest-api-mcp-plugin` |
|
|
173
|
+
| `yahoo-finance-mcp-plugin` | Stock prices, fundamentals, historical data | `uvx toolmash-mcp-yahoo-finance-mcp-plugin` |
|
|
174
|
+
| `zenquotes` | Inspirational and motivational quotes | `uvx toolmash-mcp-zenquotes` |
|
|
175
|
+
| `zippopotam-mcp-plugin` | Zip/postal code to location lookup | `uvx toolmash-mcp-zippopotam-mcp-plugin` |
|
|
176
|
+
|
|
177
|
+
## Usage with Claude Desktop
|
|
178
|
+
|
|
179
|
+
Add to `claude_desktop_config.json`:
|
|
180
|
+
|
|
181
|
+
```json
|
|
182
|
+
{
|
|
183
|
+
"mcpServers": {
|
|
184
|
+
"toolmash": {
|
|
185
|
+
"command": "uvx",
|
|
186
|
+
"args": ["toolmash-mcp"]
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
## Usage with Cursor
|
|
193
|
+
|
|
194
|
+
Add to Cursor MCP settings:
|
|
195
|
+
|
|
196
|
+
```json
|
|
197
|
+
{
|
|
198
|
+
"mcpServers": {
|
|
199
|
+
"toolmash": {
|
|
200
|
+
"command": "uvx",
|
|
201
|
+
"args": ["toolmash-mcp"]
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
Generated by [ToolMash Plugin Factory](https://toolmash.cn)
|