qualifiedName
stringlengths 3
59
| displayName
stringlengths 3
53
| description
stringlengths 0
3.47k
| createdAt
stringdate 2024-12-13 15:46:50
2025-05-05 20:05:11
| useCount
int64 0
418k
| homepage
stringlengths 30
86
| remote
bool 2
classes | iconUrl
stringclasses 96
values | security
dict | tools
stringlengths 90
360k
|
---|---|---|---|---|---|---|---|---|---|
@esshka/okx-mcp | OKX Server | Fetch real-time cryptocurrency price data and historical candlestick information from the OKX exchange. Access market insights effortlessly through a simple tool interface, ensuring you stay updated with the latest trends. Enhance your trading strategies with reliable and timely data at your fingertips. | 2025-03-11T14:01:44.159Z | 19 | https://smithery.ai/server/@esshka/okx-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_price', 'description': 'Get latest price for an OKX instrument', 'inputSchema': {'type': 'object', 'required': ['instrument'], 'properties': {'instrument': {'type': 'string', 'description': 'Instrument ID (e.g. BTC-USDT)'}}}}, {'name': 'get_candlesticks', 'description': 'Get candlestick data for an OKX instrument', 'inputSchema': {'type': 'object', 'required': ['instrument'], 'properties': {'bar': {'type': 'string', 'default': '1m', 'description': 'Time interval (e.g. 1m, 5m, 1H, 1D)'}, 'limit': {'type': 'number', 'default': 100, 'description': 'Number of candlesticks (max 100)'}, 'instrument': {'type': 'string', 'description': 'Instrument ID (e.g. BTC-USDT)'}}}}] |
@lieyanqzu/ygocdb-mcp | YGO Chinese Card Database - 百鸽(ygocdb.com) | Provide fast and easy access to Chinese Yu-Gi-Oh! card information and images through keyword search and ID queries. Integrate seamlessly with your applications to retrieve detailed card data and visuals. Support both stdio and Streamable HTTP modes for flexible deployment. | 2025-04-20T19:32:08.344Z | 19 | https://smithery.ai/server/@lieyanqzu/ygocdb-mcp | true | {
"scanPassed": true
} | [{'name': 'search_cards', 'annotations': {'title': '通过关键字搜索游戏王卡牌', 'readOnlyHint': True, 'openWorldHint': True}, 'description': '通过关键字搜索游戏王卡牌,可以搜索卡牌名称、效果文本等。', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': '搜索关键字,可以是卡牌名称、效果描述等'}}}}, {'name': 'get_card_by_id', 'annotations': {'title': '通过ID获取单张游戏王卡牌', 'readOnlyHint': True, 'openWorldHint': True}, 'description': '通过卡牌ID获取单张游戏王卡牌的详细信息', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': '游戏王卡牌ID,通常为八位数字'}}}}, {'name': 'get_card_image', 'annotations': {'title': '通过ID获取游戏王卡牌图片', 'readOnlyHint': True, 'openWorldHint': True}, 'description': '通过卡牌ID获取游戏王卡牌的图片', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': '游戏王卡牌ID,可以使用search_cards工具搜索'}}}}] |
|
@uzaysozen/imdb-mcp-server | IMDb Server | Access comprehensive movie and TV show information effortlessly. Retrieve detailed data about films, actors, and upcoming releases using the IMDb API. Enhance your applications with rich media content and insights. | 2025-03-30T19:39:36.818Z | 19 | https://smithery.ai/server/@uzaysozen/imdb-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'search_imdb', 'description': 'Search for movies on IMDb. First 5 results are returned.\nArgs:\n original_title: The original title of the movie to search for. Searches the whole word.\n original_title_autocomplete: The autocomplete title of the movie to search for. Searches the partial word.\n primary_title: The primary title of the movie to search for. Searches the whole word.\n primary_title_autocomplete: The autocomplete primary title of the movie to search for. Searches the partial word.\n type: The type of the movie to search for. Get all possible types with get_types().\n genre: The genre of the movie to search for. Get all possible genres with get_genres().\n genres: The genres of the movie to search for. List of Genres. Get all possible genres with get_genres().\n is_adult: Whether to include adult movies in the search results.\n average_rating_from: The minimum average rating of the movie to search for.\n average_rating_to: The maximum average rating of the movie to search for.\n num_votes_from: The minimum number of votes of the movie to search for.\n num_votes_to: The maximum number of votes of the movie to search for.\n start_year_from: The minimum start year of the movie to search for.\n start_year_to: The maximum start year of the movie to search for.\n countries_of_origin: The countries of origin of the movie to search for. In ISO 3166-1 alpha-2 format list of strings. Get all possible countries with get_countries().\n spoken_languages: The spoken languages of the movie to search for. In ISO 639-1 format list of strings. Get all possible languages with get_languages().\n sort_order: The order of the search results. Possible values: "ASC", "DESC".\n sort_field: The field to sort the search results by. Possible values: "id", "averageRating", "numVotes", "startYear".\nReturns:\n JSON object containing the first 5 search results.\n', 'inputSchema': {'type': 'object', 'title': 'search_imdbArguments', 'properties': {'type': {'type': 'string', 'title': 'Type', 'default': None}, 'genre': {'type': 'string', 'title': 'Genre', 'default': None}, 'genres': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Genres', 'default': None}, 'is_adult': {'type': 'boolean', 'title': 'Is Adult', 'default': None}, 'sort_field': {'type': 'string', 'title': 'Sort Field', 'default': None}, 'sort_order': {'type': 'string', 'title': 'Sort Order', 'default': None}, 'num_votes_to': {'type': 'integer', 'title': 'Num Votes To', 'default': None}, 'primary_title': {'type': 'string', 'title': 'Primary Title', 'default': None}, 'start_year_to': {'type': 'integer', 'title': 'Start Year To', 'default': None}, 'num_votes_from': {'type': 'integer', 'title': 'Num Votes From', 'default': None}, 'original_title': {'type': 'string', 'title': 'Original Title', 'default': None}, 'start_year_from': {'type': 'integer', 'title': 'Start Year From', 'default': None}, 'spoken_languages': {'type': 'string', 'title': 'Spoken Languages', 'default': None}, 'average_rating_to': {'type': 'number', 'title': 'Average Rating To', 'default': None}, 'average_rating_from': {'type': 'number', 'title': 'Average Rating From', 'default': None}, 'countries_of_origin': {'type': 'string', 'title': 'Countries Of Origin', 'default': None}, 'primary_title_autocomplete': {'type': 'string', 'title': 'Primary Title Autocomplete', 'default': None}, 'original_title_autocomplete': {'type': 'string', 'title': 'Original Title Autocomplete', 'default': None}}}}, {'name': 'get_imdb_details', 'description': 'Get more in depth details about a movie/series from IMDb.\nArgs:\n imdbId: The IMDb ID of the movie/series to get details for.\nReturns:\n JSON object containing the movie/series details.\n', 'inputSchema': {'type': 'object', 'title': 'get_imdb_detailsArguments', 'required': ['imdb_id'], 'properties': {'imdb_id': {'type': 'string', 'title': 'Imdb Id'}}}}, {'name': 'get_directors', 'description': 'Get the directors of a movie from IMDb.\nArgs:\n imdbId: The IMDb ID of the movie to get directors for.\nReturns:\n JSON object containing the directors of the movie.\n', 'inputSchema': {'type': 'object', 'title': 'get_directorsArguments', 'required': ['imdb_id'], 'properties': {'imdb_id': {'type': 'string', 'title': 'Imdb Id'}}}}, {'name': 'get_cast', 'description': 'Get the cast of a movie from IMDb.\nArgs:\n imdbId: The IMDb ID of the movie to get cast for.\nReturns:\n JSON object containing the cast of the movie.\n', 'inputSchema': {'type': 'object', 'title': 'get_castArguments', 'required': ['imdb_id'], 'properties': {'imdb_id': {'type': 'string', 'title': 'Imdb Id'}}}}, {'name': 'get_writers', 'description': 'Get the writers of a movie from IMDb.\nArgs:\n imdbId: The IMDb ID of the movie to get writers for.\nReturns:\n JSON object containing the writers of the movie.\n', 'inputSchema': {'type': 'object', 'title': 'get_writersArguments', 'required': ['imdb_id'], 'properties': {'imdb_id': {'type': 'string', 'title': 'Imdb Id'}}}}, {'name': 'get_types', 'description': 'Get all types.\nReturns:\n JSON object containing all types.\n', 'inputSchema': {'type': 'object', 'title': 'get_typesArguments', 'properties': {}}}, {'name': 'get_genres', 'description': 'Get all genres.\nReturns:\n JSON object containing all genres.\n', 'inputSchema': {'type': 'object', 'title': 'get_genresArguments', 'properties': {}}}, {'name': 'get_countries', 'description': 'Get all countries.\nReturns:\n JSON object containing all countries.\n', 'inputSchema': {'type': 'object', 'title': 'get_countriesArguments', 'properties': {}}}, {'name': 'get_languages', 'description': 'Get all languages.\nReturns:\n JSON object containing all languages.\n', 'inputSchema': {'type': 'object', 'title': 'get_languagesArguments', 'properties': {}}}, {'name': 'get_top_250_movies', 'description': 'Get the top 250 movies from IMDb with pagination.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 top movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_top_250_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_top_box_office_us', 'description': 'Get the top box office data for the US from IMDb with pagination.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 top box office movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_top_box_office_usArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_most_popular_movies', 'description': 'Get the most popular movies from IMDb with pagination.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 most popular movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_most_popular_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_top_250_tv_shows', 'description': 'Get the top 250 TV shows from IMDb with pagination.\nArgs:\n start: The starting index (0-based) to retrieve TV shows from.\nReturns:\n JSON object containing 10 top TV shows starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_top_250_tv_showsArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_most_popular_tv_shows', 'description': 'Get the most popular TV shows from IMDb with pagination.\nArgs:\n start: The starting index (0-based) to retrieve TV shows from.\nReturns:\n JSON object containing 10 most popular TV shows starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_most_popular_tv_showsArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_upcoming_releases', 'description': 'Get the upcoming releases from IMDb with pagination.\nArgs:\n country_code: The country code to get the upcoming releases for.\n type: The type of the upcoming releases to get. Possible values: "TV", "MOVIE".\n start: The starting index (0-based) to retrieve releases from.\nReturns:\n JSON object containing 10 upcoming releases starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_upcoming_releasesArguments', 'required': ['country_code', 'type'], 'properties': {'type': {'type': 'string', 'title': 'Type'}, 'start': {'type': 'integer', 'title': 'Start', 'default': 0}, 'country_code': {'type': 'string', 'title': 'Country Code'}}}}, {'name': 'get_available_country_codes_for_upcoming_releases', 'description': 'Get the available country codes for upcoming releases from IMDb.\nReturns:\n JSON object containing the available country codes for upcoming releases.\n', 'inputSchema': {'type': 'object', 'title': 'get_available_country_codes_for_upcoming_releasesArguments', 'properties': {}}}, {'name': 'get_top_rated_malayalam_movies', 'description': 'Top 50 Malayalam movies as rated by the IMDb users.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 top rated Malayalam movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_top_rated_malayalam_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_upcoming_indian_movies', 'description': 'Get the most anticipated Indian movies on IMDb based on real-time popularity.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 most anticipated Indian movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_upcoming_indian_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_trending_tamil_movies', 'description': 'Get the trending Tamil movies on IMDb.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 trending Tamil movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_trending_tamil_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_trending_telugu_movies', 'description': 'Get the trending Telugu movies on IMDb.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 trending Telugu movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_trending_telugu_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_top_rated_tamil_movies', 'description': 'Top 50 rated Tamil movies on IMDb.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 top rated Tamil movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_top_rated_tamil_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_top_rated_telugu_movies', 'description': 'Top 50 rated Telugu movies on IMDb.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 top rated Telugu movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_top_rated_telugu_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}, {'name': 'get_top_rated_indian_movies', 'description': 'Top 250 rated Indian movies on IMDb with pagination.\nArgs:\n start: The starting index (0-based) to retrieve movies from.\nReturns:\n JSON object containing 10 top rated Indian movies starting from the specified index.\n', 'inputSchema': {'type': 'object', 'title': 'get_top_rated_indian_moviesArguments', 'properties': {'start': {'type': 'integer', 'title': 'Start', 'default': 0}}}}] |
@sdaaron/coze-workflow-mcp | Coze Workflow | Integrate workflow automation into your applications. Streamline processes and enhance productivity with easy-to-use tools and commands. Leverage the power of MCP to connect your workflows seamlessly. | 2025-03-24T16:12:53.603Z | 19 | https://smithery.ai/server/@sdaaron/coze-workflow-mcp | true | null | {
"scanPassed": true
} | [{'name': 'run_coze_workflow', 'description': '', 'inputSchema': {'type': 'object', 'title': 'run_coze_workflowArguments', 'required': ['workflow_id', 'token'], 'properties': {'token': {'type': 'string', 'title': 'Token'}, 'workflow_id': {'type': 'string', 'title': 'Workflow Id'}, 'parameters_json': {'type': 'string', 'title': 'Parameters Json', 'default': '{}'}}}}] |
github-mapper-mcp-server | GitHub Mapper | An MCP server that maps and analyzes GitHub repository structures, providing summary statistics and detailed file structures. | 2024-12-20T13:59:14.097Z | 19 | https://smithery.ai/server/github-mapper-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'set-github-token', 'description': 'Set the GitHub Personal Access Token for authentication', 'inputSchema': {'type': 'object', 'required': ['token'], 'properties': {'token': {'type': 'string', 'description': 'GitHub Personal Access Token'}}}}, {'name': 'map-github-repo', 'description': 'Map a GitHub repository structure and provide summary information', 'inputSchema': {'type': 'object', 'required': ['repoUrl'], 'properties': {'repoUrl': {'type': 'string', 'description': 'URL of the GitHub repository (e.g., https://github.com/username/repo)'}}}}] |
@drdee/memory-mcp | Memory MCP | Store and retrieve memories effortlessly with this server. Utilize a simple command-line interface to manage your memories, making it easy to remember important information. Enhance your applications with memory capabilities using a reliable and efficient backend. | 2025-04-07T05:00:26.565Z | 18 | https://smithery.ai/server/@drdee/memory-mcp | true | null | {
"scanPassed": true
} | [{'name': 'remember', 'description': 'Store a new memory.', 'inputSchema': {'type': 'object', 'title': 'rememberArguments', 'required': ['title', 'content'], 'properties': {'title': {'type': 'string', 'description': 'A concise title for the memory'}, 'content': {'type': 'string', 'description': 'The full content of the memory to store'}}}}, {'name': 'get_memory', 'description': 'Retrieve a specific memory by ID or title.', 'inputSchema': {'type': 'object', 'title': 'getMemoryArguments', 'properties': {'title': {'type': 'string', 'description': 'The title of the memory to retrieve'}, 'memory_id': {'type': 'integer', 'description': 'The ID of the memory to retrieve'}}}}, {'name': 'list_memories', 'description': 'List all stored memories.', 'inputSchema': {'type': 'object', 'title': 'listMemoriesArguments', 'properties': {}}}, {'name': 'update_memory', 'description': 'Update an existing memory.', 'inputSchema': {'type': 'object', 'title': 'updateMemoryArguments', 'required': ['memory_id'], 'properties': {'title': {'type': 'string', 'description': 'Optional new title for the memory'}, 'content': {'type': 'string', 'description': 'Optional new content for the memory'}, 'memory_id': {'type': 'integer', 'description': 'The ID of the memory to update'}}}}, {'name': 'delete_memory', 'description': 'Delete a memory.', 'inputSchema': {'type': 'object', 'title': 'deleteMemoryArguments', 'required': ['memory_id'], 'properties': {'memory_id': {'type': 'integer', 'description': 'The ID of the memory to delete'}}}}] |
@JigsawStack/vocr | JigsawStack vOCR | OCR + AI = Magic:
Extract data from any image in a consistent structure with fine-tuned vLLMs for the highest accuracy. Learn more about AI backed OCR here: https://jigsawstack.com/docs/api-reference/ai/vocr Get your jigsawstack API key here: https://jigsawstack.com/dashboard/ | 2025-03-03T20:21:44.797Z | 9 | https://smithery.ai/server/@JigsawStack/vocr | true | {
"scanPassed": true
} | [{'name': 'VOCR', 'description': 'Let AI read your images. Powered by our OCR engine by JigsawStack.', 'inputSchema': {'type': 'object', 'required': ['base64Image'], 'properties': {'prompts': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Prompts to help the AI understand the context of the image.'}, 'base64Image': {'type': 'string', 'description': 'A Base64 encoded string of the image.'}}}}] |
|
mcp-server-gsc | Google Search Console | A Model Context Protocol (MCP) server providing access to Google Search Console. | 2024-12-19T16:07:45.640Z | 58 | https://smithery.ai/server/mcp-server-gsc | false | null | {
"scanPassed": true
} | [{'name': 'list_sites', 'description': 'List all sites in Google Search Console', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'search_analytics', 'description': 'Get search performance data from Google Search Console', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['siteUrl', 'startDate', 'endDate'], 'properties': {'type': {'enum': ['web', 'image', 'video', 'news'], 'type': 'string', 'description': 'Type of search to filter by, such as web, image, video, news'}, 'endDate': {'type': 'string', 'description': 'End date in YYYY-MM-DD format'}, 'siteUrl': {'type': 'string', 'description': 'The site URL as defined in Search Console. Example: sc-domain:example.com (for domain resources) or http://www.example.com/ (for site prefix resources)'}, 'rowLimit': {'type': 'number', 'default': 1000, 'description': 'Maximum number of rows to return'}, 'startDate': {'type': 'string', 'description': 'Start date in YYYY-MM-DD format'}, 'dimensions': {'type': 'string', 'description': 'Comma-separated list of dimensions to break down results by, such as query, page, country, device, searchAppearance'}, 'aggregationType': {'enum': ['auto', 'byNewsShowcasePanel', 'byProperty', 'byPage'], 'type': 'string', 'description': 'Type of aggregation, such as auto, byNewsShowcasePanel, byProperty, byPage'}}, 'additionalProperties': False}}, {'name': 'index_inspect', 'description': 'Inspect a URL to see if it is indexed or can be indexed', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['siteUrl', 'inspectionUrl'], 'properties': {'siteUrl': {'type': 'string', 'description': 'The site URL as defined in Search Console. Example: sc-domain:example.com (for domain resources) or http://www.example.com/ (for site prefix resources)'}, 'languageCode': {'type': 'string', 'default': 'en-US', 'description': 'An IETF BCP-47 language code representing the language of the requested translated issue messages, such as "en-US" or "de-CH". Default is "en-US"'}, 'inspectionUrl': {'type': 'string', 'description': 'The fully-qualified URL to inspect. Must be under the property specified in "siteUrl"'}}, 'additionalProperties': False}}, {'name': 'list_sitemaps', 'description': 'List sitemaps for a site in Google Search Console', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'siteUrl': {'type': 'string', 'description': "The site's URL, including protocol. For example: http://www.example.com/"}, 'sitemapIndex': {'type': 'string', 'description': "A URL of a site's sitemap index. For example: http://www.example.com/sitemapindex.xml"}}, 'additionalProperties': False}}, {'name': 'get_sitemap', 'description': 'Get a sitemap for a site in Google Search Console', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'siteUrl': {'type': 'string', 'description': "The site's URL, including protocol. For example: http://www.example.com/"}, 'feedpath': {'type': 'string', 'description': 'The URL of the actual sitemap. For example: http://www.example.com/sitemap.xml'}}, 'additionalProperties': False}}, {'name': 'submit_sitemap', 'description': 'Submit a sitemap for a site in Google Search Console', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['feedpath', 'siteUrl'], 'properties': {'siteUrl': {'type': 'string', 'description': "The site's URL, including protocol. For example: http://www.example.com/"}, 'feedpath': {'type': 'string', 'description': 'The URL of the sitemap to add. For example: http://www.example.com/sitemap.xml'}}, 'additionalProperties': False}}] |
@ThirdGuard/mcp-etherscan-server | Etherscan Tools | Access Ethereum blockchain data effortlessly. Check balances, view transaction history, track token transfers, and fetch contract ABIs with ease. Enhance your Ethereum interactions with real-time gas prices and ENS name resolution. | 2025-04-11T14:21:02.252Z | 18 | https://smithery.ai/server/@ThirdGuard/mcp-etherscan-server | true | null | {
"scanPassed": true
} | [{'name': 'check-balance', 'description': 'Check the ETH balance of an Ethereum address', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'address': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'Ethereum address (0x format)'}}}}, {'name': 'get-transactions', 'description': 'Get recent transactions for an Ethereum address', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'limit': {'type': 'number', 'maximum': 100, 'minimum': 1, 'description': 'Number of transactions to return (max 100)'}, 'address': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'Ethereum address (0x format)'}}}}, {'name': 'get-token-transfers', 'description': 'Get ERC20 token transfers for an Ethereum address', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'limit': {'type': 'number', 'maximum': 100, 'minimum': 1, 'description': 'Number of transfers to return (max 100)'}, 'address': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'Ethereum address (0x format)'}}}}, {'name': 'get-contract-abi', 'description': 'Get the ABI for a smart contract', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'address': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'Contract address (0x format)'}}}}, {'name': 'get-contract-code', 'description': 'Get the source code for a smart contract', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'address': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'Contract address (0x format)'}}}}, {'name': 'get-gas-prices', 'description': 'Get current gas prices in Gwei', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'get-ens-name', 'description': 'Get the ENS name for an Ethereum address', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'address': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'Ethereum address (0x format)'}}}}] |
@cosimtaiuz/mcp-emails | ClaudePost | Manage your emails effortlessly through natural language conversations. Search, read, and send emails securely with Claude's intuitive interface, enhancing your email experience without the hassle of traditional email clients. | 2025-04-11T22:37:01.975Z | 18 | https://smithery.ai/server/@cosimtaiuz/mcp-emails | true | null | {
"scanPassed": true
} | [{'name': 'search-emails', 'description': 'Search emails within a date range and/or with specific keywords', 'inputSchema': {'type': 'object', 'properties': {'folder': {'enum': ['inbox', 'sent'], 'type': 'string', 'description': "Folder to search in ('inbox' or 'sent', defaults to 'inbox')"}, 'keyword': {'type': 'string', 'description': 'Keyword to search in email subject and body (optional)'}, 'end_date': {'type': 'string', 'description': 'End date in YYYY-MM-DD format (optional)'}, 'start_date': {'type': 'string', 'description': 'Start date in YYYY-MM-DD format (optional)'}}}}, {'name': 'get-email-content', 'description': 'Get the full content of a specific email by its ID', 'inputSchema': {'type': 'object', 'required': ['email_id'], 'properties': {'email_id': {'type': 'string', 'description': 'The ID of the email to retrieve'}}}}, {'name': 'count-daily-emails', 'description': 'Count emails received for each day in a date range', 'inputSchema': {'type': 'object', 'required': ['start_date', 'end_date'], 'properties': {'end_date': {'type': 'string', 'description': 'End date in YYYY-MM-DD format'}, 'start_date': {'type': 'string', 'description': 'Start date in YYYY-MM-DD format'}}}}, {'name': 'send-email', 'description': 'CONFIRMATION STEP: Actually send the email after user confirms the details. Before calling this, first show the email details to the user for confirmation. Required fields: recipients (to), subject, and content. Optional: CC recipients.', 'inputSchema': {'type': 'object', 'required': ['to', 'subject', 'content'], 'properties': {'cc': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of CC recipient email addresses (optional, confirmed)'}, 'to': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of recipient email addresses (confirmed)'}, 'content': {'type': 'string', 'description': 'Confirmed email content'}, 'subject': {'type': 'string', 'description': 'Confirmed email subject'}}}}] |
@ESnark/vite-mcp-server | Vite MCP Server | Connect your Cursor agents to a Vite development server for real-time code modification and live updates. Enhance your development workflow with automated browser integration and visual feedback, making debugging and testing more efficient. | 2025-03-18T07:00:55.108Z | 18 | https://smithery.ai/server/@ESnark/vite-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'how-to-use', 'description': 'Description of how to use the server', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['section'], 'properties': {'section': {'enum': ['checkpoint', 'hmr'], 'type': 'string', 'description': 'Section to describe'}}, 'additionalProperties': False}}, {'name': 'get-hmr-events', 'description': 'Retrieves recent HMR events', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of events to return'}}, 'additionalProperties': False}}, {'name': 'start-browser', 'description': 'Launches a browser instance and navigates to the Vite dev server', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'headless': {'type': 'boolean', 'description': 'Run browser in headless mode'}, 'viteServerUrl': {'type': 'string', 'description': 'URL of the Vite dev server (default: http://localhost:5173)'}}, 'additionalProperties': False}}, {'name': 'capture-screenshot', 'description': 'Captures a screenshot of the current page or a specific element.\nThis feature is for MCP Clients that do not support MCP Resource and image content type.\nIf the image is successfully saved, you should request the user to provide the image.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectRoot'], 'properties': {'url': {'type': 'string', 'description': 'URL to navigate to before capturing screenshot'}, 'selector': {'type': 'string', 'description': 'CSS selector to capture (captures full page if not provided)'}, 'projectRoot': {'type': 'string', 'description': 'Root directory path of the development project'}}, 'additionalProperties': False}}, {'name': 'get-element-properties', 'description': 'Retrieves properties and state information of a specific element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector', 'properties'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector of the element to inspect'}, 'properties': {'type': 'array', 'items': {'type': 'string'}, 'description': "Array of property names to retrieve (e.g., ['value', 'checked', 'textContent'])"}}, 'additionalProperties': False}}, {'name': 'get-element-styles', 'description': 'Retrieves style information of a specific element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector', 'styleProperties'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector of the element to inspect'}, 'styleProperties': {'type': 'array', 'items': {'type': 'string'}, 'description': "Array of style property names to retrieve (e.g., ['color', 'fontSize', 'backgroundColor'])"}}, 'additionalProperties': False}}, {'name': 'get-element-dimensions', 'description': 'Retrieves dimension and position information of a specific element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector of the element to inspect'}}, 'additionalProperties': False}}, {'name': 'monitor-network', 'description': 'Monitors network requests in the browser for a specified duration', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'duration': {'type': 'number', 'description': 'Duration in milliseconds to monitor (default: 5000)'}, 'urlPattern': {'type': 'string', 'description': 'URL pattern to filter (regex string)'}}, 'additionalProperties': False}}, {'name': 'get-element-html', 'description': 'Retrieves the HTML content of a specific element and its children', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector of the element to inspect'}, 'includeOuter': {'type': 'boolean', 'description': "If true, includes the selected element's outer HTML; otherwise returns only inner HTML (default: false)"}}, 'additionalProperties': False}}, {'name': 'get-console-logs', 'description': 'Retrieves console logs from the development server', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'description': 'Number of logs to return, starting from the most recent log'}, 'checkpoint': {'type': 'string', 'description': 'If specified, returns only logs recorded at this checkpoint'}}, 'additionalProperties': False}}, {'name': 'execute-browser-commands', 'description': 'Executes a sequence of predefined browser commands safely. Available commands:\n\n- click: Clicks on an element matching the selector or at specified coordinates\n- type: Types text into an input element\n- wait: Waits for an element, a specified time period, or a condition\n- navigate: Navigates to a specified URL\n- select: Selects an option in a dropdown\n- check: Checks or unchecks a checkbox\n- hover: Hovers over an element\n- focus: Focuses an element\n- blur: Removes focus from an element\n- keypress: Simulates pressing a keyboard key\n- scroll: Scrolls the page or an element\n- getAttribute: Gets an attribute value from an element\n- getProperty: Gets a property value from an element\n- drag: Performs a drag operation from one position to another\n- refresh: Refreshes the current page\n\nNote on coordinates: For all mouse-related commands (click, drag, etc.), coordinates are relative to the browser viewport\nwhere (0,0) is the top-left corner. X increases to the right, Y increases downward.\n\nExamples are available in the schema definition.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['commands'], 'properties': {'timeout': {'type': 'number', 'description': 'Overall timeout in milliseconds (default: 30000)'}, 'commands': {'type': 'array', 'items': {'anyOf': [{'type': 'object', 'required': ['command'], 'properties': {'args': {'type': 'object', 'required': ['y'], 'properties': {'x': {'type': 'number', 'description': 'X coordinate to click (used instead of selector)'}, 'y': {'type': 'number', 'description': 'Y coordinate to click (used instead of selector)'}, 'delay': {'type': 'number', 'description': 'Delay between mousedown and mouseup in ms (default: 0)'}, 'button': {'enum': ['left', 'right', 'middle'], 'type': 'string', 'description': 'Mouse button to use (default: left)'}, 'clickCount': {'type': 'number', 'description': 'Number of clicks (default: 1)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'click'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to click (required unless x,y coordinates are provided)'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'string', 'description': 'Text to type into the element'}, 'delay': {'type': 'number', 'description': 'Delay between keystrokes in ms (default: 0)'}, 'clearFirst': {'type': 'boolean', 'description': 'Whether to clear the input field before typing (default: false)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'type'}, 'selector': {'type': 'string', 'description': 'CSS selector of input element to type into'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command'], 'properties': {'args': {'type': 'object', 'properties': {'time': {'type': 'number', 'description': 'Time to wait in milliseconds (use this or selector)'}, 'timeout': {'type': 'number', 'description': 'Maximum time to wait in ms (default: 5000)'}, 'visible': {'type': 'boolean', 'description': 'Wait for element to be visible (default: true)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'wait'}, 'selector': {'type': 'string', 'description': 'CSS selector to wait for'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'args'], 'properties': {'args': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'URL to navigate to'}, 'waitUntil': {'enum': ['load', 'domcontentloaded', 'networkidle0', 'networkidle2'], 'type': 'string', 'description': 'Navigation wait condition (default: networkidle0)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'navigate'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'args'], 'properties': {'args': {'type': 'object', 'required': ['sourceX', 'sourceY', 'offsetX', 'offsetY'], 'properties': {'steps': {'type': 'number', 'description': 'Number of intermediate steps for smooth drag (default: 10)'}, 'offsetX': {'type': 'number', 'description': 'Horizontal distance to drag (positive for right, negative for left)'}, 'offsetY': {'type': 'number', 'description': 'Vertical distance to drag (positive for down, negative for up)'}, 'sourceX': {'type': 'number', 'description': 'X coordinate to start the drag from (distance from left edge of viewport)'}, 'sourceY': {'type': 'number', 'description': 'Y coordinate to start the drag from (distance from top edge of viewport)'}, 'smoothDrag': {'type': 'boolean', 'description': 'Whether to perform a smooth, gradual drag movement (default: false)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'drag'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector', 'args'], 'properties': {'args': {'type': 'object', 'required': ['value'], 'properties': {'value': {'type': 'string', 'description': 'Value of the option to select'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'select'}, 'selector': {'type': 'string', 'description': 'CSS selector of select element'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'properties': {'checked': {'type': 'boolean', 'description': 'Whether to check or uncheck the box (default: true)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'check'}, 'selector': {'type': 'string', 'description': 'CSS selector of checkbox element'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'properties': {'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'hover'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to hover over'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'properties': {'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'focus'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to focus'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'properties': {'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'blur'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to blur'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'args'], 'properties': {'args': {'type': 'object', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "Key to press (e.g., 'Enter', 'Tab', 'ArrowDown')"}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'keypress'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to target (optional)'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command'], 'properties': {'args': {'type': 'object', 'properties': {'x': {'type': 'number', 'description': 'Horizontal scroll amount in pixels (default: 0)'}, 'y': {'type': 'number', 'description': 'Vertical scroll amount in pixels (default: 0)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'scroll'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to scroll (scrolls page if not provided)'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector', 'args'], 'properties': {'args': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the attribute to retrieve'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'getAttribute'}, 'selector': {'type': 'string', 'description': 'CSS selector of element'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector', 'args'], 'properties': {'args': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the property to retrieve'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'getProperty'}, 'selector': {'type': 'string', 'description': 'CSS selector of element'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command'], 'properties': {'args': {'type': 'object', 'properties': {'waitUntil': {'enum': ['load', 'domcontentloaded', 'networkidle0', 'networkidle2'], 'type': 'string', 'description': 'Navigation wait condition (default: networkidle0)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'refresh'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}]}, 'description': 'Array of commands to execute in sequence'}}, 'additionalProperties': False}}] |
notion_mcp | Notion Integration | An MCP server that integrates with Notion's API to manage personal todo lists. | 2024-12-19T15:56:40.443Z | 18 | https://smithery.ai/server/notion_mcp | true | null | {
"scanPassed": true
} | [{'name': 'add_todo', 'description': 'Add a new todo item', 'inputSchema': {'type': 'object', 'required': ['task', 'when'], 'properties': {'task': {'type': 'string', 'description': 'The todo task description'}, 'when': {'enum': ['today', 'later'], 'type': 'string', 'description': 'When the task should be done (today or later)'}}}}, {'name': 'show_all_todos', 'description': 'Show all todo items from Notion', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'show_today_todos', 'description': "Show today's todo items from Notion", 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'complete_todo', 'description': 'Mark a todo item as complete', 'inputSchema': {'type': 'object', 'required': ['task_id'], 'properties': {'task_id': {'type': 'string', 'description': 'The ID of the todo task to mark as complete'}}}}] |
@TKelvyn/mcp | mcp max | MCP to interact with a fell process like gmail, whatsapp and others | 2025-04-09T22:07:42.519Z | 18 | https://smithery.ai/server/@TKelvyn/mcp | true | null | {
"scanPassed": true
} | [{'name': 'fetch_emails_tool', 'description': ' Tool para buscar emails via IMAP com filtros ', 'inputSchema': {'type': 'object', 'title': 'fetch_emails_toolArguments', 'required': ['remetente', 'senha'], 'properties': {'senha': {'type': 'string', 'title': 'Senha'}, 'data_fim': {'type': 'string', 'title': 'Data Fim', 'default': None}, 'palavras': {'type': 'string', 'title': 'Palavras', 'default': None}, 'remetente': {'type': 'string', 'title': 'Remetente'}, 'quantidade': {'type': 'integer', 'title': 'Quantidade', 'default': 10}, 'data_inicio': {'type': 'string', 'title': 'Data Inicio', 'default': None}, 'remetente_filtro': {'type': 'string', 'title': 'Remetente Filtro', 'default': None}}}}, {'name': 'send_email_tool', 'description': ' Tool para enviar email via SMTP ', 'inputSchema': {'type': 'object', 'title': 'send_email_toolArguments', 'required': ['remetente', 'senha', 'destinatario', 'assunto', 'corpo'], 'properties': {'corpo': {'type': 'string', 'title': 'Corpo'}, 'senha': {'type': 'string', 'title': 'Senha'}, 'assunto': {'type': 'string', 'title': 'Assunto'}, 'remetente': {'type': 'string', 'title': 'Remetente'}, 'destinatario': {'type': 'string', 'title': 'Destinatario'}}}}] |
@fengin/image-gen-server | Image-Gen-Server | Generate images from text descriptions seamlessly integrated with Cursor IDE. Create and save images effortlessly, providing multiple options for your creative needs. | 2025-03-09T16:01:12.615Z | 17 | https://smithery.ai/server/@fengin/image-gen-server | true | null | {
"scanPassed": true
} | [{'name': 'use_description', 'description': '列出所有可用的工具及其参数', 'inputSchema': {'type': 'object', 'title': 'list_toolsArguments', 'properties': {}}}, {'name': 'generate_image', 'description': '根据文本描述生成图片\n \n Args:\n prompt: 图片的文本prompt描述,800字符长度限制,一个汉字算一个字符长度\n file_name: 生成图片的文件名,含后辍名(不含路径,如果没有后缀则默认使用.jpg)\n save_folder: 图片保存绝对地址目录(必选)\n sample_strength: 生成图片的精细度(可选,范围0-1,默认0.5)\n width: 生成图片的宽度(可选,默认1024,最大1024)\n height: 生成图片的高度(可选,默认1024,最大1024)\n \n Returns:\n List: 包含生成结果的JSON字符串\n ', 'inputSchema': {'type': 'object', 'title': 'generate_imageArguments', 'required': ['prompt', 'file_name', 'save_folder'], 'properties': {'width': {'type': 'integer', 'title': 'Width', 'default': 1024}, 'height': {'type': 'integer', 'title': 'Height', 'default': 1024}, 'prompt': {'type': 'string', 'title': 'Prompt'}, 'file_name': {'type': 'string', 'title': 'File Name'}, 'save_folder': {'type': 'string', 'title': 'Save Folder'}, 'sample_strength': {'type': 'number', 'title': 'Sample Strength', 'default': 0.5}}}}] |
@seanlee10/server-youtube-transcription | YouTube Transcription Server | Transcribe YouTube videos effortlessly with this server. Leverage the power of MCP to integrate transcription capabilities into your applications. Enhance your projects by adding accurate and fast video transcriptions from YouTube content. | 2025-03-25T00:34:19.488Z | 17 | https://smithery.ai/server/@seanlee10/server-youtube-transcription | true | null | {
"scanPassed": true
} | [{'name': 'youtube_transcription', 'description': 'Extracts transcription from a Youtube video provided by the user', 'inputSchema': {'type': 'object', 'required': ['link'], 'properties': {'link': {'type': 'string', 'description': 'Youtube video link'}}}}] |
@ropon/mcp-gitee | Gitee MCP Server | Interact with Gitee's API to manage repositories, issues, and pull requests seamlessly. Automate your workflow by leveraging AI assistants to handle tasks like creating issues and pull requests efficiently. Enhance your development process with easy configuration and powerful tools for Gitee operations. | 2025-03-31T01:11:58.454Z | 17 | https://smithery.ai/server/@ropon/mcp-gitee | true | null | {
"scanPassed": true
} | [{'name': 'comment_issue', 'description': 'Create a comment on a repository issue', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'number', 'body'], 'properties': {'body': {'type': 'string', 'description': 'The contents of the comment'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'number': {'type': 'string', 'description': 'Issue number (case sensitive, no # prefix needed)'}}}}, {'name': 'comment_pull', 'description': 'Create a comment on a pull request', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'number', 'body'], 'properties': {'body': {'type': 'string', 'description': 'The contents of the comment'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'number': {'type': 'number', 'description': 'The number of the pull request, must be an integer, not a float'}}}}, {'name': 'create_enterprise_repo', 'description': 'Create a enterprise repository', 'inputSchema': {'type': 'object', 'required': ['name', 'enterprise'], 'properties': {'name': {'type': 'string', 'description': 'Repository name'}, 'path': {'type': 'string', 'description': 'Repository path'}, 'private': {'type': 'boolean', 'default': True, 'description': 'Whether the repository is private'}, 'homepage': {'type': 'string', 'description': 'Repository homepage'}, 'auto_init': {'type': 'boolean', 'default': False, 'description': 'Whether to initialize the repository with a README file'}, 'enterprise': {'type': 'string', 'description': 'Enterprise path'}, 'description': {'type': 'string', 'description': 'Repository description'}}}}, {'name': 'create_issue', 'description': 'Create an issue', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'title'], 'properties': {'body': {'type': 'string', 'description': 'The description of the issue'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'title': {'type': 'string', 'description': 'The title of the issue'}, 'labels': {'type': 'string', 'description': 'Comma-separated labels, name requirements are between 2-20 in length and non-special characters. Example: bug,performance'}, 'program': {'type': 'string', 'description': 'Project ID'}, 'assignee': {'type': 'string', 'description': 'The personal space address of the issue assignee'}, 'milestone': {'type': 'string', 'description': 'The milestone number'}, 'issue_type': {'type': 'string', 'description': "Enterprise custom task type, non-enterprise users must consider it as 'task'"}, 'collaborators': {'type': 'string', 'description': 'The personal space addresses of issue collaborators, separated by commas'}}}}, {'name': 'create_org_repo', 'description': 'Create a org repository', 'inputSchema': {'type': 'object', 'required': ['name', 'org'], 'properties': {'org': {'type': 'string', 'description': 'Org path'}, 'name': {'type': 'string', 'description': 'Repository name'}, 'path': {'type': 'string', 'description': 'Repository path'}, 'private': {'type': 'boolean', 'default': True, 'description': 'Whether the repository is private'}, 'homepage': {'type': 'string', 'description': 'Repository homepage'}, 'auto_init': {'type': 'boolean', 'default': False, 'description': 'Whether to initialize the repository with a README file'}, 'description': {'type': 'string', 'description': 'Repository description'}}}}, {'name': 'create_pull', 'description': 'Create a pull request', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'title', 'head', 'base'], 'properties': {'base': {'type': 'string', 'description': 'The target branch of the pull request'}, 'body': {'type': 'string', 'description': 'The body of the pull request'}, 'head': {'type': 'string', 'description': 'The source branch of the pull request'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'draft': {'type': 'boolean', 'description': 'Whether to set the pull request as draft'}, 'issue': {'type': 'string', 'description': 'The issue of the pull request'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'title': {'type': 'string', 'description': 'The title of the pull request'}, 'labels': {'type': 'string', 'description': 'The labels of the pull request. example: bug,performance'}, 'testers': {'type': 'string', 'description': 'The testers of the pull request, example: (username1,username2)'}, 'assignees': {'type': 'string', 'description': 'The assignees of the pull request, example: (username1,username2)'}, 'testers_number': {'type': 'number', 'description': 'The min number of testers need accept of the pull request'}, 'assignees_number': {'type': 'number', 'description': 'The min number of assignees need accept of the pull request'}, 'milestone_number': {'type': 'string', 'description': 'The milestone number of the pull request'}}}}, {'name': 'create_release', 'description': 'Create a release', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'tag_name', 'name', 'body'], 'properties': {'body': {'type': 'string', 'description': 'The description of the release'}, 'name': {'type': 'string', 'description': 'The name of the release'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'tag_name': {'type': 'string', 'description': 'The name of the tag'}, 'prerelease': {'type': 'boolean', 'default': False, 'description': 'Whether the release is a prerelease'}, 'target_commitish': {'type': 'string', 'description': 'The branch name or commit SHA'}}}}, {'name': 'create_user_repo', 'description': 'Create a user repository', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Repository name'}, 'path': {'type': 'string', 'description': 'Repository path'}, 'private': {'type': 'boolean', 'default': True, 'description': 'Whether the repository is private'}, 'homepage': {'type': 'string', 'description': 'Repository homepage'}, 'auto_init': {'type': 'boolean', 'default': False, 'description': 'Whether to initialize the repository with a README file'}, 'description': {'type': 'string', 'description': 'Repository description'}}}}, {'name': 'get_file_content', 'description': 'Get the content of the specified file in the repository', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'path'], 'properties': {'ref': {'type': 'string', 'description': 'The branch name or commit ID'}, 'path': {'type': 'string', 'description': 'The path of the file'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}}}}, {'name': 'get_pull_detail', 'description': 'Get a pull request detail', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'number'], 'properties': {'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'number': {'type': 'number', 'description': 'The number of the pull request, must be an integer, not a float'}}}}, {'name': 'get_repo_issue_detail', 'description': 'Get the detail of an issue', 'inputSchema': {'type': 'object', 'required': ['number', 'owner', 'repo'], 'properties': {'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'number': {'type': 'string', 'description': 'Issue number (case sensitive, no # prefix needed)'}}}}, {'name': 'get_user_info', 'description': 'This is a tool from the gitee MCP server.\nGet information about the authenticated user', 'inputSchema': {'type': 'object'}}, {'name': 'list_issue_comments', 'description': 'Get all comments for a repository issue', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'number'], 'properties': {'page': {'type': 'number', 'default': 1, 'description': 'Current page number'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'order': {'type': 'string', 'default': 'asc', 'description': 'Sort direction: asc(default), desc'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'since': {'type': 'string', 'description': 'Only comments updated at or after this time are returned. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ'}, 'number': {'type': 'string', 'description': 'Issue number (case sensitive, no # prefix needed)'}, 'per_page': {'type': 'number', 'default': 20, 'description': 'Number of results per page, maximum 100'}}}}, {'name': 'list_pull_comments', 'description': 'List all comments for a pull request', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'number'], 'properties': {'page': {'type': 'number', 'default': 1, 'description': 'Current page number'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'order': {'type': 'string', 'default': 'asc', 'description': 'Sort direction: asc(default), desc'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'since': {'type': 'string', 'description': 'Only comments updated at or after this time are returned. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ'}, 'number': {'type': 'number', 'description': 'The number of the pull request, must be an integer, not a float'}, 'per_page': {'type': 'number', 'default': 20, 'description': 'Number of results per page, maximum 100'}}}}, {'name': 'list_releases', 'description': 'List repository releases', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo'], 'properties': {'page': {'type': 'number', 'default': 1, 'description': 'Current page number'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'per_page': {'type': 'number', 'default': 20, 'description': 'Number of results per page, maximum 100'}, 'direction': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'Optional. Ascending/descending. Not filled in is ascending'}}}}, {'name': 'list_repo_issues', 'description': 'List all issues in a repository', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo'], 'properties': {'q': {'type': 'string', 'description': 'Search keywords'}, 'page': {'type': 'number', 'default': 1, 'description': 'Current page number'}, 'repo': {'type': 'string', 'description': 'Repository path'}, 'sort': {'enum': ['created', 'updated'], 'type': 'string', 'description': 'Sort field: creation time (created), update time (updated). Default: created'}, 'owner': {'type': 'string', 'description': "Repository owner's namespace (enterprise, organization or personal path)"}, 'since': {'type': 'string', 'description': 'Start update time in ISO 8601 format'}, 'state': {'enum': ['open', 'progressing', 'closed', 'rejected', 'all'], 'type': 'string', 'description': 'Issue state: open, progressing, closed, rejected'}, 'filter': {'enum': ['assigned', 'created', 'all'], 'type': 'string', 'description': 'Filter parameter: assigned to authorized user (assigned), created by authorized user (created), all issues involving authorized user (all). Default: assigned'}, 'labels': {'type': 'string', 'description': 'Comma-separated labels. Example: bug,performance'}, 'deadline': {'type': 'string', 'description': 'Planned completion date in format: 2006-01-02T15:04:05Z'}, 'per_page': {'type': 'number', 'default': 20, 'description': 'Number of items per page, maximum 100'}, 'schedule': {'type': 'string', 'description': 'Planned start date in format: 2006-01-02T15:04:05Z'}, 'direction': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'Sort direction: ascending (asc) or descending (desc)'}, 'created_at': {'type': 'string', 'description': 'Issue creation time in format: 2006-01-02T15:04:05Z'}, 'finished_at': {'type': 'string', 'description': 'Issue completion time in format: 2006-01-02T15:04:05Z'}}}}, {'name': 'list_repo_pulls', 'description': 'List repository pulls', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo'], 'properties': {'base': {'type': 'string', 'description': 'Target branch name for the pull request'}, 'head': {'type': 'string', 'description': 'Source branch of the PR. Format: branch or username:branch'}, 'page': {'type': 'number', 'default': 1, 'description': 'Current page number'}, 'repo': {'type': 'string', 'description': 'Repository namespace'}, 'sort': {'enum': ['created', 'updated', 'popularity', 'long-running'], 'type': 'string', 'description': 'Sort field, default by creation time'}, 'owner': {'type': 'string', 'description': "Repository owner's namespace"}, 'since': {'type': 'string', 'description': 'Start update time in ISO 8601 format'}, 'state': {'enum': ['open', 'closed', 'merged', 'all'], 'type': 'string', 'description': 'State of the pull request'}, 'author': {'type': 'string', 'description': "PR creator's username"}, 'labels': {'type': 'string', 'description': 'Comma-separated labels, e.g.: bug,performance'}, 'tester': {'type': 'string', 'description': "Tester's username"}, 'assignee': {'type': 'string', 'description': "Reviewer's username"}, 'per_page': {'type': 'number', 'default': 20, 'description': 'Items per page (max 100)'}, 'direction': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'Ascending/descending order'}, 'milestone_number': {'type': 'number', 'description': 'Milestone number (ID)'}}}}, {'name': 'list_user_notifications', 'description': 'List all notifications for authorized user', 'inputSchema': {'type': 'object', 'properties': {'page': {'type': 'number', 'default': 1, 'description': 'Page number'}, 'type': {'enum': ['all', 'event', 'referer'], 'type': 'string', 'default': 'all', 'description': 'Filter notifications of a specified type, all: all, event: event notification, referer: @ notification'}, 'since': {'type': 'string', 'description': 'Only list notifications updated after the given time, requiring the time format to be ISO 8601'}, 'before': {'type': 'string', 'description': 'Only list notifications updated before the given time, requiring the time format to be ISO 8601'}, 'unread': {'type': 'boolean', 'default': False, 'description': 'Only list unread notifications'}, 'per_page': {'type': 'number', 'default': 20, 'description': 'Number of results per page'}, 'participating': {'type': 'boolean', 'default': False, 'description': 'Only list notifications where the user is directly participating or mentioned'}}}}, {'name': 'list_user_repos', 'description': 'List user authorized repositories', 'inputSchema': {'type': 'object', 'properties': {'q': {'type': 'string', 'description': 'Search keywords'}, 'page': {'type': 'number', 'default': 1, 'description': 'Page number'}, 'sort': {'enum': ['created', 'updated', 'pushed', 'full_name'], 'type': 'string', 'default': 'full_name', 'description': 'Sorting method: creation time (created), update time (updated), last push time (pushed), warehouse ownership and name (full_name). Default: full_name'}, 'type': {'enum': ['all', 'owner', 'personal', 'member', 'public', 'private'], 'type': 'string', 'description': 'Filter user repositories: their creation (owner), personal (personal), their membership (member), public (public), private (private), cannot be used together with visibility or affiliation parameters, otherwise a 422 error will be reported'}, 'per_page': {'type': 'number', 'default': 20, 'description': 'Number of results per page'}, 'direction': {'enum': ['asc', 'desc'], 'type': 'string', 'default': 'asc', 'description': 'Sorting direction: ascending (asc), descending (desc). Default: asc'}, 'visibility': {'enum': ['public', 'private', 'all'], 'type': 'string', 'description': 'Visibility of repository'}, 'affiliation': {'enum': ['owner', 'collaborator', 'organization_member', 'enterprise_member', 'admin'], 'type': 'string', 'description': 'Affiliation between user and repository'}}}}, {'name': 'merge_pull', 'description': 'Merge a pull request', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'number'], 'properties': {'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'title': {'type': 'string', 'description': 'The title of the merge commit'}, 'number': {'type': 'number', 'description': 'The number of the pull request'}, 'description': {'type': 'string', 'description': 'The description of the merge commit'}, 'merge_method': {'enum': ['merge', 'squash', 'rebase'], 'type': 'string', 'default': 'merge', 'description': 'The merge method to use'}, 'close_related_issue': {'type': 'boolean', 'description': 'Whether to close the related issue after merging'}, 'prune_source_branch': {'type': 'boolean', 'description': 'Whether to delete the source branch after merging'}}}}, {'name': 'update_issue', 'description': 'Update an issue', 'inputSchema': {'type': 'object', 'required': ['number', 'owner', 'repo', 'title'], 'properties': {'body': {'type': 'string', 'description': 'The description of the issue'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'state': {'enum': ['open', 'progressing', 'closed'], 'type': 'string', 'description': 'The state of the issue'}, 'title': {'type': 'string', 'description': 'The title of the issue'}, 'labels': {'type': 'string', 'description': 'Comma-separated labels, name requirements are between 2-20 in length and non-special characters. Example: bug,performance'}, 'number': {'type': 'string', 'description': 'The number of the issue'}, 'program': {'type': 'string', 'description': 'Project ID'}, 'assignee': {'type': 'string', 'description': 'The personal space address of the issue assignee'}, 'milestone': {'type': 'string', 'description': 'The milestone number'}, 'issue_type': {'type': 'string', 'description': "Enterprise custom task type, non-enterprise users must consider it as 'task'"}, 'collaborators': {'type': 'string', 'description': 'The personal space addresses of issue collaborators, separated by commas'}}}}, {'name': 'update_pull', 'description': 'Update a pull request', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'number'], 'properties': {'body': {'type': 'string', 'description': 'The body of the pull request'}, 'repo': {'type': 'string', 'description': 'The path of the repository'}, 'draft': {'type': 'boolean', 'description': 'Whether to set the pull request as draft'}, 'issue': {'type': 'string', 'description': 'The issue of the pull request'}, 'owner': {'type': 'string', 'description': 'The space address to which the repository belongs (the address path of the enterprise, organization or individual)'}, 'state': {'enum': ['closed', 'open'], 'type': 'string', 'description': 'The state of the pull request'}, 'title': {'type': 'string', 'description': 'The title of the pull request'}, 'labels': {'type': 'string', 'description': 'The labels of the pull request. example: bug,performance'}, 'number': {'type': 'number', 'description': 'The number of the pull request'}, 'testers': {'type': 'string', 'description': 'The testers of the pull request, example: (username1,username2)'}, 'assignees': {'type': 'string', 'description': 'The assignees of the pull request, example: (username1,username2)'}, 'testers_number': {'type': 'number', 'description': 'The min number of testers need accept of the pull request'}, 'assignees_number': {'type': 'number', 'description': 'The min number of assignees need accept of the pull request'}, 'milestone_number': {'type': 'string', 'description': 'The milestone number of the pull request'}}}}] |
@gregkop/sketchfab-mcp-server | Sketchfab 3D Model Explorer | Search, view details, and download 3D models from Sketchfab directly through your LLM interface. Easily find models using keywords, tags, and categories, and download them in multiple formats to enhance your creative projects. Integrate seamlessly with Claude or Cursor for an interactive 3D asset experience. | 2025-04-22T15:00:31.784Z | 17 | https://smithery.ai/server/@gregkop/sketchfab-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'sample-tool', 'description': 'A sample tool for demonstration purposes', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['input'], 'properties': {'input': {'type': 'string', 'description': 'Input parameter for the sample tool'}}, 'additionalProperties': False}}, {'name': 'sketchfab-search', 'description': 'Search for 3D models on Sketchfab based on keywords and filters', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by specific tags (e.g., ["animated", "rigged", "pbr"])'}, 'limit': {'type': 'number', 'description': 'Maximum number of results to return (1-24, default: 10)'}, 'query': {'type': 'string', 'description': 'Text search query (e.g., "car", "house", "character") to find relevant models'}, 'categories': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by categories (e.g., ["characters", "architecture", "vehicles"])'}, 'downloadable': {'type': 'boolean', 'description': 'Set to true to show only downloadable models, false to show all models'}}, 'additionalProperties': False}}, {'name': 'sketchfab-model-details', 'description': 'Get detailed information about a specific Sketchfab model', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['modelId'], 'properties': {'modelId': {'type': 'string', 'description': 'The unique ID of the Sketchfab model (found in URLs or search results)'}}, 'additionalProperties': False}}, {'name': 'sketchfab-download', 'description': 'Download a 3D model from Sketchfab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['modelId'], 'properties': {'format': {'enum': ['gltf', 'glb', 'usdz', 'source'], 'type': 'string', 'description': 'Preferred format to download the model in (defaults to gltf if available)'}, 'modelId': {'type': 'string', 'description': 'The unique ID of the Sketchfab model to download (must be downloadable)'}, 'outputPath': {'type': 'string', 'description': 'Local directory or file path to save the downloaded file (will use temp directory if not specified)'}}, 'additionalProperties': False}}] |
@mcp-get-community/server-llm-txt | LLM.txt MCP Server | A Model Context Protocol (MCP) server that processes llm.txt files, offering directory listing, content retrieval, and multi-query search capabilities. It supports local caching and various OS-specific cache locations. | 2024-12-13T15:46:53.334Z | 17 | https://smithery.ai/server/@mcp-get-community/server-llm-txt | true | null | {
"scanPassed": true
} | [{'name': 'get_llm_txt', 'description': 'Fetch an LLM.txt file from a given URL. Format your response in beautiful markdown.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'The ID of the LLM.txt file to fetch. Must be obtained first using the list_llm_txt command.'}, 'page': {'type': 'number', 'default': 1, 'description': 'Page number to fetch, starting from 1. Each page contains a fixed number of characters.'}}, 'additionalProperties': False}}, {'name': 'list_llm_txt', 'description': 'List available LLM.txt files from the directory. Use this first before fetching a specific LLM.txt file. Format your response in beautiful markdown.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'search_llm_txt', 'description': 'Search for multiple substrings in an LLM.txt file. Requires a valid ID obtained from list_llm_txt command. Returns snippets with page numbers for each match. Format your response in beautiful markdown, using code blocks for snippets.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id', 'queries'], 'properties': {'id': {'type': 'number', 'description': 'The ID of the LLM.txt file to search in. Must be obtained first using the list_llm_txt command.'}, 'queries': {'type': 'array', 'items': {'type': 'string'}, 'minItems': 1, 'description': 'Array of substrings to search for. Each query is searched case-insensitively. At least one query is required.'}, 'context_lines': {'type': 'number', 'default': 2, 'description': 'Number of lines to show before and after each match for context. Defaults to 2 lines.'}}, 'additionalProperties': False}}] |
@FelippeFarias/refine-prompt | Refine Prompt | Transform ordinary prompts into powerful, structured instructions for any large language model. Enhance your AI interactions by refining your prompts for better understanding and response quality. Unlock the full potential of AI with expertly engineered prompts tailored to your needs. | 2025-04-02T23:39:29.777Z | 17 | https://smithery.ai/server/@FelippeFarias/refine-prompt | true | null | {
"scanPassed": true
} | [{'name': 'refine_prompt', 'description': "This tool MUST be used whenever a user asks to refine, rewrite, improve, enhance, or optimize a prompt. It transforms raw prompts into more effective versions that are clearer, more detailed, and better structured to improve results from Large Language Models (LLMs). When users mention 'refine prompt' or similar phrases, use this tool.", 'inputSchema': {'type': 'object', 'title': 'refine_prompt_Arguments', 'required': ['prompt'], 'properties': {'prompt': {'type': 'string', 'description': 'The raw user prompt that needs rewriting.'}, 'language': {'type': 'string', 'description': 'Optional: The primary programming language if the prompt is code-related (e.g., typescript, python). Helps tailor coding prompts.'}}}}] |
@falahgs/brave-gemini-research-mcp-server | Brave-Gemini Research | Enable AI assistants to perform web searches and analyze research papers seamlessly. Leverage the power of Brave Search and Google's Gemini model for enhanced information retrieval and academic analysis. | 2025-04-13T12:55:17.252Z | 17 | https://smithery.ai/server/@falahgs/brave-gemini-research-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'brave_web_search', 'description': 'Performs a web search using the Brave Search API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports pagination, content filtering, and freshness controls. Maximum 20 results per request, with offset for pagination. ', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'count': {'type': 'number', 'default': 10, 'description': 'Number of results (1-20, default 10)'}, 'query': {'type': 'string', 'description': 'Search query (max 400 chars, 50 words)'}, 'offset': {'type': 'number', 'default': 0, 'description': 'Pagination offset (max 9, default 0)'}}}}, {'name': 'brave_local_search', 'description': "Searches for local businesses and places using Brave's Local Search API. Best for queries related to physical locations, businesses, restaurants, services, etc. Returns detailed information including:\n- Business names and addresses\n- Ratings and review counts\n- Phone numbers and opening hours\nUse this when the query implies 'near me' or mentions specific locations. Automatically falls back to web search if no local results are found.", 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'count': {'type': 'number', 'default': 5, 'description': 'Number of results (1-20, default 5)'}, 'query': {'type': 'string', 'description': "Local search query (e.g. 'pizza near Central Park')"}}}}, {'name': 'gemini_research_paper_analysis', 'description': "Performs in-depth analysis of research papers using Google's Gemini-1.5-flash model. Ideal for academic research, literature reviews, and deep understanding of scientific papers. Can extract key findings, provide critical evaluation, summarize complex research, and place papers within the broader research landscape. Best for long-form academic content that requires expert analysis.", 'inputSchema': {'type': 'object', 'required': ['paperContent'], 'properties': {'analysisType': {'enum': ['summary', 'critique', 'literature review', 'key findings', 'comprehensive'], 'type': 'string', 'default': 'comprehensive', 'description': 'Type of analysis to perform (summary, critique, literature review, key findings, or comprehensive)'}, 'paperContent': {'type': 'string', 'description': 'The full text of the research paper to analyze'}, 'additionalContext': {'type': 'string', 'description': 'Optional additional context or specific questions to guide the analysis'}}}}] |
@imprvhub/mcp-claude-spotify | Claude Spotify Integration | Enable seamless interaction with Spotify through Claude Desktop by providing authentication, search, playback control, playlist management, and personalized recommendations. Enhance your music experience by controlling Spotify directly from your LLM environment. Easily access your top tracks and manage your Spotify library with intuitive commands. | 2025-04-20T06:01:29.522Z | 17 | https://smithery.ai/server/@imprvhub/mcp-claude-spotify | true | {
"scanPassed": true
} | [{'name': 'auth-spotify', 'description': 'Authenticate with Spotify', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'search-spotify', 'description': 'Search for tracks, albums, artists, or playlists on Spotify', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'type': {'enum': ['track', 'album', 'artist', 'playlist'], 'type': 'string', 'description': 'Type of item to search for (default: track)'}, 'limit': {'type': 'number', 'description': 'Maximum number of results to return (1-50, default: 10)'}, 'query': {'type': 'string', 'description': 'Search query'}}}}, {'name': 'get-current-playback', 'description': "Get information about the user's current playback state", 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'play-track', 'description': 'Play a specific track on an active device', 'inputSchema': {'type': 'object', 'required': ['trackId'], 'properties': {'trackId': {'type': 'string', 'description': 'Spotify ID of the track to play'}, 'deviceId': {'type': 'string', 'description': 'Spotify ID of the device to play on (optional)'}}}}, {'name': 'pause-playback', 'description': "Pause the user's playback", 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'next-track', 'description': 'Skip to the next track', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'previous-track', 'description': 'Skip to the previous track', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'get-user-playlists', 'description': "Get a list of the user's playlists", 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'create-playlist', 'description': 'Create a new playlist for the current user', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the playlist'}, 'public': {'type': 'boolean', 'description': 'Whether the playlist should be public (default: false)'}, 'description': {'type': 'string', 'description': 'Description of the playlist (optional)'}}}}, {'name': 'add-tracks-to-playlist', 'description': 'Add tracks to a playlist', 'inputSchema': {'type': 'object', 'required': ['playlistId', 'trackIds'], 'properties': {'trackIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of Spotify track IDs to add'}, 'playlistId': {'type': 'string', 'description': 'Spotify ID of the playlist'}}}}, {'name': 'get-recommendations', 'description': 'Get track recommendations based on seeds', 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of tracks to return (1-100, default: 20)'}, 'seedGenres': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of genre names to use as seeds (optional)'}, 'seedTracks': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of Spotify track IDs to use as seeds (optional)'}, 'seedArtists': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of Spotify artist IDs to use as seeds (optional)'}}}}, {'name': 'get-top-tracks', 'description': "Get the user's top played tracks over a specified time range", 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'The number of tracks to return (1-50, default: 20)'}, 'offset': {'type': 'number', 'description': 'The index of the first track to return (default: 0)'}, 'time_range': {'enum': ['short_term', 'medium_term', 'long_term'], 'type': 'string', 'description': 'Over what time frame the affinities are computed. short_term = ~4 weeks, medium_term = ~6 months, long_term = several years (default: medium_term)'}}}}] |
|
@pccassin/food-remote-mcp | iFood Remote Server | Search for restaurants effortlessly and access detailed information in real-time. Integrate seamlessly with iFood's API to enhance your applications with restaurant data. Start building your restaurant search features today! | 2025-04-07T14:26:54.662Z | 17 | https://smithery.ai/server/@pccassin/food-remote-mcp | true | null | {
"scanPassed": true
} | [{'name': 'list_tools', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get_restaurants', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['term'], 'properties': {'term': {'type': 'string'}}, 'additionalProperties': False}}] |
@qianniuspace/mcp-sentry | MCP-Sentry | Retrieve and analyze issues from Sentry.io to enhance your debugging process. Inspect error reports, stack traces, and other critical information seamlessly. Streamline your error management workflow with easy access to detailed issue insights. | 2025-03-06T13:13:45.032Z | 16 | https://smithery.ai/server/@qianniuspace/mcp-sentry | true | null | {
"scanPassed": true
} | [{'name': 'get_sentry_issue', 'description': 'Retrieve and analyze a Sentry issue by ID or URL. Use this tool when you need to:\n - Investigate production errors and crashes\n - Access detailed stacktraces from Sentry\n - Analyze error patterns and frequencies\n - Get information about when issues first/last occurred\n - Review error counts and status', 'inputSchema': {'type': 'object', 'required': ['issue_id_or_url'], 'properties': {'issue_id_or_url': {'type': 'string', 'description': 'Sentry issue ID or URL to analyze'}}}}, {'name': 'get_list_issues', 'description': 'Retrieve and analyze Sentry issues by project slug. Use this tool when you need to:\n - Investigate production errors and crashes\n - Access detailed stacktraces from Sentry\n - Analyze error patterns and frequencies\n - Get information about when issues first/last occurred\n - Review error counts and status', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'project_slug': {'type': 'string', 'description': 'Sentry project slug to analyze'}, 'organization_slug': {'type': 'string', 'description': 'Sentry organization slug to analyze'}}}}] |
@dfkai/xtquantai | XTQuantAI | Integrate AI with the XTQuant quantitative trading platform to access and manipulate trading data seamlessly. Leverage advanced data querying, market data retrieval, and visualization capabilities to enhance your trading strategies. Start making informed trading decisions with AI assistance today! | 2025-03-11T12:00:46.675Z | 16 | https://smithery.ai/server/@dfkai/xtquantai | true | null | {
"scanPassed": true
} | [{'name': 'get_trading_dates', 'description': '获取指定市场的交易日期列表', 'inputSchema': {'type': 'object', 'properties': {'market': {'type': 'string', 'default': 'SH', 'description': '市场代码,例如 SH 表示上海市场'}}}}, {'name': 'get_stock_list', 'description': '获取指定板块的股票列表', 'inputSchema': {'type': 'object', 'properties': {'sector': {'type': 'string', 'default': '沪深A股', 'description': '板块名称,例如 沪深A股'}}}}, {'name': 'get_instrument_detail', 'description': '获取指定股票的详细信息', 'inputSchema': {'type': 'object', 'required': ['code'], 'properties': {'code': {'type': 'string', 'description': '股票代码,例如 000001.SZ'}, 'iscomplete': {'type': 'boolean', 'default': False, 'description': '是否获取全部字段,默认为False'}}}}, {'name': 'get_history_market_data', 'description': '获取历史行情数据', 'inputSchema': {'type': 'object', 'required': ['codes'], 'properties': {'codes': {'type': 'string', 'description': '股票代码列表,用逗号分隔,例如 "000001.SZ,600519.SH"'}, 'fields': {'type': 'string', 'default': '', 'description': '字段列表,用逗号分隔,为空表示所有字段'}, 'period': {'type': 'string', 'default': '1d', 'description': '周期,例如 "1d", "1m", "5m" 等'}, 'end_date': {'type': 'string', 'default': '', 'description': '结束日期,格式为 "YYYYMMDD",为空表示当前日期'}, 'start_date': {'type': 'string', 'default': '', 'description': '开始日期,格式为 "YYYYMMDD"'}}}}, {'name': 'get_latest_market_data', 'description': '获取最新行情数据', 'inputSchema': {'type': 'object', 'required': ['codes'], 'properties': {'codes': {'type': 'string', 'description': '股票代码列表,用逗号分隔,例如 "000001.SZ,600519.SH"'}, 'period': {'type': 'string', 'default': '1d', 'description': '周期,例如 "1d", "1m", "5m" 等'}}}}, {'name': 'get_full_market_data', 'description': '获取历史+最新行情数据', 'inputSchema': {'type': 'object', 'required': ['codes'], 'properties': {'codes': {'type': 'string', 'description': '股票代码列表,用逗号分隔,例如 "000001.SZ,600519.SH"'}, 'fields': {'type': 'string', 'default': '', 'description': '字段列表,用逗号分隔,为空表示所有字段'}, 'period': {'type': 'string', 'default': '1d', 'description': '周期,例如 "1d", "1m", "5m" 等'}, 'end_date': {'type': 'string', 'default': '', 'description': '结束日期,格式为 "YYYYMMDD",为空表示当前日期'}, 'start_date': {'type': 'string', 'default': '', 'description': '开始日期,格式为 "YYYYMMDD"'}}}}, {'name': 'create_chart_panel', 'description': '创建图表面板,显示指定股票的技术指标', 'inputSchema': {'type': 'object', 'required': ['codes'], 'properties': {'codes': {'type': 'string', 'description': '股票代码列表,用逗号分隔,例如 000001.SZ,600519.SH'}, 'params': {'type': 'string', 'default': '5,10,20', 'description': '指标参数,用逗号分隔,例如 5,10,20'}, 'period': {'type': 'string', 'default': '1d', 'description': '周期,例如 1d, 1m, 5m 等'}, 'indicators': {'type': 'string', 'default': 'ma', 'description': '指标名称,例如 ma, macd, kdj 等'}}}}, {'name': 'create_custom_layout', 'description': '创建自定义布局,可以指定指标名称、参数名和参数值', 'inputSchema': {'type': 'object', 'required': ['codes'], 'properties': {'codes': {'type': 'string', 'description': '股票代码列表,用逗号分隔,例如 000001.SZ,600519.SH'}, 'period': {'type': 'string', 'default': '1d', 'description': '周期,例如 1d, 1m, 5m 等'}, 'param_names': {'type': 'string', 'default': 'n1,n2,n3', 'description': '参数名称,用逗号分隔,例如 n1,n2,n3 或 short,long,mid'}, 'param_values': {'type': 'string', 'default': '5,10,20', 'description': '参数值,用逗号分隔,例如 5,10,20'}, 'indicator_name': {'type': 'string', 'default': 'ma', 'description': '指标名称,例如 ma, macd, kdj 等'}}}}] |
@davidorex/git-file-forensics | Git File Forensics | Analyze individual file histories and changes in Git repositories. Gain insights into file versions, diffs, and semantic patterns to enhance your understanding of file evolution. Perfect for developers and analysts looking to dive deep into file-level forensics. | 2025-03-09T02:01:02.381Z | 16 | https://smithery.ai/server/@davidorex/git-file-forensics | true | null | {
"scanPassed": true
} | [{'name': 'track_file_versions', 'description': 'Track complete version history of a specific file, including renames and moves', 'inputSchema': {'type': 'object', 'required': ['repoPath', 'file', 'outputPath'], 'properties': {'file': {'type': 'string', 'description': 'File to analyze'}, 'repoPath': {'type': 'string', 'description': 'Path to git repository'}, 'outputPath': {'type': 'string', 'description': 'Path to write analysis output'}}}}, {'name': 'analyze_file_diff', 'description': 'Analyze specific changes between any two versions of a file', 'inputSchema': {'type': 'object', 'required': ['repoPath', 'file', 'versions', 'outputPath'], 'properties': {'file': {'type': 'string', 'description': 'File to analyze'}, 'repoPath': {'type': 'string', 'description': 'Path to git repository'}, 'versions': {'type': 'object', 'required': ['from', 'to'], 'properties': {'to': {'type': 'string'}, 'from': {'type': 'string'}}}, 'outputPath': {'type': 'string', 'description': 'Path to write analysis output'}}}}, {'name': 'analyze_file_context', 'description': 'Analyze broader context of file changes in a specific commit', 'inputSchema': {'type': 'object', 'required': ['repoPath', 'file', 'commit', 'outputPath'], 'properties': {'file': {'type': 'string', 'description': 'File to analyze'}, 'commit': {'type': 'string', 'description': 'Commit hash to analyze'}, 'repoPath': {'type': 'string', 'description': 'Path to git repository'}, 'outputPath': {'type': 'string', 'description': 'Path to write analysis output'}}}}, {'name': 'analyze_file_semantics', 'description': 'Analyze semantic changes and patterns in file history', 'inputSchema': {'type': 'object', 'required': ['repoPath', 'file', 'outputPath'], 'properties': {'file': {'type': 'string', 'description': 'File to analyze'}, 'repoPath': {'type': 'string', 'description': 'Path to git repository'}, 'outputPath': {'type': 'string', 'description': 'Path to write analysis output'}}}}] |
@imankamyabi/dynamodb-mcp-server | DynamoDB Server | Manage Amazon DynamoDB resources with table and capacity management tools. | 2025-01-08T07:01:45.786Z | 16 | https://smithery.ai/server/@imankamyabi/dynamodb-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'create_table', 'description': 'Creates a new DynamoDB table with specified configuration', 'inputSchema': {'type': 'object', 'required': ['tableName', 'partitionKey', 'partitionKeyType', 'readCapacity', 'writeCapacity'], 'properties': {'sortKey': {'type': 'string', 'description': 'Name of the sort key (optional)'}, 'tableName': {'type': 'string', 'description': 'Name of the table to create'}, 'sortKeyType': {'enum': ['S', 'N', 'B'], 'type': 'string', 'description': 'Type of sort key (optional)'}, 'partitionKey': {'type': 'string', 'description': 'Name of the partition key'}, 'readCapacity': {'type': 'number', 'description': 'Provisioned read capacity units'}, 'writeCapacity': {'type': 'number', 'description': 'Provisioned write capacity units'}, 'partitionKeyType': {'enum': ['S', 'N', 'B'], 'type': 'string', 'description': 'Type of partition key (S=String, N=Number, B=Binary)'}}}}, {'name': 'update_capacity', 'description': 'Updates the provisioned capacity of a table', 'inputSchema': {'type': 'object', 'required': ['tableName', 'readCapacity', 'writeCapacity'], 'properties': {'tableName': {'type': 'string', 'description': 'Name of the table'}, 'readCapacity': {'type': 'number', 'description': 'New read capacity units'}, 'writeCapacity': {'type': 'number', 'description': 'New write capacity units'}}}}, {'name': 'put_item', 'description': 'Inserts or replaces an item in a table', 'inputSchema': {'type': 'object', 'required': ['tableName', 'item'], 'properties': {'item': {'type': 'object', 'description': 'Item to put into the table'}, 'tableName': {'type': 'string', 'description': 'Name of the table'}}}}, {'name': 'get_item', 'description': 'Retrieves an item from a table by its primary key', 'inputSchema': {'type': 'object', 'required': ['tableName', 'key'], 'properties': {'key': {'type': 'object', 'description': 'Primary key of the item to retrieve'}, 'tableName': {'type': 'string', 'description': 'Name of the table'}}}}, {'name': 'query_table', 'description': 'Queries a table using key conditions and optional filters', 'inputSchema': {'type': 'object', 'required': ['tableName', 'keyConditionExpression', 'expressionAttributeValues'], 'properties': {'limit': {'type': 'number', 'optional': True, 'description': 'Maximum number of items to return'}, 'tableName': {'type': 'string', 'description': 'Name of the table'}, 'filterExpression': {'type': 'string', 'optional': True, 'description': 'Filter expression for results'}, 'keyConditionExpression': {'type': 'string', 'description': 'Key condition expression'}, 'expressionAttributeNames': {'type': 'object', 'optional': True, 'description': 'Attribute name mappings'}, 'expressionAttributeValues': {'type': 'object', 'description': 'Values for the key condition expression'}}}}, {'name': 'scan_table', 'description': 'Scans an entire table with optional filters', 'inputSchema': {'type': 'object', 'required': ['tableName'], 'properties': {'limit': {'type': 'number', 'optional': True, 'description': 'Maximum number of items to return'}, 'tableName': {'type': 'string', 'description': 'Name of the table'}, 'filterExpression': {'type': 'string', 'optional': True, 'description': 'Filter expression'}, 'expressionAttributeNames': {'type': 'object', 'optional': True, 'description': 'Attribute name mappings'}, 'expressionAttributeValues': {'type': 'object', 'optional': True, 'description': 'Values for the filter expression'}}}}, {'name': 'describe_table', 'description': 'Gets detailed information about a DynamoDB table', 'inputSchema': {'type': 'object', 'required': ['tableName'], 'properties': {'tableName': {'type': 'string', 'description': 'Name of the table to describe'}}}}, {'name': 'list_tables', 'description': 'Lists all DynamoDB tables in the account', 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of tables to return (optional)'}, 'exclusiveStartTableName': {'type': 'string', 'description': 'Name of the table to start from for pagination (optional)'}}}}, {'name': 'create_gsi', 'description': 'Creates a global secondary index on a table', 'inputSchema': {'type': 'object', 'required': ['tableName', 'indexName', 'partitionKey', 'partitionKeyType', 'projectionType', 'readCapacity', 'writeCapacity'], 'properties': {'sortKey': {'type': 'string', 'description': 'Sort key for the index (optional)'}, 'indexName': {'type': 'string', 'description': 'Name of the new index'}, 'tableName': {'type': 'string', 'description': 'Name of the table'}, 'sortKeyType': {'enum': ['S', 'N', 'B'], 'type': 'string', 'description': 'Type of sort key (optional)'}, 'partitionKey': {'type': 'string', 'description': 'Partition key for the index'}, 'readCapacity': {'type': 'number', 'description': 'Provisioned read capacity units'}, 'writeCapacity': {'type': 'number', 'description': 'Provisioned write capacity units'}, 'projectionType': {'enum': ['ALL', 'KEYS_ONLY', 'INCLUDE'], 'type': 'string', 'description': 'Type of projection'}, 'nonKeyAttributes': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Non-key attributes to project (optional)'}, 'partitionKeyType': {'enum': ['S', 'N', 'B'], 'type': 'string', 'description': 'Type of partition key'}}}}, {'name': 'update_gsi', 'description': 'Updates the provisioned capacity of a global secondary index', 'inputSchema': {'type': 'object', 'required': ['tableName', 'indexName', 'readCapacity', 'writeCapacity'], 'properties': {'indexName': {'type': 'string', 'description': 'Name of the index to update'}, 'tableName': {'type': 'string', 'description': 'Name of the table'}, 'readCapacity': {'type': 'number', 'description': 'New read capacity units'}, 'writeCapacity': {'type': 'number', 'description': 'New write capacity units'}}}}, {'name': 'create_lsi', 'description': 'Creates a local secondary index on a table (must be done during table creation)', 'inputSchema': {'type': 'object', 'required': ['tableName', 'indexName', 'partitionKey', 'partitionKeyType', 'sortKey', 'sortKeyType', 'projectionType'], 'properties': {'sortKey': {'type': 'string', 'description': 'Sort key for the index'}, 'indexName': {'type': 'string', 'description': 'Name of the new index'}, 'tableName': {'type': 'string', 'description': 'Name of the table'}, 'sortKeyType': {'enum': ['S', 'N', 'B'], 'type': 'string', 'description': 'Type of sort key'}, 'partitionKey': {'type': 'string', 'description': 'Partition key for the table'}, 'readCapacity': {'type': 'number', 'description': 'Provisioned read capacity units (optional, default: 5)'}, 'writeCapacity': {'type': 'number', 'description': 'Provisioned write capacity units (optional, default: 5)'}, 'projectionType': {'enum': ['ALL', 'KEYS_ONLY', 'INCLUDE'], 'type': 'string', 'description': 'Type of projection'}, 'nonKeyAttributes': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Non-key attributes to project (optional)'}, 'partitionKeyType': {'enum': ['S', 'N', 'B'], 'type': 'string', 'description': 'Type of partition key'}}}}, {'name': 'update_item', 'description': 'Updates specific attributes of an item in a table', 'inputSchema': {'type': 'object', 'required': ['tableName', 'key', 'updateExpression', 'expressionAttributeNames', 'expressionAttributeValues'], 'properties': {'key': {'type': 'object', 'description': 'Primary key of the item to update'}, 'tableName': {'type': 'string', 'description': 'Name of the table'}, 'returnValues': {'enum': ['NONE', 'ALL_OLD', 'UPDATED_OLD', 'ALL_NEW', 'UPDATED_NEW'], 'type': 'string', 'description': 'What values to return'}, 'updateExpression': {'type': 'string', 'description': "Update expression (e.g., 'SET #n = :name')"}, 'conditionExpression': {'type': 'string', 'description': 'Condition for update (optional)'}, 'expressionAttributeNames': {'type': 'object', 'description': 'Attribute name mappings'}, 'expressionAttributeValues': {'type': 'object', 'description': 'Values for the update expression'}}}}] |
@kazuph/mcp-fetch | MCP Fetch | A Model Context Protocol server that provides web content fetching capabilities. | 2024-12-27T11:53:24.133Z | 36 | https://smithery.ai/server/@kazuph/mcp-fetch | true | null | {
"scanPassed": true
} | [{'name': 'fetch', 'description': '\nRetrieves URLs from the Internet and extracts their content as markdown.\nImages from the page will be processed and included with the response automatically.\n\nParameters:\n - url (required): The URL to fetch\n - maxLength (default: 20000): Maximum length of content to return\n - startIndex (default: 0): Starting position in content\n - imageStartIndex (default: 0): Starting position for image collection\n - raw (default: false): Return raw content instead of processed markdown\n - imageMaxCount (default: 3): Maximum number of images to process per request\n - imageMaxHeight (default: 4000): Maximum height of merged image\n - imageMaxWidth (default: 1000): Maximum width of merged image\n - imageQuality (default: 80): JPEG quality (1-100)\n - disableImages (default: true): Skip image processing\n - ignoreRobotsTxt (default: false): Ignore robots.txt restrictions\n\nImage Processing:\n - Multiple images are merged vertically into a single JPEG\n - Images are automatically optimized and resized\n - GIF animations are converted to static images (first frame)\n - Use imageStartIndex and imageMaxCount to paginate through all images\n - Response includes remaining image count and current position\n\nIMPORTANT: All parameters must be in proper JSON format - use double quotes for keys\nand string values, and no quotes for numbers and booleans.\n\nExamples:\n# Initial fetch:\n{\n "url": "https://example.com",\n "maxLength": 10000,\n "imageMaxCount": 2\n}\n\n# Fetch next set of images:\n{\n "url": "https://example.com",\n "imageStartIndex": 2,\n "imageMaxCount": 2\n}', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'raw': {'type': ['boolean', 'string'], 'default': False}, 'url': {'type': 'string', 'format': 'uri'}, 'maxLength': {'allOf': [{'type': ['number', 'string']}, {'type': 'number', 'maximum': 1000000, 'exclusiveMinimum': 0}], 'default': 20000}, 'startIndex': {'allOf': [{'type': ['number', 'string']}, {'type': 'number', 'minimum': 0}], 'default': 0}, 'imageQuality': {'allOf': [{'type': ['number', 'string']}, {'type': 'number', 'maximum': 100, 'minimum': 1}], 'default': 80}, 'disableImages': {'type': ['boolean', 'string'], 'default': True}, 'imageMaxCount': {'allOf': [{'type': ['number', 'string']}, {'type': 'number', 'maximum': 10, 'minimum': 0}], 'default': 3}, 'imageMaxWidth': {'allOf': [{'type': ['number', 'string']}, {'type': 'number', 'maximum': 10000, 'minimum': 100}], 'default': 1000}, 'imageMaxHeight': {'allOf': [{'type': ['number', 'string']}, {'type': 'number', 'maximum': 10000, 'minimum': 100}], 'default': 4000}, 'ignoreRobotsTxt': {'type': ['boolean', 'string'], 'default': False}, 'imageStartIndex': {'allOf': [{'type': ['number', 'string']}, {'type': 'number', 'minimum': 0}], 'default': 0}}, 'additionalProperties': False}}] |
@lowkeyrd/servers | GitHub API MCP Server | Enable seamless file operations, repository management, and advanced search functionalities on GitHub. Automate your workflows with automatic branch creation and comprehensive error handling, all while preserving Git history. Enhance your development experience by integrating GitHub capabilities directly into your applications. | 2025-03-25T04:16:05.066Z | 16 | https://smithery.ai/server/@lowkeyrd/servers | true | null | {
"scanPassed": true
} | [{'name': 'create_or_update_file', 'description': 'Create or update a single file in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'path', 'content', 'message', 'branch'], 'properties': {'sha': {'type': 'string', 'description': 'SHA of the file being replaced (required when updating existing files)'}, 'path': {'type': 'string', 'description': 'Path where to create/update the file'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': 'Branch to create/update the file in'}, 'content': {'type': 'string', 'description': 'Content of the file'}, 'message': {'type': 'string', 'description': 'Commit message'}}, 'additionalProperties': False}}, {'name': 'search_repositories', 'description': 'Search for GitHub repositories', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination (default: 1)'}, 'query': {'type': 'string', 'description': 'Search query (see GitHub search syntax)'}, 'perPage': {'type': 'number', 'description': 'Number of results per page (default: 30, max: 100)'}}, 'additionalProperties': False}}, {'name': 'create_repository', 'description': 'Create a new GitHub repository in your account', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Repository name'}, 'private': {'type': 'boolean', 'description': 'Whether the repository should be private'}, 'autoInit': {'type': 'boolean', 'description': 'Initialize with README.md'}, 'description': {'type': 'string', 'description': 'Repository description'}}, 'additionalProperties': False}}, {'name': 'get_file_contents', 'description': 'Get the contents of a file or directory from a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'path'], 'properties': {'path': {'type': 'string', 'description': 'Path to the file or directory'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': 'Branch to get contents from'}}, 'additionalProperties': False}}, {'name': 'push_files', 'description': 'Push multiple files to a GitHub repository in a single commit', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'branch', 'files', 'message'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'files': {'type': 'array', 'items': {'type': 'object', 'required': ['path', 'content'], 'properties': {'path': {'type': 'string'}, 'content': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'Array of files to push'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': "Branch to push to (e.g., 'main' or 'master')"}, 'message': {'type': 'string', 'description': 'Commit message'}}, 'additionalProperties': False}}, {'name': 'create_issue', 'description': 'Create a new issue in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'title'], 'properties': {'body': {'type': 'string'}, 'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'title': {'type': 'string'}, 'labels': {'type': 'array', 'items': {'type': 'string'}}, 'assignees': {'type': 'array', 'items': {'type': 'string'}}, 'milestone': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'create_pull_request', 'description': 'Create a new pull request in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'title', 'head', 'base'], 'properties': {'base': {'type': 'string', 'description': 'The name of the branch you want the changes pulled into'}, 'body': {'type': 'string', 'description': 'Pull request body/description'}, 'head': {'type': 'string', 'description': 'The name of the branch where your changes are implemented'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'draft': {'type': 'boolean', 'description': 'Whether to create the pull request as a draft'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'title': {'type': 'string', 'description': 'Pull request title'}, 'maintainer_can_modify': {'type': 'boolean', 'description': 'Whether maintainers can modify the pull request'}}, 'additionalProperties': False}}, {'name': 'fork_repository', 'description': 'Fork a GitHub repository to your account or specified organization', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'organization': {'type': 'string', 'description': 'Optional: organization to fork to (defaults to your personal account)'}}, 'additionalProperties': False}}, {'name': 'create_branch', 'description': 'Create a new branch in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'branch'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': 'Name for the new branch'}, 'from_branch': {'type': 'string', 'description': "Optional: source branch to create from (defaults to the repository's default branch)"}}, 'additionalProperties': False}}, {'name': 'list_commits', 'description': 'Get list of commits of a branch in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'sha': {'type': 'string'}, 'page': {'type': 'number'}, 'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'perPage': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'list_issues', 'description': 'List issues in a GitHub repository with filtering options', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'page': {'type': 'number'}, 'repo': {'type': 'string'}, 'sort': {'enum': ['created', 'updated', 'comments'], 'type': 'string'}, 'owner': {'type': 'string'}, 'since': {'type': 'string'}, 'state': {'enum': ['open', 'closed', 'all'], 'type': 'string'}, 'labels': {'type': 'array', 'items': {'type': 'string'}}, 'per_page': {'type': 'number'}, 'direction': {'enum': ['asc', 'desc'], 'type': 'string'}}, 'additionalProperties': False}}, {'name': 'update_issue', 'description': 'Update an existing issue in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'issue_number'], 'properties': {'body': {'type': 'string'}, 'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'state': {'enum': ['open', 'closed'], 'type': 'string'}, 'title': {'type': 'string'}, 'labels': {'type': 'array', 'items': {'type': 'string'}}, 'assignees': {'type': 'array', 'items': {'type': 'string'}}, 'milestone': {'type': 'number'}, 'issue_number': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'add_issue_comment', 'description': 'Add a comment to an existing issue', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'issue_number', 'body'], 'properties': {'body': {'type': 'string'}, 'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'issue_number': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'search_code', 'description': 'Search for code across GitHub repositories', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['q'], 'properties': {'q': {'type': 'string'}, 'page': {'type': 'number', 'minimum': 1}, 'order': {'enum': ['asc', 'desc'], 'type': 'string'}, 'per_page': {'type': 'number', 'maximum': 100, 'minimum': 1}}, 'additionalProperties': False}}, {'name': 'search_issues', 'description': 'Search for issues and pull requests across GitHub repositories', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['q'], 'properties': {'q': {'type': 'string'}, 'page': {'type': 'number', 'minimum': 1}, 'sort': {'enum': ['comments', 'reactions', 'reactions-+1', 'reactions--1', 'reactions-smile', 'reactions-thinking_face', 'reactions-heart', 'reactions-tada', 'interactions', 'created', 'updated'], 'type': 'string'}, 'order': {'enum': ['asc', 'desc'], 'type': 'string'}, 'per_page': {'type': 'number', 'maximum': 100, 'minimum': 1}}, 'additionalProperties': False}}, {'name': 'search_users', 'description': 'Search for users on GitHub', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['q'], 'properties': {'q': {'type': 'string'}, 'page': {'type': 'number', 'minimum': 1}, 'sort': {'enum': ['followers', 'repositories', 'joined'], 'type': 'string'}, 'order': {'enum': ['asc', 'desc'], 'type': 'string'}, 'per_page': {'type': 'number', 'maximum': 100, 'minimum': 1}}, 'additionalProperties': False}}, {'name': 'get_issue', 'description': 'Get details of a specific issue in a GitHub repository.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'issue_number'], 'properties': {'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'issue_number': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'get_pull_request', 'description': 'Get details of a specific pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'list_pull_requests', 'description': 'List and filter repository pull requests', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'base': {'type': 'string', 'description': 'Filter by base branch name'}, 'head': {'type': 'string', 'description': 'Filter by head user or head organization and branch name'}, 'page': {'type': 'number', 'description': 'Page number of the results'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'sort': {'enum': ['created', 'updated', 'popularity', 'long-running'], 'type': 'string', 'description': 'What to sort results by'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'state': {'enum': ['open', 'closed', 'all'], 'type': 'string', 'description': 'State of the pull requests to return'}, 'per_page': {'type': 'number', 'description': 'Results per page (max 100)'}, 'direction': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'The direction of the sort'}}, 'additionalProperties': False}}, {'name': 'create_pull_request_review', 'description': 'Create a review on a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number', 'body', 'event'], 'properties': {'body': {'type': 'string', 'description': 'The body text of the review'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'event': {'enum': ['APPROVE', 'REQUEST_CHANGES', 'COMMENT'], 'type': 'string', 'description': 'The review action to perform'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'comments': {'type': 'array', 'items': {'type': 'object', 'required': ['path', 'position', 'body'], 'properties': {'body': {'type': 'string', 'description': 'Text of the review comment'}, 'path': {'type': 'string', 'description': 'The relative path to the file being commented on'}, 'position': {'type': 'number', 'description': 'The position in the diff where you want to add a review comment'}}, 'additionalProperties': False}, 'description': 'Comments to post as part of the review'}, 'commit_id': {'type': 'string', 'description': 'The SHA of the commit that needs a review'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'merge_pull_request', 'description': 'Merge a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}, 'commit_title': {'type': 'string', 'description': 'Title for the automatic commit message'}, 'merge_method': {'enum': ['merge', 'squash', 'rebase'], 'type': 'string', 'description': 'Merge method to use'}, 'commit_message': {'type': 'string', 'description': 'Extra detail to append to automatic commit message'}}, 'additionalProperties': False}}, {'name': 'get_pull_request_files', 'description': 'Get the list of files changed in a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'get_pull_request_status', 'description': 'Get the combined status of all status checks for a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'update_pull_request_branch', 'description': 'Update a pull request branch with the latest changes from the base branch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}, 'expected_head_sha': {'type': 'string', 'description': "The expected SHA of the pull request's HEAD ref"}}, 'additionalProperties': False}}, {'name': 'get_pull_request_comments', 'description': 'Get the review comments on a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'get_pull_request_reviews', 'description': 'Get the reviews on a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}] |
@snoglobe/prolog_mcp | Prolog Execution and Querying | Execute Prolog code and query predicates seamlessly. Enhance your applications with powerful logic programming capabilities. Simplify your development process by integrating Prolog's reasoning abilities directly into your workflows. | 2025-03-31T02:09:44.528Z | 16 | https://smithery.ai/server/@snoglobe/prolog_mcp | true | null | {
"scanPassed": true
} | [{'name': 'discover', 'description': 'Shows the available predicates in the prolog engine', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'exec', 'description': 'Execute a prolog program', 'inputSchema': {'type': 'object', 'required': ['program'], 'properties': {'program': {'type': 'string', 'description': 'The prolog program to execute'}}}}, {'name': 'query', 'description': 'Query the prolog engine', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The query to execute'}}}}] |
@gh-Constant/plane-mcp-server | Plane MCP Server | Interact seamlessly with the Plane project management platform. Manage workspaces, projects, and issues effortlessly through a set of powerful tools designed for AI assistants. Enhance your project management experience by automating tasks and retrieving real-time data. | 2025-03-25T11:12:09.064Z | 16 | https://smithery.ai/server/@gh-Constant/plane-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'list-workspaces', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-projects', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-project', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id'], 'properties': {'project_id': {'type': 'string', 'description': 'ID of the project to retrieve'}}, 'additionalProperties': False}}, {'name': 'get-project-states', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id'], 'properties': {'project_id': {'type': 'string', 'description': 'ID of the project to get states from'}}, 'additionalProperties': False}}, {'name': 'list-cycles', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id'], 'properties': {'project_id': {'type': 'string', 'description': 'ID of the project to get cycles from'}}, 'additionalProperties': False}}, {'name': 'get-cycle', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id', 'cycle_id'], 'properties': {'cycle_id': {'type': 'string', 'description': 'ID of the cycle to retrieve'}, 'project_id': {'type': 'string', 'description': 'ID of the project containing the cycle'}}, 'additionalProperties': False}}, {'name': 'list-modules', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id'], 'properties': {'project_id': {'type': 'string', 'description': 'ID of the project to get modules from'}}, 'additionalProperties': False}}, {'name': 'get-module', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id', 'module_id'], 'properties': {'module_id': {'type': 'string', 'description': 'ID of the module to retrieve'}, 'project_id': {'type': 'string', 'description': 'ID of the project containing the module'}}, 'additionalProperties': False}}, {'name': 'list-issues', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of issues to return (default: 50)'}, 'search': {'type': 'string', 'description': 'Search term to filter issues (optional)'}, 'cycle_id': {'type': 'string', 'description': 'Filter by cycle ID (optional)'}, 'priority': {'enum': ['urgent', 'high', 'medium', 'low', 'none'], 'type': 'string', 'description': 'Filter by priority (optional)'}, 'state_id': {'type': 'string', 'description': 'Filter by state ID (optional)'}, 'module_id': {'type': 'string', 'description': 'Filter by module ID (optional)'}, 'created_by': {'type': 'string', 'description': 'Filter by creator ID (optional)'}, 'project_id': {'type': 'string', 'description': 'ID of the project to get issues from'}, 'assignee_id': {'type': 'string', 'description': 'Filter by assignee ID (optional)'}}, 'additionalProperties': False}}, {'name': 'get-issue', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id', 'issue_id'], 'properties': {'issue_id': {'type': 'string', 'description': 'ID of the issue to retrieve'}, 'project_id': {'type': 'string', 'description': 'ID of the project containing the issue'}}, 'additionalProperties': False}}, {'name': 'create-issue', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id', 'name', 'description_html', 'priority'], 'properties': {'name': {'type': 'string', 'description': 'Title of the issue'}, 'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of label IDs to add to this issue (optional)'}, 'cycle_id': {'type': 'string', 'description': 'ID of the cycle to associate with this issue (optional)'}, 'priority': {'enum': ['urgent', 'high', 'medium', 'low', 'none'], 'type': 'string', 'description': 'Priority of the issue'}, 'state_id': {'type': 'string', 'description': 'ID of the state for this issue (optional)'}, 'assignees': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of user IDs to assign to this issue (optional)'}, 'module_id': {'type': 'string', 'description': 'ID of the module to associate with this issue (optional)'}, 'project_id': {'type': 'string', 'description': 'ID of the project where the issue should be created'}, 'description_html': {'type': 'string', 'description': 'HTML description of the issue'}}, 'additionalProperties': False}}, {'name': 'update-issue', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id', 'issue_id'], 'properties': {'name': {'type': 'string', 'description': 'Updated title of the issue (optional)'}, 'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Updated array of label IDs for this issue (optional)'}, 'cycle_id': {'type': 'string', 'description': 'Updated cycle ID for this issue (optional)'}, 'issue_id': {'type': 'string', 'description': 'ID of the issue to update'}, 'priority': {'enum': ['urgent', 'high', 'medium', 'low', 'none'], 'type': 'string', 'description': 'Updated priority of the issue (optional)'}, 'state_id': {'type': 'string', 'description': 'Updated state ID of the issue (optional)'}, 'assignees': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Updated array of user IDs to assign to this issue (optional)'}, 'module_id': {'type': 'string', 'description': 'Updated module ID for this issue (optional)'}, 'project_id': {'type': 'string', 'description': 'ID of the project containing the issue'}, 'description_html': {'type': 'string', 'description': 'Updated HTML description of the issue (optional)'}}, 'additionalProperties': False}}, {'name': 'delete-issue', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id', 'issue_id'], 'properties': {'issue_id': {'type': 'string', 'description': 'ID of the issue to delete'}, 'project_id': {'type': 'string', 'description': 'ID of the project containing the issue'}}, 'additionalProperties': False}}, {'name': 'list-issue-comments', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id', 'issue_id'], 'properties': {'issue_id': {'type': 'string', 'description': 'ID of the issue to get comments from'}, 'project_id': {'type': 'string', 'description': 'ID of the project containing the issue'}}, 'additionalProperties': False}}, {'name': 'add-issue-comment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_id', 'issue_id', 'comment_html'], 'properties': {'issue_id': {'type': 'string', 'description': 'ID of the issue to add comment to'}, 'project_id': {'type': 'string', 'description': 'ID of the project containing the issue'}, 'comment_html': {'type': 'string', 'description': 'HTML content of the comment'}}, 'additionalProperties': False}}] |
@isaacgounton/sqlite-mcp-server | SQLite Database Server | Provide standardized SQLite database operations including querying, table management, and business insights memo tracking through a simple MCP interface. Easily deploy locally or with Docker for seamless integration with your applications. Execute SQL commands and manage your database schema efficiently via MCP tools. | 2025-04-24T07:01:02.427Z | 15 | https://smithery.ai/server/@isaacgounton/sqlite-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'read_query', 'description': 'Execute a SELECT query', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The SELECT SQL query to execute'}}}}, {'name': 'write_query', 'description': 'Execute an INSERT, UPDATE, or DELETE query', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The SQL modification query'}}}}, {'name': 'create_table', 'description': 'Create a new table', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'CREATE TABLE SQL statement'}}}}, {'name': 'list_tables', 'description': 'List all tables in the database', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'describe_table', 'description': 'View schema information for a table', 'inputSchema': {'type': 'object', 'required': ['table_name'], 'properties': {'table_name': {'type': 'string', 'description': 'Name of table to describe'}}}}, {'name': 'append_insight', 'description': 'Add a new business insight to the memo', 'inputSchema': {'type': 'object', 'required': ['insight'], 'properties': {'insight': {'type': 'string', 'description': 'Business insight discovered from data analysis'}}}}] |
@mzxrai/mcp-openai | OpenAI Server | MCP server for simple interaction with OpenAI API. | 2024-12-20T08:03:29.202Z | 15 | https://smithery.ai/server/@mzxrai/mcp-openai | true | null | {
"scanPassed": true
} | [{'name': 'openai_chat', 'description': "Use this tool when a user specifically requests to use one of OpenAI's models (gpt-4o, gpt-4o-mini, o1-preview, o1-mini). This tool sends messages to OpenAI's chat completion API using the specified model.", 'inputSchema': {'type': 'object', 'required': ['messages'], 'properties': {'model': {'enum': ['gpt-4o', 'gpt-4o-mini', 'o1-preview', 'o1-mini'], 'type': 'string', 'default': 'gpt-4o', 'description': 'Model to use for completion (gpt-4o, gpt-4o-mini, o1-preview, o1-mini)'}, 'messages': {'type': 'array', 'items': {'type': 'object', 'required': ['role', 'content'], 'properties': {'role': {'enum': ['system', 'user', 'assistant'], 'type': 'string', 'description': 'Role of the message sender'}, 'content': {'type': 'string', 'description': 'Content of the message'}}}, 'description': 'Array of messages to send to the API'}}}}] |
@mikechao/metmuseum-mcp | Met Museum Server | Access the Metropolitan Museum of Art's collection through natural language queries. Search for artworks, retrieve detailed information, and explore various departments effortlessly. Enhance your AI's capabilities with rich art resources and data. | 2025-04-11T01:01:01.641Z | 15 | https://smithery.ai/server/@mikechao/metmuseum-mcp | true | null | null | [{'name': 'list-departments', 'description': 'List all departments in the Metropolitan Museum of Art (Met Museum)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'search-museum-objects', 'description': 'Search for objects in the Metropolitan Museum of Art (Met Museum). Will return Total objects found, followed by a list of Object Ids.The parameter title should be set to true if you want to search for objects by title.The parameter hasImages is false by default, but can be set to true to return objects without images.If the parameter hasImages is true, the parameter title should be false.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['q'], 'properties': {'q': {'type': 'string', 'description': "The search query, Returns a listing of all Object IDs for objects that contain the search query within the object's data"}, 'title': {'type': 'boolean', 'default': False, 'description': 'This should be set to true if you want to search for objects by title'}, 'hasImages': {'type': 'boolean', 'default': False, 'description': 'Only returns objects that have images'}, 'departmentId': {'type': 'number', 'description': "Returns objects that are in the specified department. The departmentId should come from the 'list-departments' tool."}}, 'additionalProperties': False}}, {'name': 'get-museum-object', 'description': 'Get a museum object by its ID, from the Metropolitan Museum of Art Collection', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['objectId'], 'properties': {'objectId': {'type': 'number', 'description': 'The ID of the museum object to retrieve'}, 'returnImage': {'type': 'boolean', 'default': True, 'description': 'Whether to return the image (if available) of the object and add it to the server resources'}}, 'additionalProperties': False}}] |
@snjyor/binance-mcp-data | Binance Cryptocurrency Market Data Service | Provide real-time cryptocurrency market data from Binance directly to AI agents. Access current prices, order books, candlestick charts, trading history, and price statistics seamlessly. Enable AI-driven queries about the latest market trends without visiting external sites. | 2025-04-22T16:11:42.806Z | 15 | https://smithery.ai/server/@snjyor/binance-mcp-data | true | {
"scanPassed": true
} | [{'name': 'get_order_book', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['symbol'], 'properties': {'limit': {'type': 'number', 'description': 'Order book depth, default 100, max 5000'}, 'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}}, 'additionalProperties': False}}, {'name': 'get_recent_trades', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['symbol'], 'properties': {'limit': {'type': 'number', 'description': 'Number of trades to return, default 500, max 1000'}, 'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}}, 'additionalProperties': False}}, {'name': 'get_historical_trades', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['symbol'], 'properties': {'limit': {'type': 'number', 'description': 'Number of trades to return, default 500, max 1000'}, 'fromId': {'type': 'number', 'description': 'Trade ID to start from, default returns the most recent trades'}, 'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}}, 'additionalProperties': False}}, {'name': 'get_aggregate_trades', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['symbol'], 'properties': {'limit': {'type': 'number', 'description': 'Number of trades to return, default 500, max 1000'}, 'fromId': {'type': 'number', 'description': 'Aggregate trade ID to start from'}, 'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}, 'endTime': {'type': 'number', 'description': 'End timestamp (milliseconds)'}, 'startTime': {'type': 'number', 'description': 'Start timestamp (milliseconds)'}}, 'additionalProperties': False}}, {'name': 'get_klines', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['symbol', 'interval'], 'properties': {'limit': {'type': 'number', 'description': 'Number of K-lines to return, default 500, max 1000'}, 'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}, 'endTime': {'type': 'number', 'description': 'End timestamp (milliseconds)'}, 'interval': {'type': 'string', 'description': 'K-line interval, e.g. 1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 8h, 12h, 1d, 3d, 1w, 1M'}, 'timeZone': {'type': 'string', 'description': 'Time zone, default UTC'}, 'startTime': {'type': 'number', 'description': 'Start timestamp (milliseconds)'}}, 'additionalProperties': False}}, {'name': 'get_ui_klines', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['symbol', 'interval'], 'properties': {'limit': {'type': 'number', 'description': 'Number of K-lines to return, default 500, max 1000'}, 'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}, 'endTime': {'type': 'number', 'description': 'End timestamp (milliseconds)'}, 'interval': {'type': 'string', 'description': 'K-line interval, e.g. 1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 8h, 12h, 1d, 3d, 1w, 1M'}, 'timeZone': {'type': 'string', 'description': 'Time zone, default UTC'}, 'startTime': {'type': 'number', 'description': 'Start timestamp (milliseconds)'}}, 'additionalProperties': False}}, {'name': 'get_avg_price', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}}, 'additionalProperties': False}}, {'name': 'get_24hr_ticker', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}, 'symbols': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of multiple trading pair symbols'}}, 'additionalProperties': False}}, {'name': 'get_trading_day_ticker', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'type': {'enum': ['FULL', 'MINI'], 'type': 'string', 'description': 'Return data type, FULL or MINI'}, 'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}, 'symbols': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of multiple trading pair symbols'}, 'timeZone': {'type': 'number', 'description': 'Time zone, default 0'}}, 'additionalProperties': False}}, {'name': 'get_price', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}, 'symbols': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of multiple trading pair symbols'}}, 'additionalProperties': False}}, {'name': 'get_book_ticker', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}, 'symbols': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of multiple trading pair symbols'}}, 'additionalProperties': False}}, {'name': 'get_rolling_window_ticker', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'type': {'enum': ['FULL', 'MINI'], 'type': 'string', 'description': 'Return data type, FULL or MINI'}, 'symbol': {'type': 'string', 'description': 'Trading pair symbol, e.g. BTCUSDT'}, 'symbols': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of multiple trading pair symbols'}, 'windowSize': {'type': 'string', 'description': 'Window size, e.g. 1m, 4h, 1d'}}, 'additionalProperties': False}}] |
|
@brianshin22/youtube-translate-mcp | Youtube Translate | An MCP server for interfacing with the Youtube Translate API. Create transcripts, translations, subtitles, summaries for any Youtube video (or any other platform). Search video transcripts for keywords and phrases. Directly processes videos to understand them. | 2025-03-13T09:50:04.632Z | 15 | https://smithery.ai/server/@brianshin22/youtube-translate-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_transcript', 'description': 'Get the transcript of a YouTube video', 'inputSchema': {'type': 'object', 'title': 'get_transcriptArguments', 'required': ['url'], 'properties': {'url': {'type': 'string', 'title': 'Url'}}}}, {'name': 'get_translation', 'description': 'Get a translated transcript of a YouTube video', 'inputSchema': {'type': 'object', 'title': 'get_translationArguments', 'required': ['url', 'language'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'language': {'type': 'string', 'title': 'Language'}}}}, {'name': 'get_subtitles', 'description': 'Generate subtitle files for a YouTube video', 'inputSchema': {'type': 'object', 'title': 'get_subtitlesArguments', 'required': ['url'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'format': {'type': 'string', 'title': 'Format', 'default': 'srt'}, 'language': {'type': 'string', 'title': 'Language', 'default': 'en'}}}}, {'name': 'get_summary', 'description': 'Generate a summary of a YouTube video', 'inputSchema': {'type': 'object', 'title': 'get_summaryArguments', 'required': ['url'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'length': {'type': 'string', 'title': 'Length', 'default': 'medium'}, 'language': {'type': 'string', 'title': 'Language', 'default': 'en'}}}}, {'name': 'search_video', 'description': "Search for specific content within a YouTube video's transcript", 'inputSchema': {'type': 'object', 'title': 'search_videoArguments', 'required': ['url', 'query'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'query': {'type': 'string', 'title': 'Query'}}}}] |
@diegofornalha/mcp-server-serper | Serper Search and Scrape | Habilite recursos poderosos de pesquisa na web e extração de conteúdo. Realize pesquisas ricas na web e raspe o conteúdo da página da web perfeitamente com a integração da API Serper. | 2025-03-10T20:34:01.733Z | 15 | https://smithery.ai/server/@diegofornalha/mcp-server-serper | true | null | {
"scanPassed": true
} | [{'name': 'google_search', 'description': 'Ferramenta para realizar buscas na web via API Serper e recuperar resultados completos. Capaz de recuperar resultados orgânicos de busca, pessoas também perguntam, buscas relacionadas e gráfico de conhecimento.', 'inputSchema': {'type': 'object', 'required': ['q', 'gl', 'hl'], 'properties': {'q': {'type': 'string', 'description': "String de consulta de busca (ex: 'inteligência artificial', 'soluções para mudanças climáticas')"}, 'gl': {'type': 'string', 'description': "Código de região opcional para resultados da busca no formato ISO 3166-1 alpha-2 (ex: 'us', 'br', 'pt')"}, 'hl': {'type': 'string', 'description': "Código de idioma opcional para resultados da busca no formato ISO 639-1 (ex: 'en', 'pt', 'es')"}, 'or': {'type': 'string', 'description': "Termos alternativos como string separada por vírgula (ex: 'tutorial,guia,curso', 'documentação,manual')"}, 'num': {'type': 'number', 'description': 'Número de resultados a retornar (padrão: 10)'}, 'tbs': {'type': 'string', 'description': "Filtro de busca baseado em tempo ('qdr:h' para última hora, 'qdr:d' para último dia, 'qdr:w' para última semana, 'qdr:m' para último mês, 'qdr:y' para último ano)"}, 'page': {'type': 'number', 'description': 'Número da página de resultados a retornar (padrão: 1)'}, 'site': {'type': 'string', 'description': "Limitar resultados a domínio específico (ex: 'github.com', 'wikipedia.org')"}, 'after': {'type': 'string', 'description': "Data depois no formato AAAA-MM-DD (ex: '2023-01-01')"}, 'cache': {'type': 'string', 'description': "Ver versão em cache do Google de uma URL específica (ex: 'example.com/page')"}, 'exact': {'type': 'string', 'description': "Correspondência exata de frase (ex: 'aprendizado de máquina', 'computação quântica')"}, 'inurl': {'type': 'string', 'description': "Buscar páginas com palavra na URL (ex: 'download', 'tutorial')"}, 'before': {'type': 'string', 'description': "Data antes no formato AAAA-MM-DD (ex: '2024-01-01')"}, 'exclude': {'type': 'string', 'description': "Termos a excluir dos resultados de busca como string separada por vírgula (ex: 'spam,anúncios', 'iniciante,básico')"}, 'intitle': {'type': 'string', 'description': "Buscar páginas com palavra no título (ex: 'avaliação', 'como fazer')"}, 'related': {'type': 'string', 'description': "Encontrar sites similares (ex: 'github.com', 'stackoverflow.com')"}, 'filetype': {'type': 'string', 'description': "Limitar a tipos específicos de arquivo (ex: 'pdf', 'doc', 'xls')"}, 'location': {'type': 'string', 'description': "Localização opcional para resultados da busca (ex: 'São Paulo, Brasil', 'Rio de Janeiro, Brasil')"}, 'autocorrect': {'type': 'boolean', 'description': 'Se deve corrigir automaticamente a ortografia na consulta'}}}}, {'name': 'scrape', 'description': 'Ferramenta para extrair o conteúdo de uma página web e recuperar o texto e, opcionalmente, o conteúdo em markdown. Também recupera os metadados JSON-LD e os metadados do cabeçalho.', 'inputSchema': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'A URL da página web para extrair.'}, 'includeMarkdown': {'type': 'boolean', 'default': False, 'description': 'Se deve incluir conteúdo em markdown.'}}}}, {'name': '_health', 'description': 'Endpoint de verificação de saúde', 'inputSchema': {'type': 'object', 'required': ['random_string'], 'properties': {'random_string': {'type': 'string', 'description': 'Parâmetro fictício para ferramentas sem parâmetros'}}}}] |
@mundume/simple-mcp | Simple Notes MCP Server | Create and manage your notes effortlessly. Generate summaries of your notes and access them via unique URIs. Enhance your note-taking experience with a simple and effective tool. | 2025-03-06T11:59:41.520Z | 35 | https://smithery.ai/server/@mundume/simple-mcp | true | null | {
"scanPassed": true
} | [{'name': 'list_notes', 'description': 'List all notes', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}, 'outputSchema': {'type': 'array', 'items': {'type': 'object', 'required': ['uri', 'mimeType', 'content'], 'properties': {'uri': {'type': 'string'}, 'title': {'type': 'string'}, 'content': {'type': 'string'}, 'mimeType': {'type': 'string'}}}}}, {'name': 'create_note', 'description': 'Create a new note', 'inputSchema': {'type': 'object', 'required': ['title', 'content'], 'properties': {'title': {'type': 'string', 'description': 'Title of the note'}, 'content': {'type': 'string', 'description': 'Text content of the note'}}}, 'outputSchema': {'type': 'object', 'required': ['message'], 'properties': {'message': {'type': 'string'}}}}] |
@bitscorp-mcp/mcp-adjust | Adjust Reporting Server | Access your Adjust data seamlessly from any MCP client. Query reports, metrics, and performance data on-demand to gain insights into your campaigns. Perfect for quick lookups like install numbers for specific campaigns. | 2025-03-14T10:38:37.698Z | 15 | https://smithery.ai/server/@bitscorp-mcp/mcp-adjust | true | null | {
"scanPassed": true
} | [{'name': 'adjust-reporting', 'description': 'Adjust reporting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'date': {'type': 'string', 'default': '2025-03-28', 'description': 'Date for the report in YYYY-MM-DD format'}, 'sort': {'type': 'string', 'description': 'Comma-separated list of metrics/dimensions to sort by (use - for descending)'}, 'metrics': {'type': 'string', 'default': 'installs,sessions,revenue', 'description': 'Comma-separated list of metrics to include'}, 'currency': {'type': 'string', 'default': 'USD', 'description': 'Currency used for conversion of money related metrics'}, 'dimensions': {'type': 'string', 'description': 'Comma-separated values to group by (e.g., day,country,network). Options include: hour, day, week, month, year, quarter, os_name, device_type, app, app_token, store_id, store_type, currency, currency_code, network, campaign, campaign_network, campaign_id_network, adgroup, adgroup_network, adgroup_id_network, creative, country, country_code, region, partner_name, partner_id, channel, platform'}, 'utc_offset': {'type': 'string', 'description': 'Timezone used in the report (e.g., +01:00)'}, 'date_period': {'type': 'string', 'description': 'Date period (e.g., this_month, yesterday, 2023-01-01:2023-01-31, -10d:-3d)'}, 'format_dates': {'type': 'boolean', 'description': 'If false, date dimensions are returned in ISO format'}, 'reattributed': {'enum': ['all', 'false', 'true'], 'type': 'string', 'default': 'all', 'description': 'Filter for reattributed users'}, 'ad_spend_mode': {'enum': ['adjust', 'network', 'mixed'], 'type': 'string', 'description': 'Determines the ad spend source applied in calculations'}, 'cohort_maturity': {'enum': ['immature', 'mature'], 'type': 'string', 'description': 'Display values for immature or only mature cohorts'}, 'attribution_type': {'enum': ['click', 'impression', 'all'], 'type': 'string', 'default': 'click', 'description': 'Type of engagement the attribution awards'}, 'attribution_source': {'enum': ['first', 'dynamic'], 'type': 'string', 'default': 'dynamic', 'description': 'Whether in-app activity is assigned to install source or divided'}}, 'additionalProperties': False}}, {'name': 'adjust-standard-report', 'description': 'Get a standard Adjust report with common metrics', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'app_tokens': {'type': 'string', 'default': '', 'description': 'Comma-separated list of app tokens to include'}, 'date_range': {'type': 'string', 'default': 'last_7_days', 'description': 'Date range (e.g., 2023-01-01:2023-01-31, yesterday, last_7_days, this_month)'}, 'report_type': {'enum': ['performance', 'retention', 'cohort', 'revenue'], 'type': 'string', 'default': 'performance', 'description': 'Type of standard report to generate'}}, 'additionalProperties': False}}] |
@feuerdev/keep-mcp | MCP Server for Google Keep | Manage your Google Keep notes effortlessly. Create, update, search, and delete notes with ease using this powerful MCP server. Enhance your productivity by integrating Google Keep into your applications seamlessly. | 2025-04-13T13:00:51.901Z | 15 | https://smithery.ai/server/@feuerdev/keep-mcp | true | null | {
"scanPassed": true
} | [{'name': 'find', 'description': '\n Find notes based on a search query.\n \n Args:\n query (str, optional): A string to match against the title and text\n \n Returns:\n str: JSON string containing the matching notes with their id, title, text, pinned status, color and labels\n ', 'inputSchema': {'type': 'object', 'title': 'findArguments', 'properties': {'query': {'type': 'string', 'title': 'query', 'default': ''}}}}, {'name': 'create_note', 'description': "\n Create a new note with title and text.\n \n Args:\n title (str, optional): The title of the note\n text (str, optional): The content of the note\n \n Returns:\n str: JSON string containing the created note's data\n ", 'inputSchema': {'type': 'object', 'title': 'create_noteArguments', 'properties': {'text': {'type': 'string', 'title': 'Text', 'default': None}, 'title': {'type': 'string', 'title': 'Title', 'default': None}}}}, {'name': 'update_note', 'description': "\n Update a note's properties.\n \n Args:\n note_id (str): The ID of the note to update\n title (str, optional): New title for the note\n text (str, optional): New text content for the note\n \n Returns:\n str: JSON string containing the updated note's data\n \n Raises:\n ValueError: If the note doesn't exist or cannot be modified\n ", 'inputSchema': {'type': 'object', 'title': 'update_noteArguments', 'required': ['note_id'], 'properties': {'text': {'type': 'string', 'title': 'Text', 'default': None}, 'title': {'type': 'string', 'title': 'Title', 'default': None}, 'note_id': {'type': 'string', 'title': 'Note Id'}}}}, {'name': 'delete_note', 'description': "\n Delete a note (mark for deletion).\n \n Args:\n note_id (str): The ID of the note to delete\n \n Returns:\n str: Success message\n \n Raises:\n ValueError: If the note doesn't exist or cannot be modified\n ", 'inputSchema': {'type': 'object', 'title': 'delete_noteArguments', 'required': ['note_id'], 'properties': {'note_id': {'type': 'string', 'title': 'Note Id'}}}}] |
@browsercat/browsercat-mcp-server | BrowserCat MCP Server | Automate web interactions effortlessly with our cloud-based browser service. Navigate, take screenshots, and execute JavaScript in a real browser environment without any local installations. Enhance your LLM capabilities with seamless browser automation. | 2025-03-21T04:00:59.596Z | 15 | https://smithery.ai/server/@browsercat/browsercat-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'browsercat_navigate', 'description': 'Navigate to a URL', 'inputSchema': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string'}}}}, {'name': 'browsercat_screenshot', 'description': 'Take a screenshot of the current page or a specific element', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name for the screenshot'}, 'width': {'type': 'number', 'description': 'Width in pixels (default: 800)'}, 'height': {'type': 'number', 'description': 'Height in pixels (default: 600)'}, 'selector': {'type': 'string', 'description': 'CSS selector for element to screenshot'}}}}, {'name': 'browsercat_click', 'description': 'Click an element on the page', 'inputSchema': {'type': 'object', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for element to click'}}}}, {'name': 'browsercat_fill', 'description': 'Fill out an input field', 'inputSchema': {'type': 'object', 'required': ['selector', 'value'], 'properties': {'value': {'type': 'string', 'description': 'Value to fill'}, 'selector': {'type': 'string', 'description': 'CSS selector for input field'}}}}, {'name': 'browsercat_select', 'description': 'Select an option from a dropdown menu', 'inputSchema': {'type': 'object', 'required': ['selector', 'value'], 'properties': {'value': {'type': 'string', 'description': 'Value to select'}, 'selector': {'type': 'string', 'description': 'CSS selector for select element'}}}}, {'name': 'browsercat_hover', 'description': 'Hover over an element on the page', 'inputSchema': {'type': 'object', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for element to hover'}}}}, {'name': 'browsercat_evaluate', 'description': 'Execute JavaScript in the browser console', 'inputSchema': {'type': 'object', 'required': ['script'], 'properties': {'script': {'type': 'string', 'description': 'JavaScript code to execute'}}}}] |
@JackKuo666/pypi-mcp-server | PyPI MCP Server | Enable your AI assistants to effortlessly search and access Python package information from PyPI. Retrieve detailed metadata, version histories, and download statistics with a simple interface. Streamline your development process by integrating package insights directly into your AI workflows. | 2025-04-06T16:51:38.578Z | 15 | https://smithery.ai/server/@JackKuo666/pypi-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'get_package_info', 'description': '', 'inputSchema': {'type': 'object', 'title': 'get_package_infoArguments', 'required': ['package_name'], 'properties': {'version': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Version', 'default': None}, 'package_name': {'type': 'string', 'title': 'Package Name'}}}}, {'name': 'search_packages', 'description': '', 'inputSchema': {'type': 'object', 'title': 'search_packagesArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'get_package_releases', 'description': '', 'inputSchema': {'type': 'object', 'title': 'get_package_releasesArguments', 'required': ['package_name'], 'properties': {'package_name': {'type': 'string', 'title': 'Package Name'}}}}, {'name': 'get_package_stats', 'description': '', 'inputSchema': {'type': 'object', 'title': 'get_package_statsArguments', 'required': ['package_name'], 'properties': {'package_name': {'type': 'string', 'title': 'Package Name'}}}}] |
@StevenFengLi/haiguitangmcp | 海龟汤游戏服务器 | Host interactive 海龟汤 (lateral thinking puzzle) games with a large language model acting as the game master. Retrieve puzzle lists, detailed puzzles, and game rules to enjoy the game solo or with others. Enhance your puzzle experience with guided hints and structured gameplay prompts. | 2025-04-21T12:04:06.301Z | 15 | https://smithery.ai/server/@StevenFengLi/haiguitangmcp | true | null | {
"scanPassed": true
} | [{'name': 'get_prompt', 'description': '获取海龟汤游戏的玩法', 'inputSchema': {'type': 'object', 'title': 'get_promptArguments', 'properties': {}}}, {'name': 'get_puzzle', 'description': '获取一个谜题的完整内容\n\n Args:\n puzzle_title: 海龟汤的标题\n\n Returns:\n 选择结果信息\n ', 'inputSchema': {'type': 'object', 'title': 'get_puzzleArguments', 'required': ['puzzle_title'], 'properties': {'puzzle_title': {'type': 'string', 'title': 'Puzzle Title'}}}}, {'name': 'list_puzzles_tool', 'description': '列出所有可用的谜题\n\n Returns:\n 谜题列表\n ', 'inputSchema': {'type': 'object', 'title': 'list_puzzles_toolArguments', 'properties': {}}}] |
@forayconsulting/zoom_transcript_mcp | Zoom Transcript Server | Manage your Zoom meeting transcripts effortlessly. List, download, and search through your transcripts with a structured interface, ensuring you never miss important discussions. Streamline your workflow by organizing transcripts by month for easy access. | 2025-03-13T04:01:08.048Z | 14 | https://smithery.ai/server/@forayconsulting/zoom_transcript_mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_recent_transcripts', 'description': 'Get and download transcripts from recent Zoom meetings. This tool will access the Zoom cloud API to fetch and download recent meeting transcripts.', 'inputSchema': {'type': 'object', 'properties': {'count': {'type': 'number', 'maximum': 30, 'minimum': 1, 'description': 'Number of recent meetings to fetch (default: 5)'}}}, 'bestPractices': 'Ask the user before downloading large amounts of transcripts'}, {'name': 'search_transcripts', 'description': 'Search across Zoom meeting transcripts for specific content. This tool will search through locally stored transcripts first.', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'Search query'}, 'dateRange': {'type': 'object', 'properties': {'to': {'type': 'string', 'description': 'End date (ISO format)'}, 'from': {'type': 'string', 'description': 'Start date (ISO format)'}}}}}, 'bestPractices': 'Try searching locally stored transcripts before requesting to download new ones from the cloud'}, {'name': 'extract_action_items', 'description': 'Identify and extract action items, tasks and commitments from meeting transcripts', 'inputSchema': {'type': 'object', 'required': ['meetingId'], 'properties': {'meetingId': {'type': 'string', 'description': 'Meeting ID to extract action items from. Can be either the numeric ID or UUID.'}, 'participant': {'type': 'string', 'description': 'Optional filter to only show action items from or assigned to a specific participant'}}}, 'bestPractices': 'Use this tool to find commitments, follow-ups, and tasks that were agreed to during meetings'}, {'name': 'check_local_transcripts', 'description': 'Check what transcripts are already downloaded and available locally', 'inputSchema': {'type': 'object', 'properties': {'dateRange': {'type': 'object', 'properties': {'to': {'type': 'string', 'description': 'End date (ISO format)'}, 'from': {'type': 'string', 'description': 'Start date (ISO format)'}}}}}, 'bestPractices': 'Use this tool first to see what data is available before searching or downloading'}, {'name': 'download_transcript', 'description': 'Download a specific Zoom meeting transcript from the cloud to local storage', 'inputSchema': {'type': 'object', 'required': ['meetingId'], 'properties': {'meetingId': {'type': 'string', 'description': 'Zoom meeting ID or UUID'}}}, 'bestPractices': 'Ask the user before downloading transcripts unless specifically requested'}, {'name': 'list_meetings', 'description': 'List available Zoom meetings with recordings that exist in the cloud', 'inputSchema': {'type': 'object', 'properties': {'dateRange': {'type': 'object', 'properties': {'to': {'type': 'string', 'description': 'End date (ISO format)'}, 'from': {'type': 'string', 'description': 'Start date (ISO format)'}}}, 'participant': {'type': 'string', 'description': 'Filter by participant name'}}}, 'bestPractices': 'Check local transcripts first before querying the cloud API'}] |
@Ceeon/find-a-mcp | FindMCP | Discover and access MCP services effortlessly. Utilize this directory tool to find and connect with various MCP services, enhancing your LLM's capabilities. Simplify your integration with a user-friendly interface designed for seamless service discovery. | 2025-03-08T19:30:19.097Z | 14 | https://smithery.ai/server/@Ceeon/find-a-mcp | true | null | {
"scanPassed": true
} | [{'name': 'smithery_search', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}] |
@hannesj/mcp-openapi-schema | OpenAPI Schema | Explore and understand OpenAPI specifications effortlessly. Interact with API paths, operations, and schemas to enhance your LLM's capabilities. Get detailed request and response schemas in a format that's easy for LLMs to comprehend. | 2025-03-13T21:01:30.802Z | 14 | https://smithery.ai/server/@hannesj/mcp-openapi-schema | true | null | null | [{'name': 'list-endpoints', 'description': 'Lists all API paths and their HTTP methods with summaries, organized by path', 'inputSchema': {'type': 'object'}}, {'name': 'get-endpoint', 'description': 'Gets detailed information about a specific API endpoint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['path', 'method'], 'properties': {'path': {'type': 'string'}, 'method': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-request-body', 'description': 'Gets the request body schema for a specific endpoint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['path', 'method'], 'properties': {'path': {'type': 'string'}, 'method': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-response-schema', 'description': 'Gets the response schema for a specific endpoint, method, and status code', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['path', 'method'], 'properties': {'path': {'type': 'string'}, 'method': {'type': 'string'}, 'statusCode': {'type': 'string', 'default': '200'}}, 'additionalProperties': False}}, {'name': 'get-path-parameters', 'description': 'Gets the parameters for a specific path', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['path'], 'properties': {'path': {'type': 'string'}, 'method': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'list-components', 'description': 'Lists all schema components (schemas, parameters, responses, etc.)', 'inputSchema': {'type': 'object'}}, {'name': 'get-component', 'description': 'Gets detailed definition for a specific component', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['type', 'name'], 'properties': {'name': {'type': 'string', 'description': 'Component name'}, 'type': {'type': 'string', 'description': 'Component type (e.g., schemas, parameters, responses)'}}, 'additionalProperties': False}}, {'name': 'list-security-schemes', 'description': 'Lists all available security schemes', 'inputSchema': {'type': 'object'}}, {'name': 'get-examples', 'description': 'Gets examples for a specific component or endpoint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['type'], 'properties': {'path': {'type': 'string', 'description': 'API path (required for request/response examples)'}, 'type': {'enum': ['request', 'response', 'component'], 'type': 'string', 'description': 'Type of example to retrieve'}, 'method': {'type': 'string', 'description': 'HTTP method (required for request/response examples)'}, 'statusCode': {'type': 'string', 'description': 'Status code (for response examples)'}, 'componentName': {'type': 'string', 'description': 'Component name (required for component examples)'}, 'componentType': {'type': 'string', 'description': 'Component type (required for component examples)'}}, 'additionalProperties': False}}, {'name': 'search-schema', 'description': 'Searches across paths, operations, and schemas', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['pattern'], 'properties': {'pattern': {'type': 'string', 'description': 'Search pattern (case-insensitive)'}}, 'additionalProperties': False}}] |
@FradSer/mcp-server-mas-sequential-thinking | Sequential Thinking Multi-Agent System | Leverage a collaborative team of specialized agents to enhance your problem-solving capabilities. This system actively processes and synthesizes thoughts, allowing for deeper analysis and dynamic exploration of ideas. Experience a more nuanced thinking process that adapts and evolves with each interaction. | 2025-04-05T07:00:44.653Z | 14 | https://smithery.ai/server/@FradSer/mcp-server-mas-sequential-thinking | true | null | {
"scanPassed": true
} | [{'name': 'sequentialthinking', 'description': "\n Processes one step in a sequential thinking chain using the Agno team in coordinate mode.\n\n The Coordinator agent within the team receives the thought, breaks it down,\n delegates to specialists (Planner, Researcher, Analyzer, Critic, Synthesizer),\n and synthesizes their outputs into a final response. The Coordinator's response\n may include suggestions for revision or branching.\n\n Parameters:\n thought (str): The current thinking step.\n thoughtNumber (int): Current sequence number (≥1)\n totalThoughts (int): Estimated total thoughts needed (≥5 suggested)\n nextThoughtNeeded (bool): Whether another thought step is needed\n isRevision (bool, optional): Whether this revises previous thinking\n revisesThought (int, optional): Which thought is being reconsidered\n branchFromThought (int, optional): If branching, which thought number is the branch point\n branchId (str, optional): Branch identifier\n needsMoreThoughts (bool, optional): If more thoughts are needed beyond current estimate\n\n Returns:\n str: JSON string containing the Coordinator's synthesized response and status.\n ", 'inputSchema': {'type': 'object', 'title': 'sequentialthinkingArguments', 'required': ['thought', 'thoughtNumber', 'totalThoughts', 'nextThoughtNeeded'], 'properties': {'thought': {'type': 'string', 'title': 'Thought'}, 'branchId': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Branchid', 'default': None}, 'isRevision': {'type': 'boolean', 'title': 'Isrevision', 'default': False}, 'thoughtNumber': {'type': 'integer', 'title': 'Thoughtnumber'}, 'totalThoughts': {'type': 'integer', 'title': 'Totalthoughts'}, 'revisesThought': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Revisesthought', 'default': None}, 'branchFromThought': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Branchfromthought', 'default': None}, 'needsMoreThoughts': {'type': 'boolean', 'title': 'Needsmorethoughts', 'default': False}, 'nextThoughtNeeded': {'type': 'boolean', 'title': 'Nextthoughtneeded'}}}}] |
@AudienseCo/mcp-audiense-di-linkedin | LinkedIn Digital Intelligence Server | Interact with LinkedIn's Digital Intelligence services to create and analyze reports, gain insights, and receive typeahead suggestions. Leverage this server to enhance your LinkedIn data analysis capabilities securely and efficiently. | 2025-03-26T12:03:14.483Z | 14 | https://smithery.ai/server/@AudienseCo/mcp-audiense-di-linkedin | true | null | null | [{'name': 'get-linkedin-reports', 'description': 'Get LinkedIn reports for the authorized user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-linkedin-report', 'description': 'Get a specific LinkedIn report by ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'The report ID'}}, 'additionalProperties': False}}, {'name': 'create-linkedin-report', 'description': 'Create a new LinkedIn report with audience definition', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['title', 'audienceDefinition'], 'properties': {'title': {'type': 'string', 'description': 'The report title'}, 'audienceDefinition': {'type': 'object', 'required': ['include'], 'properties': {'exclude': {'type': 'object', 'required': ['or'], 'properties': {'or': {'type': 'object', 'description': 'Object with facet URNs as keys and arrays of facet values as values', 'additionalProperties': {'type': 'array', 'items': {'type': 'string'}}}}, 'description': 'Optional exclusion criteria', 'additionalProperties': False}, 'include': {'type': 'object', 'required': ['and'], 'properties': {'and': {'type': 'array', 'items': {'type': 'object', 'required': ['or'], 'properties': {'or': {'type': 'object', 'description': 'Object with facet URNs as keys and arrays of facet values as values', 'additionalProperties': {'type': 'array', 'items': {'type': 'string'}}}}, 'description': 'OR clause for audience targeting', 'additionalProperties': False}}}, 'additionalProperties': False}}, 'description': 'The audience definition with inclusion and optional exclusion criteria', 'additionalProperties': False}, 'baselineDefinition': {'type': 'object', 'required': ['include'], 'properties': {'exclude': {'type': 'object', 'required': ['or'], 'properties': {'or': {'type': 'object', 'description': 'Object with facet URNs as keys and arrays of facet values as values', 'additionalProperties': {'type': 'array', 'items': {'type': 'string'}}}}, 'description': 'Optional exclusion criteria for baseline', 'additionalProperties': False}, 'include': {'type': 'object', 'required': ['and'], 'properties': {'and': {'type': 'array', 'items': {'type': 'object', 'required': ['or'], 'properties': {'or': {'type': 'object', 'description': 'Object with facet URNs as keys and arrays of facet values as values', 'additionalProperties': {'type': 'array', 'items': {'type': 'string'}}}}, 'description': 'OR clause for baseline audience targeting', 'additionalProperties': False}}}, 'additionalProperties': False}}, 'description': 'The baseline definition (optional)', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'get-linkedin-insights', 'description': 'Get LinkedIn insights for a specific report', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['reportId'], 'properties': {'reportId': {'type': 'string', 'description': 'The report ID'}, 'facetUrns': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter insights by facet URNs (optional)'}}, 'additionalProperties': False}}, {'name': 'get-linkedin-categories', 'description': 'Get LinkedIn categories for a specific report', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['reportId'], 'properties': {'urns': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter categories by URNs (optional)'}, 'reportId': {'type': 'string', 'description': 'The report ID'}}, 'additionalProperties': False}}, {'name': 'get-linkedin-typeahead', 'description': 'Get LinkedIn typeahead suggestions for a specific facet and query. Use the facet parameter to specify which type of suggestions you want to retrieve.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['facet'], 'properties': {'facet': {'enum': ['urn:li:adTargetingFacet:locations', 'urn:li:adTargetingFacet:profileLocations', 'urn:li:adTargetingFacet:titles', 'urn:li:adTargetingFacet:titlesPast', 'urn:li:adTargetingFacet:employersPast', 'urn:li:adTargetingFacet:followedCompanies', 'urn:li:adTargetingFacet:interests', 'urn:li:adTargetingFacet:skills', 'urn:li:adTargetingFacet:employers', 'urn:li:adTargetingFacet:degrees', 'urn:li:adTargetingFacet:memberBehaviors', 'urn:li:adTargetingFacet:schools', 'urn:li:adTargetingFacet:companyCategory', 'urn:li:adTargetingFacet:titlesAll', 'urn:li:adTargetingFacet:industries', 'urn:li:adTargetingFacet:groups', 'urn:li:adTargetingFacet:firstDegreeConnectionCompanies', 'urn:li:adTargetingFacet:employersAll', 'urn:li:adTargetingFacet:fieldsOfStudy'], 'type': 'string', 'description': "The facet URN to search for suggestions. Available facets include: locations, profileLocations, titles, titlesPast, employersPast, followedCompanies, interests, skills, employers, degrees, memberBehaviors, schools, companyCategory, titlesAll, industries, groups, firstDegreeConnectionCompanies, employersAll, fieldsOfStudy. Use with prefix 'urn:li:adTargetingFacet:' (e.g., 'urn:li:adTargetingFacet:locations')."}, 'query': {'type': 'string', 'description': 'The search query (optional). Use this to filter suggestions by keyword.'}}, 'additionalProperties': False}}, {'name': 'get-linkedin-account', 'description': 'Get LinkedIn account details including LinkedIn token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-linkedin-typeahead-facets', 'description': 'List all available facets that can be used with the get-linkedin-typeahead tool', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-linkedin-facet-values', 'description': 'List all LinkedIn facets with predefined values, or filter by a specific facet', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'facet': {'type': 'string', 'description': 'Optional: The specific facet URN to get values for (e.g., urn:li:adTargetingFacet:genders)'}}, 'additionalProperties': False}}, {'name': 'initiate-linkedin-device-auth', 'description': 'Start the device authorization flow to get a device code for authentication', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}] |
@TmRichrd/weather | Weather Server | Provide real-time weather information and forecasts through a standardized interface. Enable applications to query weather data seamlessly for various locations. Enhance user experience by integrating accurate and up-to-date meteorological data. | 2025-04-18T02:01:23.064Z | 14 | https://smithery.ai/server/@TmRichrd/weather | true | null | {
"scanPassed": true
} | [{'name': '0xbot-get-weather', 'description': 'Get weather info for a given city.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['city'], 'properties': {'city': {'type': 'string', 'description': 'city name'}}, 'additionalProperties': False}}] |
@Handwriting-OCR/handwriting-ocr-mcp-server | Handwriting OCR | Integrate your applications with the Handwriting OCR service to effortlessly upload documents, check their processing status, and retrieve OCR results in Markdown format. Enhance your workflows by automating text extraction from images and PDFs with ease. | 2025-03-09T23:30:00.862Z | 14 | https://smithery.ai/server/@Handwriting-OCR/handwriting-ocr-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'upload_document', 'description': 'Upload a document to Handwriting OCR API for transcription', 'inputSchema': {'type': 'object', 'required': ['file'], 'properties': {'file': {'type': 'string', 'description': 'Path to the document (PDF, JPG, PNG, etc.)'}, 'prompt_id': {'type': 'string', 'description': 'Prompt ID (requires Enterprise subscription, will be ignored)'}, 'delete_after': {'type': 'integer', 'description': 'Seconds until auto-deletion (optional)'}, 'extractor_id': {'type': 'string', 'description': 'Extractor ID (required if action is extractor, will be ignored)'}}}}, {'name': 'check_status', 'description': 'Check the status of a document', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Document ID'}}}}, {'name': 'get_text', 'description': 'Retrieve the transcribed text from a document', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Document ID'}}}}] |
@0xhijo/mcp_twitter | Twitter Interaction Server | Enable your AI models to seamlessly interact with Twitter. Create posts, follow users, and retrieve tweets effortlessly through a standardized API. Enhance your applications with powerful Twitter functionalities at your fingertips. | 2025-03-22T08:01:03.021Z | 13 | https://smithery.ai/server/@0xhijo/mcp_twitter | true | null | {
"scanPassed": true
} | [{'name': 'create_twitter_post', 'description': 'Create new X/Twitter post', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['post'], 'properties': {'post': {'type': 'string', 'description': 'This is the string you want to post on X'}}, 'additionalProperties': False}}, {'name': 'reply_twitter_tweet', 'description': 'Reply to specific X/Twitter post by ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tweet_id', 'response_text'], 'properties': {'tweet_id': {'type': 'string', 'description': 'The tweet id you want to reply'}, 'response_text': {'type': 'string', 'description': 'This is the response you will send to the tweet'}}, 'additionalProperties': False}}, {'name': 'get_last_tweet', 'description': 'Get most recent post from specified X/Twitter account', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['account_name'], 'properties': {'account_name': {'type': 'string', 'description': 'This is the account_name you want to get the latest tweet'}}, 'additionalProperties': False}}, {'name': 'get_last_tweets_options', 'description': 'Get specified number of posts matching search query', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query', 'maxTeets', 'reply'], 'properties': {'query': {'type': 'string', 'description': 'The search query . Any Twitter-compatible query format can be used'}, 'reply': {'type': 'boolean', 'description': 'If you want to include replyed tweet in your request'}, 'maxTeets': {'type': 'number', 'description': 'The max tweets you want to get'}}, 'additionalProperties': False}}, {'name': 'create_and_post_twitter_thread', 'description': 'Create and publish X/Twitter thread', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['thread'], 'properties': {'thread': {'type': 'array', 'items': {'type': 'string'}, 'description': 'This is the array of where every index of this array contain a part of your thread'}}, 'additionalProperties': False}}, {'name': 'follow_twitter_from_username', 'description': 'Follow X/Twitter user by username', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['username'], 'properties': {'username': {'type': 'string', 'description': 'The username you want to follow'}}, 'additionalProperties': False}}, {'name': 'get_twitter_profile_from_username', 'description': 'Get full X/Twitter profile data by username', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['username'], 'properties': {'username': {'type': 'string', 'description': 'The username you want to get the profile'}}, 'additionalProperties': False}}, {'name': 'get_twitter_user_id_from_username', 'description': 'Get X/Twitter user ID from username', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['username'], 'properties': {'username': {'type': 'string', 'description': 'The username you want get the user_id'}}, 'additionalProperties': False}}, {'name': 'get_last_tweet_and_replies_from_user', 'description': 'Get recent X/Twitter posts and replies from user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['username'], 'properties': {'username': {'type': 'string', 'description': 'The username you want to get last tweets and replies'}, 'maxTweets': {'type': 'number', 'description': 'The number of tweets/replies you want to get from a User'}}, 'additionalProperties': False}}, {'name': 'get_last_tweet_from_user', 'description': 'Get recent X/Twitter posts from user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['username'], 'properties': {'username': {'type': 'string', 'description': 'The username you want to get last tweets'}, 'maxTweets': {'type': 'number', 'description': 'The number of tweets you want to get from a User'}}, 'additionalProperties': False}}, {'name': 'get_own_twitter_account_info', 'description': 'Get current account profile data', 'inputSchema': {'type': 'object'}}] |
@gergelyszerovay/mcp-server-qdrant-retrieve | Qdrant Retrieve | Enable semantic search capabilities across multiple collections in a Qdrant vector database. Retrieve semantically similar documents efficiently and track collection sources for better context. Enhance your applications with powerful multi-query support and configurable result counts. | 2025-04-04T01:01:04.153Z | 13 | https://smithery.ai/server/@gergelyszerovay/mcp-server-qdrant-retrieve | true | null | {
"scanPassed": true
} | [{'name': 'qdrant_retrieve', 'description': 'Retrieves semantically similar documents from multiple Qdrant vector store collections based on multiple queries', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['collectionNames', 'query'], 'properties': {'topK': {'type': 'integer', 'default': 3, 'maximum': 100, 'minimum': 1, 'description': 'Number of top similar documents to retrieve'}, 'query': {'type': 'array', 'items': {'type': 'string', 'maxLength': 1000, 'minLength': 1, 'description': 'Query text to search for'}, 'maxItems': 10, 'minItems': 1, 'description': 'Array of query texts to search for'}, 'collectionNames': {'type': 'array', 'items': {'type': 'string', 'maxLength': 100, 'minLength': 1}, 'maxItems': 10, 'minItems': 1, 'description': 'Names of the Qdrant collections to search across'}}, 'additionalProperties': False}}] |
@DevEnterpriseSoftware/scrapi-mcp | ScrAPI MCP Server | Scrape web pages effortlessly with powerful and reliable features. Extract data from any website, even those with bot detection or geolocation restrictions. Enhance your data collection capabilities with ease using this intuitive MCP server. | 2025-04-13T02:00:37.803Z | 13 | https://smithery.ai/server/@DevEnterpriseSoftware/scrapi-mcp | true | null | {
"scanPassed": true
} | [{'name': 'scrape_url_html', 'description': 'Use a URL to scrape a website using the ScrAPI service and retrieve the result as HTML. Use this for scraping website content that is difficult to access because of bot detection, captchas or even geolocation restrictions. The result will be in HTML which is preferable if advanced parsing is required.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'url': {'type': 'string', 'format': 'uri'}}, 'additionalProperties': False}}, {'name': 'scrape_url_markdown', 'description': 'Use a URL to scrape a website using the ScrAPI service and retrieve the result as Markdown. Use this for scraping website content that is difficult to access because of bot detection, captchas or even geolocation restrictions. The result will be in Markdown which is preferable if the text content of the webpage is important and not the structural information of the page.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'url': {'type': 'string', 'format': 'uri'}}, 'additionalProperties': False}}] |
@yellowgg2/mcp-bookstack | BookStack MCP Server | Search and retrieve structured data from your BookStack pages effortlessly. Get clean, converted content with customizable queries and pagination for a seamless reading experience. Enhance your documentation access with robust error handling and validation. | 2025-04-09T13:39:14.882Z | 13 | https://smithery.ai/server/@yellowgg2/mcp-bookstack | true | null | {
"scanPassed": true
} | [{'name': 'search_pages', 'description': 'Search pages from Bookstack', 'inputSchema': {'type': 'object', 'properties': {'page': {'type': 'number', 'default': 1, 'minimum': 1, 'description': 'Page number to return'}, 'count': {'type': 'number', 'default': 10, 'maximum': 30, 'minimum': 1, 'description': 'Number of pages to return (max 30)'}, 'query': {'type': 'string', 'default': '', 'description': 'Query to search for pages'}}}}] |
@rapidappio/rapidapp-mcp | Rapidapp | Enable AI assistants to perform Rapidapp PostgreSQL database operations seamlessly through the Rapidapp API. Simplify your database interactions by invoking the Rapidapp tool directly in your conversations. Get started quickly with easy installation and configuration options for various platforms. | 2025-04-10T06:59:13.767Z | 13 | https://smithery.ai/server/@rapidappio/rapidapp-mcp | true | {
"scanPassed": true
} | [{'name': 'create_database', 'description': 'Create a new Rapidapp PostgreSQL database', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the database to create'}}}}, {'name': 'list_databases', 'description': 'List all Rapidapp PostgreSQL databases', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'get_database', 'description': 'Get details of a Rapidapp PostgreSQL database', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'ID of the database to retrieve'}}}}] |
|
@AudienseCo/mcp-audiense-demand | Audiense Demand | Create and analyze demand reports effortlessly. Gain insights across various channels and countries to enhance your decision-making process. Leverage the power of Audiense Demand with seamless integration into your workflow. | 2025-03-25T14:34:46.414Z | 13 | https://smithery.ai/server/@AudienseCo/mcp-audiense-demand | true | null | {
"scanPassed": true
} | [{'name': 'initiate-device-auth', 'description': 'Start the device authorization flow to get a device code for authentication', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'create-demand-report', 'description': 'Create a new demand report', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['title', 'entitiesReferences', 'userEmail'], 'properties': {'title': {'type': 'string', 'description': 'Title of the demand report'}, 'userEmail': {'type': 'string', 'format': 'email', 'description': 'Email of the user creating the report'}, 'entitiesReferences': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of entity names for the report'}}, 'additionalProperties': False}}, {'name': 'get-demand-reports', 'description': 'Get demand reports for the authorized user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'paginationEnd': {'type': 'number', 'description': 'Pagination end index'}, 'paginationStart': {'type': 'number', 'description': 'Pagination start index'}}, 'additionalProperties': False}}, {'name': 'get-demand-report-info', 'description': 'Get detailed information about a specific demand report', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['reportId'], 'properties': {'reportId': {'type': 'string', 'description': 'The ID of the report to get information for'}}, 'additionalProperties': False}}, {'name': 'request-entities', 'description': 'Request not found entities', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['entityNames', 'userEmail'], 'properties': {'userEmail': {'type': 'string', 'format': 'email', 'description': 'Email of the user requesting the entities'}, 'entityNames': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of entity names to request'}}, 'additionalProperties': False}}, {'name': 'check-entities', 'description': 'Check if entities exist', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['entities'], 'properties': {'entities': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of entity names to check'}}, 'additionalProperties': False}}, {'name': 'get-demand-report-summary-by-channels', 'description': 'Get a summary of the demand report broken down by channels', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['reportId'], 'properties': {'offset': {'type': 'number', 'default': 0, 'description': 'Pagination offset'}, 'country': {'enum': ['Weighted-Total', 'Weighted-Total', 'Global', 'US', 'GB', 'AU', 'CA', 'DE', 'FR', 'IN', 'JP', 'IT', 'ES', 'BR', 'MX', 'AR', 'NL', 'SE', 'DK', 'NO', 'PL', 'TR'], 'type': 'string', 'default': 'Weighted-Total', 'description': 'The country to filter by.'}, 'reportId': {'type': 'string', 'description': 'The ID of the report to get the summary for'}, 'entityNames': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Optional array of entity names to filter by'}}, 'additionalProperties': False}}, {'name': 'get-demand-report-summary-by-countries', 'description': 'Get a summary of the demand report broken down by countries', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['reportId', 'countries'], 'properties': {'offset': {'type': 'number', 'description': 'Pagination offset'}, 'platform': {'enum': ['youtube', 'tiktok', 'instagram', 'twitter', 'youtube_search_term', 'google', 'google_growth', 'url', 'all_platforms'], 'type': 'string', 'default': 'all_platforms', 'description': 'Platform name to analyze.'}, 'reportId': {'type': 'string', 'description': 'The ID of the report to get the summary for'}, 'countries': {'type': 'array', 'items': {'enum': ['Weighted-Total', 'Weighted-Total', 'Global', 'US', 'GB', 'AU', 'CA', 'DE', 'FR', 'IN', 'JP', 'IT', 'ES', 'BR', 'MX', 'AR', 'NL', 'SE', 'DK', 'NO', 'PL', 'TR'], 'type': 'string'}, 'description': 'Array of country codes to analyze.'}, 'entityNames': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Optional array of entity names to filter by'}}, 'additionalProperties': False}}, {'name': 'get-youtube-search-volume-summary', 'description': 'Get YouTube search volume summary for entities in a demand report', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['reportId'], 'properties': {'country': {'enum': ['Weighted-Total', 'Global', 'US', 'GB', 'AU', 'CA', 'DE', 'FR', 'IN', 'JP', 'IT', 'ES', 'BR', 'MX', 'AR', 'NL', 'SE', 'DK', 'NO', 'PL', 'TR'], 'type': 'string', 'default': 'Global', 'description': 'Country code to analyze'}, 'reportId': {'type': 'string', 'description': 'The ID of the report to get the summary for'}, 'entityNames': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Optional array of entity names to filter by'}}, 'additionalProperties': False}}, {'name': 'get-google-search-volume-summary', 'description': 'Get Google search volume summary for entities in a demand report', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['reportId'], 'properties': {'country': {'enum': ['Weighted-Total', 'Global', 'US', 'GB', 'AU', 'CA', 'DE', 'FR', 'IN', 'JP', 'IT', 'ES', 'BR', 'MX', 'AR', 'NL', 'SE', 'DK', 'NO', 'PL', 'TR'], 'type': 'string', 'default': 'Global', 'description': 'Country code to analyze'}, 'reportId': {'type': 'string', 'description': 'The ID of the report to get the summary for'}, 'entityNames': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Optional array of entity names to filter by'}}, 'additionalProperties': False}}] |
@JackKuo666/sci-hub-mcp-server | Sci-Hub MCP Server | Enable AI assistants to search, access, and analyze academic papers through Sci-Hub using a simple interface. Retrieve detailed metadata and download full-text PDFs programmatically, enhancing research capabilities for users. | 2025-04-04T17:44:57.013Z | 13 | https://smithery.ai/server/@JackKuo666/sci-hub-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'search_scihub_by_doi', 'description': '', 'inputSchema': {'type': 'object', 'title': 'search_scihub_by_doiArguments', 'required': ['doi'], 'properties': {'doi': {'type': 'string', 'title': 'Doi'}}}}, {'name': 'search_scihub_by_title', 'description': '', 'inputSchema': {'type': 'object', 'title': 'search_scihub_by_titleArguments', 'required': ['title'], 'properties': {'title': {'type': 'string', 'title': 'Title'}}}}, {'name': 'search_scihub_by_keyword', 'description': '', 'inputSchema': {'type': 'object', 'title': 'search_scihub_by_keywordArguments', 'required': ['keyword'], 'properties': {'keyword': {'type': 'string', 'title': 'Keyword'}, 'num_results': {'type': 'integer', 'title': 'Num Results', 'default': 10}}}}, {'name': 'download_scihub_pdf', 'description': '', 'inputSchema': {'type': 'object', 'title': 'download_scihub_pdfArguments', 'required': ['pdf_url', 'output_path'], 'properties': {'pdf_url': {'type': 'string', 'title': 'Pdf Url'}, 'output_path': {'type': 'string', 'title': 'Output Path'}}}}, {'name': 'get_paper_metadata', 'description': '', 'inputSchema': {'type': 'object', 'title': 'get_paper_metadataArguments', 'required': ['doi'], 'properties': {'doi': {'type': 'string', 'title': 'Doi'}}}}] |
@devlimelabs/meilisearch-ts-mcp | Meilisearch MCP Server | Enable AI assistants to interact with Meilisearch through a standardized interface. | 2025-02-25T20:00:51.448Z | 13 | https://smithery.ai/server/@devlimelabs/meilisearch-ts-mcp | true | null | {
"scanPassed": true
} | [{'name': 'list-indexes', 'description': 'List all indexes in the Meilisearch instance', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'maximum': 100, 'minimum': 1, 'description': 'Maximum number of indexes to return'}, 'offset': {'type': 'number', 'minimum': 0, 'description': 'Number of indexes to skip'}}, 'additionalProperties': False}}, {'name': 'get-index', 'description': 'Get information about a specific Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'create-index', 'description': 'Create a new Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier for the new index'}, 'primaryKey': {'type': 'string', 'description': 'Primary key for the index'}}, 'additionalProperties': False}}, {'name': 'update-index', 'description': 'Update a Meilisearch index (currently only supports updating the primary key)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'primaryKey'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'primaryKey': {'type': 'string', 'description': 'New primary key for the index'}}, 'additionalProperties': False}}, {'name': 'delete-index', 'description': 'Delete a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index to delete'}}, 'additionalProperties': False}}, {'name': 'swap-indexes', 'description': 'Swap two or more indexes in Meilisearch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexes'], 'properties': {'indexes': {'type': 'string', 'description': 'JSON array of index pairs to swap, e.g. [["movies", "movies_new"]]'}}, 'additionalProperties': False}}, {'name': 'get-documents', 'description': 'Get documents from a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'limit': {'type': 'number', 'maximum': 1000, 'minimum': 1, 'description': 'Maximum number of documents to return (default: 20)'}, 'fields': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Fields to return in the documents'}, 'filter': {'type': 'string', 'description': 'Filter query to apply'}, 'offset': {'type': 'number', 'minimum': 0, 'description': 'Number of documents to skip (default: 0)'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-document', 'description': 'Get a document by its ID from a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'documentId'], 'properties': {'fields': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Fields to return in the document'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'documentId': {'type': 'string', 'description': 'ID of the document to retrieve'}}, 'additionalProperties': False}}, {'name': 'add-documents', 'description': 'Add documents to a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'documents'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'documents': {'type': 'string', 'description': 'JSON array of documents to add'}, 'primaryKey': {'type': 'string', 'description': 'Primary key for the documents'}}, 'additionalProperties': False}}, {'name': 'update-documents', 'description': 'Update documents in a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'documents'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'documents': {'type': 'string', 'description': 'JSON array of documents to update'}, 'primaryKey': {'type': 'string', 'description': 'Primary key for the documents'}}, 'additionalProperties': False}}, {'name': 'delete-document', 'description': 'Delete a document by its ID from a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'documentId'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'documentId': {'type': 'string', 'description': 'ID of the document to delete'}}, 'additionalProperties': False}}, {'name': 'delete-documents', 'description': 'Delete multiple documents by their IDs from a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'documentIds'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'documentIds': {'type': 'string', 'description': 'JSON array of document IDs to delete'}}, 'additionalProperties': False}}, {'name': 'delete-all-documents', 'description': 'Delete all documents in a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'search', 'description': 'Search for documents in a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'q'], 'properties': {'q': {'type': 'string', 'description': 'Search query'}, 'sort': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Attributes to sort by, e.g. ["price:asc"]'}, 'limit': {'type': 'number', 'maximum': 1000, 'minimum': 1, 'description': 'Maximum number of results to return (default: 20)'}, 'facets': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Facets to return'}, 'filter': {'type': 'string', 'description': 'Filter query to apply'}, 'offset': {'type': 'number', 'minimum': 0, 'description': 'Number of results to skip (default: 0)'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'cropLength': {'type': 'number', 'description': 'Length at which to crop cropped attributes'}, 'highlightPreTag': {'type': 'string', 'description': 'Tag to insert before highlighted text'}, 'attributesToCrop': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Attributes to crop'}, 'highlightPostTag': {'type': 'string', 'description': 'Tag to insert after highlighted text'}, 'matchingStrategy': {'type': 'string', 'description': "Matching strategy: 'all' or 'last'"}, 'showMatchesPosition': {'type': 'boolean', 'description': 'Whether to include match positions in results'}, 'attributesToRetrieve': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Attributes to include in results'}, 'attributesToHighlight': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Attributes to highlight'}}, 'additionalProperties': False}}, {'name': 'multi-search', 'description': 'Perform multiple searches in one request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['searches'], 'properties': {'searches': {'type': 'string', 'description': 'JSON array of search queries, each with indexUid and q fields'}}, 'additionalProperties': False}}, {'name': 'facet-search', 'description': 'Search for facet values matching specific criteria', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'facetName'], 'properties': {'filter': {'type': 'string', 'description': 'Filter to apply to the base search'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'facetName': {'type': 'string', 'description': 'Name of the facet to search'}, 'facetQuery': {'type': 'string', 'description': 'Query to match against facet values'}}, 'additionalProperties': False}}, {'name': 'get-settings', 'description': 'Get all settings for a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-settings', 'description': 'Update settings for a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'settings'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'settings': {'type': 'string', 'description': 'JSON object containing settings to update'}}, 'additionalProperties': False}}, {'name': 'reset-settings', 'description': 'Reset all settings for a Meilisearch index to their default values', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-searchable-attributes', 'description': 'Get the searchable attributes setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-displayed-attributes', 'description': 'Get the displayed attributes setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-filterable-attributes', 'description': 'Get the filterable attributes setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-sortable-attributes', 'description': 'Get the sortable attributes setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-ranking-rules', 'description': 'Get the ranking rules setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-stop-words', 'description': 'Get the stop words setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-synonyms', 'description': 'Get the synonyms setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-distinct-attribute', 'description': 'Get the distinct attribute setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-typo-tolerance', 'description': 'Get the typo tolerance setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-faceting', 'description': 'Get the faceting setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'get-pagination', 'description': 'Get the pagination setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-searchable-attributes', 'description': 'Update the searchable attributes setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-displayed-attributes', 'description': 'Update the displayed attributes setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-filterable-attributes', 'description': 'Update the filterable attributes setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-sortable-attributes', 'description': 'Update the sortable attributes setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-ranking-rules', 'description': 'Update the ranking rules setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-stop-words', 'description': 'Update the stop words setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-synonyms', 'description': 'Update the synonyms setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-distinct-attribute', 'description': 'Update the distinct attribute setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-typo-tolerance', 'description': 'Update the typo tolerance setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-faceting', 'description': 'Update the faceting setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'update-pagination', 'description': 'Update the pagination setting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'value'], 'properties': {'value': {'type': 'string', 'description': 'JSON value for the setting'}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-searchable-attributes', 'description': 'Reset the searchable attributes setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-displayed-attributes', 'description': 'Reset the displayed attributes setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-filterable-attributes', 'description': 'Reset the filterable attributes setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-sortable-attributes', 'description': 'Reset the sortable attributes setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-ranking-rules', 'description': 'Reset the ranking rules setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-stop-words', 'description': 'Reset the stop words setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-synonyms', 'description': 'Reset the synonyms setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-distinct-attribute', 'description': 'Reset the distinct attribute setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-typo-tolerance', 'description': 'Reset the typo tolerance setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-faceting', 'description': 'Reset the faceting setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-pagination', 'description': 'Reset the pagination setting to its default value', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'enable-vector-search', 'description': 'Enable the vector search experimental feature in Meilisearch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-experimental-features', 'description': 'Get the status of experimental features in Meilisearch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'update-embedders', 'description': 'Configure embedders for vector search', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'embedders'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'embedders': {'type': 'string', 'description': 'JSON object containing embedder configurations'}}, 'additionalProperties': False}}, {'name': 'get-embedders', 'description': 'Get the embedders configuration for an index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'reset-embedders', 'description': 'Reset the embedders configuration for an index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid'], 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}}, 'additionalProperties': False}}, {'name': 'vector-search', 'description': 'Perform a vector search in a Meilisearch index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['indexUid', 'vector'], 'properties': {'limit': {'type': 'number', 'maximum': 1000, 'minimum': 1, 'description': 'Maximum number of results to return (default: 20)'}, 'query': {'type': 'string', 'description': "Text query to search for (if using 'embedder' instead of 'vector')"}, 'filter': {'type': 'string', 'description': "Filter to apply (e.g., 'genre = horror AND year > 2020')"}, 'hybrid': {'type': 'boolean', 'description': 'Whether to perform a hybrid search (combining vector and text search)'}, 'offset': {'type': 'number', 'minimum': 0, 'description': 'Number of results to skip (default: 0)'}, 'vector': {'type': 'string', 'description': 'JSON array representing the vector to search for'}, 'embedder': {'type': 'string', 'description': "Name of the embedder to use (if omitted, a 'vector' must be provided)"}, 'indexUid': {'type': 'string', 'description': 'Unique identifier of the index'}, 'attributes': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Attributes to include in the vector search'}, 'hybridRatio': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Ratio of vector vs text search in hybrid search (0-1, default: 0.5)'}}, 'additionalProperties': False}}, {'name': 'health', 'description': 'Check if the Meilisearch server is healthy', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'version', 'description': 'Get the version information of the Meilisearch server', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'info', 'description': 'Get the system information of the Meilisearch server', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'stats', 'description': 'Get statistics about all indexes or a specific index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'indexUid': {'type': 'string', 'description': 'Unique identifier of the index (optional, if not provided stats for all indexes will be returned)'}}, 'additionalProperties': False}}, {'name': 'get-tasks', 'description': 'Get information about tasks with optional filtering', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'from': {'type': 'number', 'minimum': 0, 'description': 'Task uid from which to start fetching'}, 'type': {'enum': ['indexCreation', 'indexUpdate', 'indexDeletion', 'documentAddition', 'documentUpdate', 'documentDeletion', 'settingsUpdate', 'dumpCreation', 'taskCancelation'], 'type': 'string', 'description': 'Type of tasks to return'}, 'limit': {'type': 'number', 'minimum': 0, 'description': 'Maximum number of tasks to return'}, 'status': {'enum': ['enqueued', 'processing', 'succeeded', 'failed', 'canceled'], 'type': 'string', 'description': 'Status of tasks to return'}, 'indexUids': {'type': 'array', 'items': {'type': 'string'}, 'description': 'UIDs of the indexes on which tasks were performed'}}, 'additionalProperties': False}}, {'name': 'delete-tasks', 'description': 'Delete tasks based on provided filters', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'uids': {'type': 'array', 'items': {'type': 'number'}, 'description': 'UIDs of the tasks to delete'}, 'types': {'type': 'array', 'items': {'enum': ['indexCreation', 'indexUpdate', 'indexDeletion', 'documentAddition', 'documentUpdate', 'documentDeletion', 'settingsUpdate', 'dumpCreation', 'taskCancelation'], 'type': 'string'}, 'description': 'Types of tasks to delete'}, 'statuses': {'type': 'array', 'items': {'enum': ['succeeded', 'failed', 'canceled'], 'type': 'string'}, 'description': 'Statuses of tasks to delete'}, 'beforeUid': {'type': 'number', 'description': 'Delete tasks whose uid is before this value'}, 'indexUids': {'type': 'array', 'items': {'type': 'string'}, 'description': 'UIDs of the indexes on which tasks to delete were performed'}, 'canceledBy': {'type': 'array', 'items': {'type': 'number'}, 'description': 'UIDs of the tasks that canceled tasks to delete'}, 'beforeStartedAt': {'type': 'string', 'description': 'Delete tasks that started processing before this date (ISO 8601 format)'}, 'beforeFinishedAt': {'type': 'string', 'description': 'Delete tasks that finished processing before this date (ISO 8601 format)'}}, 'additionalProperties': False}}, {'name': 'list-tasks', 'description': 'List tasks with optional filtering', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'from': {'type': 'number', 'minimum': 0, 'description': 'Task uid from which to start fetching'}, 'uids': {'type': 'array', 'items': {'type': 'number'}, 'description': 'UIDs of specific tasks to return'}, 'limit': {'type': 'number', 'minimum': 0, 'description': 'Maximum number of tasks to return'}, 'types': {'type': 'array', 'items': {'enum': ['indexCreation', 'indexUpdate', 'indexDeletion', 'documentAddition', 'documentUpdate', 'documentDeletion', 'settingsUpdate', 'dumpCreation', 'taskCancelation'], 'type': 'string'}, 'description': 'Types of tasks to return'}, 'statuses': {'type': 'array', 'items': {'enum': ['enqueued', 'processing', 'succeeded', 'failed', 'canceled'], 'type': 'string'}, 'description': 'Statuses of tasks to return'}, 'indexUids': {'type': 'array', 'items': {'type': 'string'}, 'description': 'UIDs of the indexes on which tasks were performed'}}, 'additionalProperties': False}}, {'name': 'get-task', 'description': 'Get information about a specific task', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['taskUid'], 'properties': {'taskUid': {'type': 'number', 'description': 'Unique identifier of the task'}}, 'additionalProperties': False}}, {'name': 'cancel-tasks', 'description': 'Cancel tasks based on provided filters', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'uids': {'type': 'array', 'items': {'type': 'number'}, 'description': 'UIDs of the tasks to cancel'}, 'types': {'type': 'array', 'items': {'enum': ['indexCreation', 'indexUpdate', 'indexDeletion', 'documentAddition', 'documentUpdate', 'documentDeletion', 'settingsUpdate', 'dumpCreation', 'taskCancelation'], 'type': 'string'}, 'description': 'Types of tasks to cancel'}, 'statuses': {'type': 'array', 'items': {'enum': ['enqueued', 'processing'], 'type': 'string'}, 'description': 'Statuses of tasks to cancel'}, 'indexUids': {'type': 'array', 'items': {'type': 'string'}, 'description': 'UIDs of the indexes on which tasks to cancel were performed'}}, 'additionalProperties': False}}, {'name': 'wait-for-task', 'description': 'Wait for a specific task to complete', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['taskUid'], 'properties': {'taskUid': {'type': 'number', 'description': 'Unique identifier of the task to wait for'}, 'timeoutMs': {'type': 'number', 'minimum': 0, 'description': 'Maximum time to wait in milliseconds (default: 5000)'}, 'intervalMs': {'type': 'number', 'minimum': 100, 'description': 'Polling interval in milliseconds (default: 500)'}}, 'additionalProperties': False}}] |
@bitrise-io/bitrise-mcp | Bitrise API Server | Enable seamless management of Bitrise apps, builds, artifacts, and more through a secure API token-based interface. Access comprehensive Bitrise API functionalities including app registration, build triggering, artifact handling, and release management. Optimize your CI/CD workflows by integrating Bitrise operations directly into your MCP-compatible client. | 2025-04-18T14:00:40.961Z | 13 | https://smithery.ai/server/@bitrise-io/bitrise-mcp | true | null | null | [{'name': 'list_apps', 'description': 'List all the apps available for the authenticated account.', 'inputSchema': {'type': 'object', 'title': 'list_appsArguments', 'properties': {'next': {'type': 'string', 'title': 'Next', 'default': None, 'description': 'Slug of the first app in the response'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 50, 'description': 'Max number of elements per page (default: 50)'}, 'sort_by': {'type': 'string', 'title': 'Sort By', 'default': 'last_build_at', 'description': 'Order of the apps: last_build_at (default) or created_at. If set, you should accept the response as sorted.'}}}}, {'name': 'register_app', 'description': "Add a new app to Bitrise. After this app should be finished on order to be registered completely on Bitrise (via the finish_bitrise_app tool). Before doing this step, try understanding the repository details from the repository URL. This is a two-step process. First, you register the app with the Bitrise API, and then you finish the setup. The first step creates a new app in Bitrise, and the second step configures it with the necessary settings. If the user has multiple workspaces, always prompt the user to choose which one you should use. Don't prompt the user for finishing the app, just do it automatically.", 'inputSchema': {'type': 'object', 'title': 'register_appArguments', 'required': ['repo_url', 'is_public', 'organization_slug'], 'properties': {'provider': {'type': 'string', 'title': 'Provider', 'default': 'github', 'description': 'Repository provider'}, 'repo_url': {'type': 'string', 'title': 'Repo Url', 'description': 'Repository URL'}, 'is_public': {'type': 'boolean', 'title': 'Is Public', 'description': 'Whether the app\'s builds visibility is "public"'}, 'project_type': {'type': 'string', 'title': 'Project Type', 'default': 'other', 'description': 'Type of project (ios, android, etc.)'}, 'organization_slug': {'type': 'string', 'title': 'Organization Slug', 'description': 'The organization (aka workspace) the app to add to'}}}}, {'name': 'finish_bitrise_app', 'description': 'Finish the setup of a Bitrise app. If this is successful, a build can be triggered via trigger_bitrise_build. If you have access to the repository, decide the project type, the stack ID, and the config to use, based on https://stacks.bitrise.io/, and the config should be also based on the projec type.', 'inputSchema': {'type': 'object', 'title': 'finish_bitrise_appArguments', 'required': ['app_slug'], 'properties': {'mode': {'type': 'string', 'title': 'Mode', 'default': 'manual', 'description': 'The mode of setup.'}, 'config': {'type': 'string', 'title': 'Config', 'default': 'other-config', 'description': 'The configuration to use for the app (default is "default-android-config", other valid values are "other-config", "default-ios-config", "default-macos-config", etc).'}, 'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'The slug of the Bitrise app to finish setup for.'}, 'stack_id': {'type': 'string', 'title': 'Stack Id', 'default': 'linux-docker-android-22.04', 'description': 'The stack ID to use for the app.'}, 'project_type': {'type': 'string', 'title': 'Project Type', 'default': 'other', 'description': 'The type of project (e.g., android, ios, flutter, etc.).'}}}}, {'name': 'get_app', 'description': 'Get the details of a specific app.', 'inputSchema': {'type': 'object', 'title': 'get_appArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'delete_app', 'description': "Delete an app from Bitrise. When deleting apps belonging to multiple workspaces always confirm that which workspaces' apps the user wants to delete.", 'inputSchema': {'type': 'object', 'title': 'delete_appArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'update_app', 'description': 'Update an app.', 'inputSchema': {'type': 'object', 'title': 'update_appArguments', 'required': ['app_slug', 'is_public', 'project_type', 'provider', 'repo_url'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'provider': {'type': 'string', 'title': 'Provider', 'description': 'Repository provider'}, 'repo_url': {'type': 'string', 'title': 'Repo Url', 'description': 'Repository URL'}, 'is_public': {'type': 'boolean', 'title': 'Is Public', 'description': 'Whether the app\'s builds visibility is "public"'}, 'project_type': {'type': 'string', 'title': 'Project Type', 'description': 'Type of project'}}}}, {'name': 'get_bitrise_yml', 'description': 'Get the current Bitrise YML config file of a specified Bitrise app.', 'inputSchema': {'type': 'object', 'title': 'get_bitrise_ymlArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app (e.g., "d8db74e2675d54c4" or "8eb495d0-f653-4eed-910b-8d6b56cc0ec7")'}}}}, {'name': 'update_bitrise_yml', 'description': 'Update the Bitrise YML config file of a specified Bitrise app.', 'inputSchema': {'type': 'object', 'title': 'update_bitrise_ymlArguments', 'required': ['app_slug', 'bitrise_yml_as_json'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app (e.g., "d8db74e2675d54c4" or "8eb495d0-f653-4eed-910b-8d6b56cc0ec7")'}, 'bitrise_yml_as_json': {'type': 'string', 'title': 'Bitrise Yml As Json', 'description': 'The new Bitrise YML config file content to be updated. It must be a string.'}}}}, {'name': 'list_branches', 'description': "List the branches with existing builds of an app's repository.", 'inputSchema': {'type': 'object', 'title': 'list_branchesArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'register_ssh_key', 'description': 'Add an SSH-key to a specific app.', 'inputSchema': {'type': 'object', 'title': 'register_ssh_keyArguments', 'required': ['app_slug', 'auth_ssh_private_key', 'auth_ssh_public_key', 'is_register_key_into_provider_service'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'auth_ssh_public_key': {'type': 'string', 'title': 'Auth Ssh Public Key', 'description': 'Public SSH key'}, 'auth_ssh_private_key': {'type': 'string', 'title': 'Auth Ssh Private Key', 'description': 'Private SSH key'}, 'is_register_key_into_provider_service': {'type': 'boolean', 'title': 'Is Register Key Into Provider Service', 'description': 'Register the key in the provider service'}}}}, {'name': 'register_webhook', 'description': 'Register an incoming webhook for a specific application.', 'inputSchema': {'type': 'object', 'title': 'register_webhookArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'list_builds', 'description': 'List all the builds of a specified Bitrise app or all accessible builds.', 'inputSchema': {'type': 'object', 'title': 'list_buildsArguments', 'properties': {'next': {'type': 'string', 'title': 'Next', 'default': None, 'description': 'Slug of the first build in the response'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': None, 'description': 'Max number of elements per page (default: 50)'}, 'branch': {'type': 'string', 'title': 'Branch', 'default': None, 'description': 'Filter builds by branch'}, 'status': {'type': 'integer', 'title': 'Status', 'default': None, 'description': 'Filter builds by status (0: not finished, 1: successful, 2: failed, 3: aborted, 4: in-progress)'}, 'sort_by': {'type': 'string', 'title': 'Sort By', 'default': 'created_at', 'description': 'Order of builds: created_at (default), running_first'}, 'app_slug': {'type': 'string', 'title': 'App Slug', 'default': None, 'description': 'Identifier of the Bitrise app'}, 'workflow': {'type': 'string', 'title': 'Workflow', 'default': None, 'description': 'Filter builds by workflow'}}}}, {'name': 'trigger_bitrise_build', 'description': 'Trigger a new build/pipeline for a specified Bitrise app.', 'inputSchema': {'type': 'object', 'title': 'trigger_bitrise_buildArguments', 'required': ['app_slug'], 'properties': {'branch': {'type': 'string', 'title': 'Branch', 'default': 'main', 'description': 'The branch to build'}, 'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app (e.g., "d8db74e2675d54c4" or "8eb495d0-f653-4eed-910b-8d6b56cc0ec7")'}, 'commit_hash': {'type': 'string', 'title': 'Commit Hash', 'default': None, 'description': 'The commit hash for the build'}, 'workflow_id': {'type': 'string', 'title': 'Workflow Id', 'default': None, 'description': 'The workflow to build'}, 'commit_message': {'type': 'string', 'title': 'Commit Message', 'default': None, 'description': 'The commit message for the build'}}}}, {'name': 'get_build', 'description': 'Get a specific build of a given app.', 'inputSchema': {'type': 'object', 'title': 'get_buildArguments', 'required': ['app_slug', 'build_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'build_slug': {'type': 'string', 'title': 'Build Slug', 'description': 'Identifier of the build'}}}}, {'name': 'abort_build', 'description': 'Abort a specific build.', 'inputSchema': {'type': 'object', 'title': 'abort_buildArguments', 'required': ['app_slug', 'build_slug'], 'properties': {'reason': {'type': 'string', 'title': 'Reason', 'default': None, 'description': 'Reason for aborting the build'}, 'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'build_slug': {'type': 'string', 'title': 'Build Slug', 'description': 'Identifier of the build'}}}}, {'name': 'get_build_log', 'description': 'Get the build log of a specified build of a Bitrise app.', 'inputSchema': {'type': 'object', 'title': 'get_build_logArguments', 'required': ['app_slug', 'build_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app (e.g., "d8db74e2675d54c4" or "8eb495d0-f653-4eed-910b-8d6b56cc0ec7")'}, 'build_slug': {'type': 'string', 'title': 'Build Slug', 'description': 'Identifier of the Bitrise build'}}}}, {'name': 'get_build_bitrise_yml', 'description': 'Get the bitrise.yml of a build.', 'inputSchema': {'type': 'object', 'title': 'get_build_bitrise_ymlArguments', 'required': ['app_slug', 'build_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'build_slug': {'type': 'string', 'title': 'Build Slug', 'description': 'Identifier of the build'}}}}, {'name': 'list_build_workflows', 'description': 'List the workflows of an app.', 'inputSchema': {'type': 'object', 'title': 'list_build_workflowsArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'list_artifacts', 'description': 'Get a list of all build artifacts.', 'inputSchema': {'type': 'object', 'title': 'list_artifactsArguments', 'required': ['app_slug', 'build_slug'], 'properties': {'next': {'type': 'string', 'title': 'Next', 'default': None, 'description': 'Slug of the first artifact in the response'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': None, 'description': 'Max number of elements per page (default: 50)'}, 'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'build_slug': {'type': 'string', 'title': 'Build Slug', 'description': 'Identifier of the build'}}}}, {'name': 'get_artifact', 'description': 'Get a specific build artifact.', 'inputSchema': {'type': 'object', 'title': 'get_artifactArguments', 'required': ['app_slug', 'build_slug', 'artifact_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'build_slug': {'type': 'string', 'title': 'Build Slug', 'description': 'Identifier of the build'}, 'artifact_slug': {'type': 'string', 'title': 'Artifact Slug', 'description': 'Identifier of the artifact'}}}}, {'name': 'list_outgoing_webhooks', 'description': 'List the outgoing webhooks of an app.', 'inputSchema': {'type': 'object', 'title': 'list_outgoing_webhooksArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'list_cache_items', 'description': 'List the key-value cache items belonging to an app.', 'inputSchema': {'type': 'object', 'title': 'list_cache_itemsArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'delete_all_cache_items', 'description': 'Delete all key-value cache items belonging to an app.', 'inputSchema': {'type': 'object', 'title': 'delete_all_cache_itemsArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'delete_cache_item', 'description': 'Delete a key-value cache item.', 'inputSchema': {'type': 'object', 'title': 'delete_cache_itemArguments', 'required': ['app_slug', 'cache_item_id'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'cache_item_id': {'type': 'string', 'title': 'Cache Item Id', 'description': 'Key of the cache item'}}}}, {'name': 'get_cache_item_download_url', 'description': '', 'inputSchema': {'type': 'object', 'title': 'get_cache_item_download_urlArguments', 'required': ['app_slug', 'cache_item_id'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'cache_item_id': {'type': 'string', 'title': 'Cache Item Id', 'description': 'Key of the cache item'}}}}, {'name': 'list_pipelines', 'description': 'List all pipelines and standalone builds of an app.', 'inputSchema': {'type': 'object', 'title': 'list_pipelinesArguments', 'required': ['app_slug'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}}}}, {'name': 'get_pipeline', 'description': 'Get a pipeline of a given app.', 'inputSchema': {'type': 'object', 'title': 'get_pipelineArguments', 'required': ['app_slug', 'pipeline_id'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'pipeline_id': {'type': 'string', 'title': 'Pipeline Id', 'description': 'Identifier of the pipeline'}}}}, {'name': 'abort_pipeline', 'description': 'Abort a pipeline.', 'inputSchema': {'type': 'object', 'title': 'abort_pipelineArguments', 'required': ['app_slug', 'pipeline_id'], 'properties': {'reason': {'type': 'string', 'title': 'Reason', 'default': None, 'description': 'Reason for aborting the pipeline'}, 'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'pipeline_id': {'type': 'string', 'title': 'Pipeline Id', 'description': 'Identifier of the pipeline'}}}}, {'name': 'rebuild_pipeline', 'description': 'Rebuild a pipeline.', 'inputSchema': {'type': 'object', 'title': 'rebuild_pipelineArguments', 'required': ['app_slug', 'pipeline_id'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'pipeline_id': {'type': 'string', 'title': 'Pipeline Id', 'description': 'Identifier of the pipeline'}}}}, {'name': 'list_group_roles', 'description': 'List group roles for an app', 'inputSchema': {'type': 'object', 'title': 'list_group_rolesArguments', 'required': ['app_slug', 'role_name'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'role_name': {'type': 'string', 'title': 'Role Name', 'description': 'Name of the role'}}}}, {'name': 'replace_group_roles', 'description': 'Replace group roles for an app.', 'inputSchema': {'type': 'object', 'title': 'replace_group_rolesArguments', 'required': ['app_slug', 'role_name', 'group_slugs'], 'properties': {'app_slug': {'type': 'string', 'title': 'App Slug', 'description': 'Identifier of the Bitrise app'}, 'role_name': {'type': 'string', 'title': 'Role Name', 'description': 'Name of the role'}, 'group_slugs': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Group Slugs', 'description': 'List of group slugs'}}}}, {'name': 'list_workspaces', 'description': 'List the workspaces the user has access to', 'inputSchema': {'type': 'object', 'title': 'list_workspacesArguments', 'properties': {}}}, {'name': 'get_workspace', 'description': 'Get details for one workspace', 'inputSchema': {'type': 'object', 'title': 'get_workspaceArguments', 'required': ['workspace_slug'], 'properties': {'workspace_slug': {'type': 'string', 'title': 'Workspace Slug', 'description': 'Slug of the Bitrise workspace'}}}}, {'name': 'get_workspace_groups', 'description': 'Get the groups in a workspace', 'inputSchema': {'type': 'object', 'title': 'get_workspace_groupsArguments', 'required': ['workspace_slug'], 'properties': {'workspace_slug': {'type': 'string', 'title': 'Workspace Slug', 'description': 'Slug of the Bitrise workspace'}}}}, {'name': 'create_workspace_group', 'description': 'Create a new group in a workspace.', 'inputSchema': {'type': 'object', 'title': 'create_workspace_groupArguments', 'required': ['workspace_slug', 'group_name'], 'properties': {'group_name': {'type': 'string', 'title': 'Group Name', 'description': 'Name of the group'}, 'workspace_slug': {'type': 'string', 'title': 'Workspace Slug', 'description': 'Slug of the Bitrise workspace'}}}}, {'name': 'get_workspace_members', 'description': 'Get the members of a workspace', 'inputSchema': {'type': 'object', 'title': 'get_workspace_membersArguments', 'required': ['workspace_slug'], 'properties': {'workspace_slug': {'type': 'string', 'title': 'Workspace Slug', 'description': 'Slug of the Bitrise workspace'}}}}, {'name': 'invite_member_to_workspace', 'description': 'Invite new Bitrise users to a workspace.', 'inputSchema': {'type': 'object', 'title': 'invite_member_to_workspaceArguments', 'required': ['workspace_slug', 'email'], 'properties': {'email': {'type': 'string', 'title': 'Email', 'description': 'Email address of the user'}, 'workspace_slug': {'type': 'string', 'title': 'Workspace Slug', 'description': 'Slug of the Bitrise workspace'}}}}, {'name': 'add_member_to_group', 'description': 'Add a member to a group.', 'inputSchema': {'type': 'object', 'title': 'add_member_to_groupArguments', 'required': ['group_slug', 'user_slug'], 'properties': {'user_slug': {'type': 'string', 'title': 'User Slug', 'description': 'Slug of the user'}, 'group_slug': {'type': 'string', 'title': 'Group Slug', 'description': 'Slug of the group'}}}}, {'name': 'me', 'description': 'Get user info for the currently authenticated user account', 'inputSchema': {'type': 'object', 'title': 'meArguments', 'properties': {}}}, {'name': 'create_connected_app', 'description': 'Add a new Release Management connected app to Bitrise.', 'inputSchema': {'type': 'object', 'title': 'create_connected_appArguments', 'required': ['platform', 'store_app_id', 'workspace_slug'], 'properties': {'id': {'type': 'string', 'title': 'Id', 'default': None, 'description': 'An uuidV4 identifier for your new connected app. If it is not given, one will be generated. It is useful for making the request idempotent or if the id is triggered outside of Bitrise and needs to be stored separately as well.'}, 'platform': {'type': 'string', 'title': 'Platform', 'description': "The mobile platform for the connected app. Available values are 'ios' and 'android'."}, 'project_id': {'type': 'string', 'title': 'Project Id', 'default': None, 'description': 'Specifies which Bitrise Project you want to get the connected app to be associated with. If this field is not given a new project will be created alongside with the connected app.'}, 'store_app_id': {'type': 'string', 'title': 'Store App Id', 'description': "The app store identifier for the connected app. In case of 'ios' platform it is the bundle id from App Store Connect. For additional context you can check the property description: https://developer.apple.com/documentation/bundleresources/information-property-list/cfbundleidentifierIn case of Android platform it is the package name. Check the documentation: https://developer.android.com/build/configure-app-module#set_the_application_id"}, 'store_app_name': {'type': 'string', 'title': 'Store App Name', 'default': None, 'description': "If you have no active app store API keys added on Bitrise, you can decide to add your app manually by giving the app's name as well while indicating manual connection with the similarly named boolean flag."}, 'workspace_slug': {'type': 'string', 'title': 'Workspace Slug', 'description': 'Identifier of the Bitrise workspace for the Release Management connected app. This field is mandatory.'}, 'manual_connection': {'type': 'boolean', 'title': 'Manual Connection', 'default': False, 'description': "If set to true it indicates a manual connection (bypassing using store api keys) and requires giving 'store_app_name' as well. This can be especially useful for enterprise apps."}, 'store_credential_id': {'type': 'string', 'title': 'Store Credential Id', 'default': None, 'description': 'If you have credentials added on Bitrise, you can decide to select one for your app. In case of ios platform it will be an Apple API credential id. In case of android platform it will be a Google Service credential id.'}}}}, {'name': 'list_connected_apps', 'description': 'List Release Management connected apps available for the authenticated account within a workspace.', 'inputSchema': {'type': 'object', 'title': 'list_connected_appsArguments', 'required': ['workspace_slug'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1, 'description': 'Specifies which page should be returned from the whole result set in a paginated scenario. Default value is 1.'}, 'search': {'type': 'string', 'title': 'Search', 'default': None, 'description': 'Search by bundle ID (for ios), package name (for android), or app title (for both platforms). The filter is case-sensitive.'}, 'platform': {'type': 'string', 'title': 'Platform', 'default': None, 'description': "Filters for a specific mobile platform for the list of connected apps. Available values are: 'ios' and 'android'."}, 'project_id': {'type': 'string', 'title': 'Project Id', 'default': None, 'description': 'Specifies which Bitrise Project you want to get associated connected apps for'}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10, 'description': 'Specifies the maximum number of connected apps returned per page. Default value is 10.'}, 'workspace_slug': {'type': 'string', 'title': 'Workspace Slug', 'description': 'Identifier of the Bitrise workspace for the Release Management connected apps. This field is mandatory.'}}}}, {'name': 'get_connected_app', 'description': 'Gives back a Release Management connected app for the authenticated account.', 'inputSchema': {'type': 'object', 'title': 'get_connected_appArguments', 'required': ['id'], 'properties': {'id': {'type': 'string', 'title': 'Id', 'description': 'Identifier of the Release Management connected app'}}}}, {'name': 'update_connected_app', 'description': 'Updates a connected app.', 'inputSchema': {'type': 'object', 'title': 'update_connected_appArguments', 'required': ['connected_app_id', 'store_app_id'], 'properties': {'store_app_id': {'type': 'string', 'title': 'Store App Id', 'description': 'The store identifier for your app. You can change the previously set store_app_id to match the one in the App Store or Google Play depending on the app platform. This is especially useful if you want to connect your app with the store as the system will validate the given store_app_id against the Store. In case of iOS platform it is the bundle id. In case of Android platform it is the package name.'}, 'connect_to_store': {'type': 'boolean', 'title': 'Connect To Store', 'default': False, 'description': 'If true, will check connected app validity against the Apple App Store or Google Play Store (dependent on the platform of your connected app). This means, that the already set or just given store_app_id will be validated against the Store, using the already set or just given store credential id.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier for your connected app.'}, 'store_credential_id': {'type': 'string', 'title': 'Store Credential Id', 'default': None, 'description': 'If you have credentials added on Bitrise, you can decide to select one for your app. In case of ios platform it will be an Apple API credential id. In case of android platform it will be a Google Service credential id.'}}}}, {'name': 'list_installable_artifacts', 'description': 'List Release Management installable artifacts of a connected app available for the authenticated account.', 'inputSchema': {'type': 'object', 'title': 'list_installable_artifactsArguments', 'required': ['connected_app_id'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1, 'description': 'Specifies which page should be returned from the whole result set in a paginated scenario. Default value is 1.'}, 'branch': {'type': 'string', 'title': 'Branch', 'default': None, 'description': 'Filters for the Bitrise CI branch of the installable artifact on which it has been generated on.'}, 'search': {'type': 'string', 'title': 'Search', 'default': None, 'description': 'Search by version, filename or build number (Bitrise CI). The filter is case-sensitive.'}, 'source': {'type': 'string', 'title': 'Source', 'default': None, 'description': "Filters for the source of installable artifacts to be returned. Available values are 'api' and 'ci'."}, 'version': {'type': 'string', 'title': 'Version', 'default': None, 'description': 'Filters for the version this installable artifact was created for. This field is required if the distribution_ready filter is set to true.'}, 'platform': {'type': 'string', 'title': 'Platform', 'default': None, 'description': "Filters for a specific mobile platform for the list of installable artifacts. Available values are: 'ios' and 'android'."}, 'workflow': {'type': 'string', 'title': 'Workflow', 'default': None, 'description': 'Filters for the Bitrise CI workflow of the installable artifact it has been generated by.'}, 'after_date': {'type': 'string', 'title': 'After Date', 'default': None, 'description': 'A date in ISO 8601 string format specifying the start of the interval when the installable artifact to be returned was created or uploaded. This value will be defaulted to 1 month ago if distribution_ready filter is not set or set to false.'}, 'before_date': {'type': 'string', 'title': 'Before Date', 'default': None, 'description': 'A date in ISO 8601 string format specifying the end of the interval when the installable artifact to be returned was created or uploaded. This value will be defaulted to the current time if distribution_ready filter is not set or set to false.'}, 'store_signed': {'type': 'boolean', 'title': 'Store Signed', 'default': None, 'description': 'Filters for store ready installable artifacts. This means signed .aab and .ipa (with distribution type app-store) installable artifacts.'}, 'artifact_type': {'type': 'string', 'title': 'Artifact Type', 'default': None, 'description': "Filters for a specific artifact type or file extension for the list of installable artifacts. Available values are: 'aab' and 'apk' for android artifacts and 'ipa' for ios artifacts."}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10, 'description': 'Specifies the maximum number of installable artifacts to be returned per page. Default value is 10.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'Identifier of the Release Management connected app for the installable artifacts. This field is mandatory.'}, 'distribution_ready': {'type': 'boolean', 'title': 'Distribution Ready', 'default': None, 'description': 'Filters for distribution ready installable artifacts. This means .apk and .ipa (with distribution type ad-hoc, development, or enterprise) installable artifacts.'}}}}, {'name': 'generate_installable_artifact_upload_url', 'description': 'Generates a signed upload url valid for 1 hour for an installable artifact to be uploaded to Bitrise Release Management. The response will contain an url that can be used to upload an artifact to Bitrise Release Management using a simple curl request with the file data that should be uploaded. The necessary headers and http method will also be in the response. This artifact will need to be processed after upload to be usable. The status of processing can be checked by making another requestto a different url giving back the processed status of an installable artifact.', 'inputSchema': {'type': 'object', 'title': 'generate_installable_artifact_upload_urlArguments', 'required': ['connected_app_id', 'installable_artifact_id', 'file_name', 'file_size_bytes'], 'properties': {'branch': {'type': 'string', 'title': 'Branch', 'default': None, 'description': 'Optionally you can add the name of the CI branch the installable artifact has been generated on.'}, 'workflow': {'type': 'string', 'title': 'Workflow', 'default': None, 'description': 'Optionally you can add the name of the CI workflow this installable artifact has been generated by.'}, 'file_name': {'type': 'string', 'title': 'File Name', 'description': 'The name of the installable artifact file (with extension) to be uploaded to Bitrise. This field is mandatory.'}, 'file_size_bytes': {'type': 'string', 'title': 'File Size Bytes', 'description': 'The byte size of the installable artifact file to be uploaded.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'Identifier of the Release Management connected app for the installable artifact. This field is mandatory.'}, 'with_public_page': {'type': 'boolean', 'title': 'With Public Page', 'default': None, 'description': 'Optionally, you can enable public install page for your artifact. This can only be enabled by Bitrise Project Admins, Bitrise Project Owners and Bitrise Workspace Admins. Changing this value without proper permissions will result in an error. The default value is false.'}, 'installable_artifact_id': {'type': 'string', 'title': 'Installable Artifact Id', 'description': 'An uuidv4 identifier generated on the client side for the installable artifact. This field is mandatory.'}}}}, {'name': 'get_installable_artifact_upload_and_processing_status', 'description': 'Gets the processing and upload status of an installable artifact. An artifact will need to be processed after upload to be usable. This endpoint helps understanding when an uploaded installable artifacts becomes usable for later purposes.', 'inputSchema': {'type': 'object', 'title': 'get_installable_artifact_upload_and_processing_statusArguments', 'required': ['connected_app_id', 'installable_artifact_id'], 'properties': {'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'Identifier of the Release Management connected app for the installable artifact. This field is mandatory.'}, 'installable_artifact_id': {'type': 'string', 'title': 'Installable Artifact Id', 'description': 'The uuidv4 identifier for the installable artifact. This field is mandatory.'}}}}, {'name': 'set_installable_artifact_public_install_page', 'description': 'Changes whether public install page should be available for the installable artifact or not.', 'inputSchema': {'type': 'object', 'title': 'set_installable_artifact_public_install_pageArguments', 'required': ['connected_app_id', 'installable_artifact_id', 'with_public_page'], 'properties': {'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'Identifier of the Release Management connected app for the installable artifact. This field is mandatory.'}, 'with_public_page': {'type': 'boolean', 'title': 'With Public Page', 'description': 'Boolean flag for enabling/disabling public install page for the installable artifact. This field is mandatory.'}, 'installable_artifact_id': {'type': 'string', 'title': 'Installable Artifact Id', 'description': 'The uuidv4 identifier for the installable artifact. This field is mandatory.'}}}}, {'name': 'list_build_distribution_versions', 'description': 'Lists Build Distribution versions. Release Management offers a convenient, secure solution to distribute the builds of your mobile apps to testers without having to engage with either TestFlight or Google Play. Once you have installable artifacts, Bitrise can generate both private and public install links that testers or other stakeholders can use to install the app on real devices via over-the-air installation. Build distribution allows you to define tester groups that can receive notifications about installable artifacts. The email takes the notified testers to the test build page, from where they can install the app on their own device. Build distribution versions are the app versions available for testers.', 'inputSchema': {'type': 'object', 'title': 'list_build_distribution_versionsArguments', 'required': ['connected_app_id'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1, 'description': 'Specifies which page should be returned from the whole result set in a paginated scenario. Default value is 1.'}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10, 'description': 'Specifies the maximum number of build distribution versions returned per page. Default value is 10.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the app the build distribution is connected to. This field is mandatory.'}}}}, {'name': 'list_build_distribution_version_test_builds', 'description': 'Gives back a list of test builds for the given build distribution version.', 'inputSchema': {'type': 'object', 'title': 'list_build_distribution_version_test_buildsArguments', 'required': ['connected_app_id', 'version'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1, 'description': 'Specifies which page should be returned from the whole result set in a paginated scenario. Default value is 1.'}, 'version': {'type': 'string', 'title': 'Version', 'description': 'The version of the build distribution. This field is mandatory.'}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10, 'description': 'Specifies the maximum number of test builds to return for a build distribution version per page. Default value is 10.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the app the build distribution is connected to. This field is mandatory.'}}}}, {'name': 'create_tester_group', 'description': "Creates a tester group for a Release Management connected app. Tester groups can be used to distribute installable artifacts to testers automatically. When a new installable artifact is available, the tester groups can either automatically or manually be notified via email. The notification email will contain a link to the installable artifact page for the artifact within Bitrise Release Management. A Release Management connected app can have multiple tester groups. Project team members of the connected app can be selected to be testers and added to the tester group. This endpoint has an elevated access level requirement. Only the owner of the related Bitrise Workspace, a workspace manager or the related project's admin can manage tester groups.", 'inputSchema': {'type': 'object', 'title': 'create_tester_groupArguments', 'required': ['connected_app_id', 'name'], 'properties': {'name': {'type': 'string', 'title': 'Name', 'description': 'The name for the new tester group. Must be unique in the scope of the connected app.'}, 'auto_notify': {'type': 'boolean', 'title': 'Auto Notify', 'default': False, 'description': 'If set to true it indicates that the tester group will receive notifications automatically.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the related Release Management connected app.'}}}}, {'name': 'notify_tester_group', 'description': 'Notifies a tester group about a new test build.', 'inputSchema': {'type': 'object', 'title': 'notify_tester_groupArguments', 'required': ['connected_app_id', 'id', 'test_build_id'], 'properties': {'id': {'type': 'string', 'title': 'Id', 'description': 'The uuidV4 identifier of the tester group whose members will be notified about the test build.'}, 'test_build_id': {'type': 'string', 'title': 'Test Build Id', 'description': 'The unique identifier of the test build what will be sent in the notification of the tester group.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the related Release Management connected app.'}}}}, {'name': 'add_testers_to_tester_group', 'description': 'Adds testers to a tester group of a connected app.', 'inputSchema': {'type': 'object', 'title': 'add_testers_to_tester_groupArguments', 'required': ['connected_app_id', 'id', 'user_slugs'], 'properties': {'id': {'type': 'string', 'title': 'Id', 'description': 'The uuidV4 identifier of the tester group to which testers will be added.'}, 'user_slugs': {'type': 'array', 'items': {'type': 'string'}, 'title': 'User Slugs', 'description': 'The list of users identified by slugs that will be added to the tester group.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the related Release Management connected app.'}}}}, {'name': 'update_tester_group', 'description': 'Updates the given tester group. The name and the auto notification setting can be updated optionally.', 'inputSchema': {'type': 'object', 'title': 'update_tester_groupArguments', 'required': ['connected_app_id', 'id'], 'properties': {'id': {'type': 'string', 'title': 'Id', 'description': 'The uuidV4 identifier of the tester group to which testers will be added.'}, 'name': {'type': 'string', 'title': 'Name', 'default': None, 'description': 'The new name for the tester group. Must be unique in the scope of the related connected app.'}, 'auto_notify': {'type': 'boolean', 'title': 'Auto Notify', 'default': False, 'description': 'If set to true it indicates the tester group will receive email notifications automatically from now on about new installable builds.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the related Release Management connected app.'}}}}, {'name': 'list_tester_groups', 'description': 'Gives back a list of tester groups related to a specific Release Management connected app.', 'inputSchema': {'type': 'object', 'title': 'list_tester_groupsArguments', 'required': ['connected_app_id'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1, 'description': 'Specifies which page should be returned from the whole result set in a paginated scenario. Default value is 1.'}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10, 'description': 'Specifies the maximum number of tester groups to return related to a specific connected app. Default value is 10.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the app the tester group is connected to. This field is mandatory.'}}}}, {'name': 'get_tester_group', 'description': 'Gives back the details of the selected tester group.', 'inputSchema': {'type': 'object', 'title': 'get_tester_groupArguments', 'required': ['connected_app_id', 'id'], 'properties': {'id': {'type': 'string', 'title': 'Id', 'description': 'The uuidV4 identifier of the tester group. This field is mandatory.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the app the tester group is connected to. This field is mandatory.'}}}}, {'name': 'get_potential_testers', 'description': 'Gets a list of potential testers whom can be added as testers to a specific tester group. The list consists of Bitrise users having access to the related Release Management connected app.', 'inputSchema': {'type': 'object', 'title': 'get_potential_testersArguments', 'required': ['connected_app_id', 'id'], 'properties': {'id': {'type': 'string', 'title': 'Id', 'description': 'The uuidV4 identifier of the tester group. This field is mandatory.'}, 'page': {'type': 'integer', 'title': 'Page', 'default': 1, 'description': 'Specifies which page should be returned from the whole result set in a paginated scenario. Default value is 1.'}, 'search': {'type': 'string', 'title': 'Search', 'default': None, 'description': 'Searches for potential testers based on email or username using a case-insensitive approach.'}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10, 'description': 'Specifies the maximum number of potential testers to return having access to a specific connected app. Default value is 10.'}, 'connected_app_id': {'type': 'string', 'title': 'Connected App Id', 'description': 'The uuidV4 identifier of the app the tester group is connected to. This field is mandatory.'}}}}] |
@seekeasy/mcp | Seekeasy MCP Server | Seekeasy provides creator curated restaurant recommendation. | 2025-04-30T17:24:38.746Z | 13 | https://smithery.ai/server/@seekeasy/mcp | true | {
"scanPassed": true
} | [{'name': 'search_restaurants', 'description': "Search for restaurants using Seekeasy. All the restaurants provided are recommended by Content Creators.\n Returns a dictionary containing the 'results' list and an 'instruction' string for attribution.\n ", 'inputSchema': {'type': 'object', 'title': 'search_restaurantsArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}] |
|
@Rz017/tavily-mcp | Tavily MCP Server | Enable real-time web search and intelligent data extraction within your AI assistant by integrating Tavily's advanced search and extraction tools. Seamlessly access up-to-date web information with sophisticated filtering and domain-specific capabilities. Enhance your AI workflows with powerful web data retrieval and processing features. | 2025-04-26T20:24:29.070Z | 13 | https://smithery.ai/server/@Rz017/tavily-mcp | true | null | {
"scanPassed": true
} | [{'name': 'tavily-search', 'description': "A powerful web search tool that provides comprehensive, real-time results using Tavily's AI search engine. Returns relevant web content with customizable parameters for result count, content type, and domain filtering. Ideal for gathering current information, news, and detailed web content analysis.", 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'days': {'type': 'number', 'default': 3, 'description': "The number of days back from the current date to include in the search results. This specifies the time frame of data to be retrieved. Please note that this feature is only available when using the 'news' search topic"}, 'query': {'type': 'string', 'description': 'Search query'}, 'topic': {'enum': ['general', 'news'], 'type': 'string', 'default': 'general', 'description': 'The category of the search. This will determine which of our agents will be used for the search'}, 'time_range': {'enum': ['day', 'week', 'month', 'year', 'd', 'w', 'm', 'y'], 'type': 'string', 'description': "The time range back from the current date to include in the search results. This feature is available for both 'general' and 'news' search topics"}, 'max_results': {'type': 'number', 'default': 10, 'maximum': 20, 'minimum': 5, 'description': 'The maximum number of search results to return'}, 'search_depth': {'enum': ['basic', 'advanced'], 'type': 'string', 'default': 'basic', 'description': "The depth of the search. It can be 'basic' or 'advanced'"}, 'include_images': {'type': 'boolean', 'default': False, 'description': 'Include a list of query-related images in the response'}, 'exclude_domains': {'type': 'array', 'items': {'type': 'string'}, 'default': [], 'description': 'List of domains to specifically exclude, if the user asks to exclude a domain set this to the domain of the site'}, 'include_domains': {'type': 'array', 'items': {'type': 'string'}, 'default': [], 'description': 'A list of domains to specifically include in the search results, if the user asks to search on specific sites set this to the domain of the site'}, 'include_raw_content': {'type': 'boolean', 'default': False, 'description': 'Include the cleaned and parsed HTML content of each search result'}, 'include_image_descriptions': {'type': 'boolean', 'default': False, 'description': 'Include a list of query-related images and their descriptions in the response'}}}}, {'name': 'tavily-extract', 'description': 'A powerful web content extraction tool that retrieves and processes raw content from specified URLs, ideal for data collection, content analysis, and research tasks.', 'inputSchema': {'type': 'object', 'required': ['urls'], 'properties': {'urls': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of URLs to extract content from'}, 'extract_depth': {'enum': ['basic', 'advanced'], 'type': 'string', 'default': 'basic', 'description': "Depth of extraction - 'basic' or 'advanced', if usrls are linkedin use 'advanced' or if explicitly told to use advanced"}, 'include_images': {'type': 'boolean', 'default': False, 'description': 'Include a list of images extracted from the urls in the response'}}}}] |
@qubaomingg/byted_fe_mcp | byted fe resources | 2025-04-07T08:55:39.082Z | 13 | https://smithery.ai/server/@qubaomingg/byted_fe_mcp | true | null | {
"scanPassed": true
} | [{'name': 'search_component', 'description': '查找组件库使用', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'repo': {'type': 'string', 'description': '组件库名称(可选)'}, 'query': {'type': 'string', 'description': '搜索关键词'}}}}, {'name': 'search_components_multi', 'description': '使用多个关键词查找组件库使用', 'inputSchema': {'type': 'object', 'required': ['queries'], 'properties': {'repo': {'type': 'string', 'description': '组件库名称(可选)'}, 'queries': {'type': 'array', 'items': {'type': 'string'}, 'description': '搜索关键词数组'}}}}, {'name': 'list_library_components', 'description': '列出指定组件库的所有组件', 'inputSchema': {'type': 'object', 'required': ['library'], 'properties': {'library': {'type': 'string', 'description': '组件库名称(如 dprc, okee, auxo)'}}}}] |
|
@Nazruden/mcp-openvision | OpenVision | Analyze images effortlessly with advanced AI models. Leverage powerful vision capabilities to extract insights and details from your images, enhancing your AI assistant's functionality. Simplify image analysis tasks with a user-friendly interface and customizable queries. | 2025-03-31T02:15:03.682Z | 13 | https://smithery.ai/server/@Nazruden/mcp-openvision | true | null | {
"scanPassed": true
} | [{'name': 'image_analysis', 'description': '\n Analyze an image using OpenRouter\'s vision capabilities.\n\n This tool allows you to send an image to OpenRouter\'s vision models for analysis.\n You provide a query to guide the analysis and can optionally customize the system prompt\n for more control over the model\'s behavior.\n\n Args:\n image: The image as a base64-encoded string, URL, or local file path\n query: Text prompt to guide the image analysis. For best results, provide context\n about why you\'re analyzing the image and what specific information you need.\n Including details about your purpose and required focus areas leads to more\n relevant and useful responses.\n system_prompt: Instructions for the model defining its role and behavior\n model: The vision model to use (defaults to the value set by OPENROUTER_DEFAULT_MODEL)\n max_tokens: Maximum number of tokens in the response (100-4000)\n temperature: Temperature parameter for generation (0.0-1.0)\n top_p: Optional nucleus sampling parameter (0.0-1.0)\n presence_penalty: Optional penalty for new tokens based on presence in text so far (0.0-2.0)\n frequency_penalty: Optional penalty for new tokens based on frequency in text so far (0.0-2.0)\n project_root: Optional root directory to resolve relative image paths against\n\n Returns:\n The analysis result as text\n\n Examples:\n Basic usage with a file path:\n image_analysis(image="path/to/image.jpg", query="Describe this image in detail")\n\n Basic usage with an image URL:\n image_analysis(image="https://example.com/image.jpg", query="Describe this image in detail")\n\n Basic usage with a relative path and project root:\n image_analysis(image="examples/image.jpg", project_root="/path/to/project", query="Describe this image in detail")\n\n Usage with a detailed contextual query:\n image_analysis(\n image="path/to/image.jpg",\n query="Analyze this product packaging design for a fitness supplement. Identify all nutritional claims,\n certifications, and health icons. Assess the visual hierarchy and how the key selling points\n are communicated. This is for a competitive analysis project."\n )\n\n Usage with custom system prompt:\n image_analysis(\n image="path/to/image.jpg",\n query="What objects can you see in this image?",\n system_prompt="You are an expert at identifying objects in images. Focus on listing all visible objects."\n )\n ', 'inputSchema': {'type': 'object', 'title': 'image_analysisArguments', 'required': ['image'], 'properties': {'image': {'type': 'string', 'title': 'Image'}, 'model': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Model', 'default': None}, 'query': {'type': 'string', 'title': 'Query', 'default': 'Describe this image in detail'}, 'top_p': {'anyOf': [{'type': 'number'}, {'type': 'null'}], 'title': 'Top P', 'default': None}, 'max_tokens': {'type': 'integer', 'title': 'Max Tokens', 'default': 4000}, 'temperature': {'type': 'number', 'title': 'Temperature', 'default': 0.7}, 'project_root': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Project Root', 'default': None}, 'system_prompt': {'type': 'string', 'title': 'System Prompt', 'default': "You are an expert vision analyzer with exceptional attention to detail. Your purpose is to provide accurate, comprehensive descriptions of images that help AI agents understand visual content they cannot directly perceive. Focus on describing all relevant elements in the image - objects, people, text, colors, spatial relationships, actions, and context. Be precise but concise, organizing information from most to least important. Avoid making assumptions beyond what's visible and clearly indicate any uncertainty. When text appears in images, transcribe it verbatim within quotes. Respond only with factual descriptions without subjective judgments or creative embellishments. Your descriptions should enable an agent to make informed decisions based solely on your analysis."}, 'presence_penalty': {'anyOf': [{'type': 'number'}, {'type': 'null'}], 'title': 'Presence Penalty', 'default': None}, 'frequency_penalty': {'anyOf': [{'type': 'number'}, {'type': 'null'}], 'title': 'Frequency Penalty', 'default': None}}}}] |
@brianirish/laravel-docs-mcp | Laravel Documentation Server | Provide AI assistants and language models with seamless access to Laravel documentation. Enable searching, reading, and updating Laravel docs dynamically to enhance AI-driven development support. Support multiple Laravel versions and automatic documentation updates from GitHub. | 2025-04-20T06:01:21.967Z | 12 | https://smithery.ai/server/@brianirish/laravel-docs-mcp | true | null | null | [{'name': 'list_docs', 'description': 'List all available Laravel documentation files.', 'inputSchema': {'type': 'object', 'title': 'list_docsArguments', 'properties': {}}}, {'name': 'search_docs', 'description': 'Search through all Laravel documentation for a specific term.', 'inputSchema': {'type': 'object', 'title': 'search_docsArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'update_docs', 'description': '\n Update Laravel documentation from official GitHub repository.\n \n Args:\n version: Laravel version branch (e.g., "12.x")\n force: Force update even if already up to date\n ', 'inputSchema': {'type': 'object', 'title': 'update_docsArguments', 'properties': {'force': {'type': 'boolean', 'title': 'Force', 'default': False}, 'version': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Version', 'default': None}}}}, {'name': 'docs_info', 'description': 'Get information about the documentation version and status.', 'inputSchema': {'type': 'object', 'title': 'docs_infoArguments', 'properties': {}}}, {'name': 'echo', 'description': 'Simple echo tool for testing.', 'inputSchema': {'type': 'object', 'title': 'echoArguments', 'required': ['message'], 'properties': {'message': {'type': 'string', 'title': 'Message'}}}}] |
@brianirish/laravel-docs-mcp | Laravel Documentation Server | Provide AI assistants and language models with seamless access to Laravel documentation. Enable searching, reading, and updating Laravel docs dynamically to enhance AI-driven development support. Support multiple Laravel versions and automatic documentation updates from GitHub. | 2025-04-20T06:01:21.967Z | 12 | https://smithery.ai/server/@brianirish/laravel-docs-mcp | true | null | null | [{'name': 'list_docs', 'description': 'List all available Laravel documentation files.', 'inputSchema': {'type': 'object', 'title': 'list_docsArguments', 'properties': {}}}, {'name': 'search_docs', 'description': 'Search through all Laravel documentation for a specific term.', 'inputSchema': {'type': 'object', 'title': 'search_docsArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'update_docs', 'description': '\n Update Laravel documentation from official GitHub repository.\n \n Args:\n version: Laravel version branch (e.g., "12.x")\n force: Force update even if already up to date\n ', 'inputSchema': {'type': 'object', 'title': 'update_docsArguments', 'properties': {'force': {'type': 'boolean', 'title': 'Force', 'default': False}, 'version': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Version', 'default': None}}}}, {'name': 'docs_info', 'description': 'Get information about the documentation version and status.', 'inputSchema': {'type': 'object', 'title': 'docs_infoArguments', 'properties': {}}}, {'name': 'echo', 'description': 'Simple echo tool for testing.', 'inputSchema': {'type': 'object', 'title': 'echoArguments', 'required': ['message'], 'properties': {'message': {'type': 'string', 'title': 'Message'}}}}] |
@vaebe/mcp | Server Time | Retrieve the current time effortlessly with this server. Integrate time-fetching capabilities into your applications seamlessly. Enhance your projects with accurate and reliable time data. | 2025-04-08T02:45:20.376Z | 12 | https://smithery.ai/server/@vaebe/mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_current_time', 'description': '获取当前时间', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'timezone': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'convert_time', 'description': '在时区之间转换时间', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['source_timezone', 'time', 'target_timezone'], 'properties': {'time': {'type': 'string', 'pattern': '^([01]\\d|2[0-3]):([0-5]\\d)$'}, 'source_timezone': {'type': 'string'}, 'target_timezone': {'type': 'string'}}, 'additionalProperties': False}}] |
@vaebe/mcp | Server Time | Retrieve the current time effortlessly with this server. Integrate time-fetching capabilities into your applications seamlessly. Enhance your projects with accurate and reliable time data. | 2025-04-08T02:45:20.376Z | 12 | https://smithery.ai/server/@vaebe/mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_current_time', 'description': '获取当前时间', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'timezone': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'convert_time', 'description': '在时区之间转换时间', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['source_timezone', 'time', 'target_timezone'], 'properties': {'time': {'type': 'string', 'pattern': '^([01]\\d|2[0-3]):([0-5]\\d)$'}, 'source_timezone': {'type': 'string'}, 'target_timezone': {'type': 'string'}}, 'additionalProperties': False}}] |
@gregkonush/mcp-obsidian | Obsidian Integration Server | Enable your AI assistants to seamlessly interact with your notes. Read, create, and manipulate files in your Obsidian vault effortlessly, enhancing your productivity and organization. | 2025-04-06T12:00:52.314Z | 12 | https://smithery.ai/server/@gregkonush/mcp-obsidian | true | null | null | [{'name': 'get_active_file', 'description': 'Returns the content of the currently active file in Obsidian.', 'inputSchema': {'type': 'object'}}, {'name': 'delete_active_file', 'description': 'Deletes the currently active file in Obsidian.', 'inputSchema': {'type': 'object'}}, {'name': 'insert_active_file', 'description': '\nAllows you to modify the content relative to a heading, block reference, or frontmatter field in your document.\n\nExamples\nAll of the below examples assume you have a document that looks like this:\n\n---\nalpha: 1\nbeta: test\ndelta:\nzeta: 1\nyotta: 1\ngamma:\n- one\n- two\n---\n\n# Heading 1\n\nThis is the content for heading one\n\nAlso references some [[#^484ef2]]\n\n## Subheading 1:1\nContent for Subheading 1:1\n\n### Subsubheading 1:1:1\n\n### Subsubheading 1:1:2\n\nTesting how block references work for a table.[[#^2c7cfa]]\nSome content for Subsubheading 1:1:2\n\nMore random text.\n\n^2d9b4a\n\n## Subheading 1:2\n\nContent for Subheading 1:2.\n\nsome content with a block reference ^484ef2\n\n## Subheading 1:3\n| City | Population |\n| ------------ | ---------- |\n| Seattle, WA | 8 |\n| Portland, OR | 4 |\n\n^2c7cfa\nAppend Content Below a Heading\nIf you wanted to append the content "Hello" below "Subheading 1:1:1" under "Heading 1", you could send a request with the following headers:\n\nOperation: append\nTarget-Type: heading\nTarget: Heading 1::Subheading 1:1:1\nwith the request body: Hello\nThe above would work just fine for prepend or replace, too, of course, but with different results.\n\nAppend Content to a Block Reference\nIf you wanted to append the content "Hello" below the block referenced by "2d9b4a" above ("More random text."), you could send the following headers:\n\nOperation: append\nTarget-Type: block\nTarget: 2d9b4a\nwith the request body: Hello\nThe above would work just fine for prepend or replace, too, of course, but with different results.\n\nAdd a Row to a Table Referenced by a Block Reference\nIf you wanted to add a new city ("Chicago, IL") and population ("16") pair to the table above referenced by the block reference 2c7cfa, you could send the following headers:\n\nOperation: append\nTargetType: block\nTarget: 2c7cfa\nContent-Type: application/json\nwith the request body: [["Chicago, IL", "16"]]\nThe use of a Content-Type of application/json allows the API to infer that member of your array represents rows and columns of your to append to the referenced table. You can of course just use a Content-Type of text/markdown, but in such a case you\'ll have to format your table row manually instead of letting the library figure it out for you.\n\nYou also have the option of using prepend (in which case, your new row would be the first -- right below the table heading) or replace (in which case all rows except the table heading would be replaced by the new row(s) you supplied).\n\nSetting a Frontmatter Field\nIf you wanted to set the frontmatter field alpha to 2, you could send the following headers:\n\nOperation: replace\nTargetType: frontmatter\nTarget: beep\nwith the request body 2\nIf you\'re setting a frontmatter field that might not already exist you may want to use the Create-Target-If-Missing header so the new frontmatter field is created and set to your specified value if it doesn\'t already exist.\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['Operation', 'TargetType', 'Target', 'requestBody'], 'properties': {'Target': {'type': 'string'}, 'Operation': {'enum': ['append', 'prepend', 'replace'], 'type': 'string'}, 'TargetType': {'enum': ['heading', 'block', 'frontmatter'], 'type': 'string'}, 'requestBody': {'type': 'string'}, 'Content-Type': {'enum': ['text/plain', 'application/json', 'text/markdown'], 'type': 'string'}, 'Target-Delimiter': {'type': 'string'}, 'Trim-Target-Whitespace': {'enum': ['true', 'false'], 'type': 'string'}, 'Create-Target-If-Missing': {'enum': ['true', 'false'], 'type': 'string'}}, 'additionalProperties': False}}, {'name': 'append_active_file', 'description': 'Appends content to the end of the currently-open note.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['content'], 'properties': {'content': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'open_file', 'description': 'Opens a file in Obsidian.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['filename'], 'properties': {'filename': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'insert_file', 'description': 'Insert content into an existing note relative to a heading within your note.\n \n Allows you to modify the content relative to a heading, block reference, or frontmatter field in your document.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['filename', 'Operation', 'TargetType', 'Target', 'requestBody'], 'properties': {'Target': {'type': 'string'}, 'filename': {'type': 'string'}, 'Operation': {'enum': ['append', 'prepend', 'replace'], 'type': 'string'}, 'TargetType': {'enum': ['heading', 'block', 'frontmatter'], 'type': 'string'}, 'requestBody': {'type': 'string'}, 'Content-Type': {'enum': ['text/plain', 'application/json', 'text/markdown'], 'type': 'string'}, 'Target-Delimiter': {'type': 'string'}, 'Trim-Target-Whitespace': {'enum': ['true', 'false'], 'type': 'string'}, 'Create-Target-If-Missing': {'enum': ['true', 'false'], 'type': 'string'}}, 'additionalProperties': False}}, {'name': 'search_simple', 'description': 'Search for documents matching a specified text query', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query', 'contextLength'], 'properties': {'query': {'type': 'string'}, 'contextLength': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'list_files', 'description': 'Lists files in a directory', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'directory': {'type': 'string', 'default': '.'}}, 'additionalProperties': False}}] |
@DappierAI/dappier-mcp | Dappier MCP Server | Enable fast, free real-time web search and access premium data from trusted media brands—news, financial markets, sports, entertainment, weather, and more. Build powerful AI agents with Dappier. | 2025-04-14T14:44:49.675Z | 12 | https://smithery.ai/server/@DappierAI/dappier-mcp | true | {
"scanPassed": true
} | [{'name': 'dappier_real_time_search', 'description': '\n Retrieve real-time search data from Dappier by processing an AI model that supports two key capabilities:\n\n - Real-Time Web Search: \n Access the latest news, stock market data, weather, travel information, deals, and more using model `am_01j06ytn18ejftedz6dyhz2b15`. \n Use this model when no stock ticker symbol is provided.\n\n - Stock Market Data: \n Retrieve real-time financial news, stock prices, and trade updates using model `am_01j749h8pbf7ns8r1bq9s2evrh`. \n Use this model only when a stock ticker symbol is provided.\n\n Based on the provided `ai_model_id`, the tool selects the appropriate model and returns search results.\n ', 'inputSchema': {'type': 'object', 'title': 'dappier_real_time_searchArguments', 'required': ['query', 'ai_model_id'], 'properties': {'query': {'type': 'string', 'title': 'Query', 'description': 'The search query to retrieve real-time information.'}, 'ai_model_id': {'enum': ['am_01j06ytn18ejftedz6dyhz2b15', 'am_01j749h8pbf7ns8r1bq9s2evrh'], 'type': 'string', 'title': 'Ai Model Id', 'description': 'The AI model ID to use for the query.\n\nAvailable AI Models:\n- am_01j06ytn18ejftedz6dyhz2b15: (Real-Time Data) Access real-time Google web search results, including the latest news, stock market data, news, weather, travel, deals, and more. Use this model when no stock ticker symbol is provided.\n- am_01j749h8pbf7ns8r1bq9s2evrh: (Stock Market Data) Access real-time financial news, stock prices, and trades from Polygon.io, with AI-powered insights and up-to-the-minute updates. Use this model only when a stock ticker symbol is provided.\n\n'}}}}, {'name': 'dappier_ai_recommendations', 'description': '\n Fetch AI-powered recommendations from Dappier by processing the provided query with a selected data model that tailors results to specific interests.\n\n - **Sports News (dm_01j0pb465keqmatq9k83dthx34):** \n Get real-time news, updates, and personalized content from top sports sources.\n\n - **Lifestyle News (dm_01j0q82s4bfjmsqkhs3ywm3x6y):** \n Access current lifestyle updates, analysis, and insights from leading lifestyle publications.\n\n - **iHeartDogs AI (dm_01j1sz8t3qe6v9g8ad102kvmqn):** \n Tap into a dog care expert with access to thousands of articles covering pet health, behavior, grooming, and ownership.\n\n - **iHeartCats AI (dm_01j1sza0h7ekhaecys2p3y0vmj):** \n Utilize a cat care specialist that provides comprehensive content on cat health, behavior, and lifestyle.\n\n - **GreenMonster (dm_01j5xy9w5sf49bm6b1prm80m27):** \n Receive guidance for making conscious and compassionate choices benefiting people, animals, and the planet.\n\n - **WISH-TV AI (dm_01jagy9nqaeer9hxx8z1sk1jx6):** \n Get recommendations covering sports, breaking news, politics, multicultural updates, and more.\n\n Based on the chosen `data_model_id`, the tool processes the input query and returns a formatted summary including article titles, summaries, images, source URLs, publication dates, and relevance scores.\n ', 'inputSchema': {'type': 'object', 'title': 'dappier_ai_recommendationsArguments', 'required': ['query', 'data_model_id'], 'properties': {'ref': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Ref', 'default': None, 'description': 'The site domain where recommendations should be prioritized.'}, 'query': {'type': 'string', 'title': 'Query', 'description': 'The input string for AI-powered content recommendations.'}, 'data_model_id': {'enum': ['dm_01j0pb465keqmatq9k83dthx34', 'dm_01j0q82s4bfjmsqkhs3ywm3x6y', 'dm_01j1sz8t3qe6v9g8ad102kvmqn', 'dm_01j1sza0h7ekhaecys2p3y0vmj', 'dm_01j5xy9w5sf49bm6b1prm80m27', 'dm_01jagy9nqaeer9hxx8z1sk1jx6'], 'type': 'string', 'title': 'Data Model Id', 'description': 'The data model ID to use for recommendations.\n\nAvailable Data Models:\n- dm_01j0pb465keqmatq9k83dthx34: (Sports News) Real-time news, updates, and personalized content from top sports sources like Sportsnaut, Forever Blueshirts, Minnesota Sports Fan, LAFB Network, Bounding Into Sports and Ringside Intel.\n- dm_01j0q82s4bfjmsqkhs3ywm3x6y: (Lifestyle News) Real-time updates, analysis, and personalized content from top sources like The Mix, Snipdaily, Nerdable and Familyproof.\n- dm_01j1sz8t3qe6v9g8ad102kvmqn: (iHeartDogs AI) A dog care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartDogs.com.\n- dm_01j1sza0h7ekhaecys2p3y0vmj: (iHeartCats AI) A cat care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartCats.com.\n- dm_01j5xy9w5sf49bm6b1prm80m27: (GreenMonster) A helpful guide to making conscious and compassionate choices that benefit people, animals, and the planet.\n- dm_01jagy9nqaeer9hxx8z1sk1jx6: (WISH-TV AI) Covers sports, politics, breaking news, multicultural news, Hispanic language content, entertainment, health, and education.\n\n'}, 'num_articles_ref': {'type': 'integer', 'title': 'Num Articles Ref', 'default': 0, 'description': 'Minimum number of articles to return from the reference domain.'}, 'search_algorithm': {'enum': ['most_recent', 'semantic', 'most_recent_semantic', 'trending'], 'type': 'string', 'title': 'Search Algorithm', 'default': 'most_recent', 'description': 'The search algorithm to use for retrieving articles.'}, 'similarity_top_k': {'type': 'integer', 'title': 'Similarity Top K', 'default': 9, 'description': 'Number of top similar articles to retrieve based on semantic similarity.'}}}}] |
|
@DappierAI/dappier-mcp | Dappier MCP Server | Enable fast, free real-time web search and access premium data from trusted media brands—news, financial markets, sports, entertainment, weather, and more. Build powerful AI agents with Dappier. | 2025-04-14T14:44:49.675Z | 12 | https://smithery.ai/server/@DappierAI/dappier-mcp | true | {
"scanPassed": true
} | [{'name': 'dappier_real_time_search', 'description': '\n Retrieve real-time search data from Dappier by processing an AI model that supports two key capabilities:\n\n - Real-Time Web Search: \n Access the latest news, stock market data, weather, travel information, deals, and more using model `am_01j06ytn18ejftedz6dyhz2b15`. \n Use this model when no stock ticker symbol is provided.\n\n - Stock Market Data: \n Retrieve real-time financial news, stock prices, and trade updates using model `am_01j749h8pbf7ns8r1bq9s2evrh`. \n Use this model only when a stock ticker symbol is provided.\n\n Based on the provided `ai_model_id`, the tool selects the appropriate model and returns search results.\n ', 'inputSchema': {'type': 'object', 'title': 'dappier_real_time_searchArguments', 'required': ['query', 'ai_model_id'], 'properties': {'query': {'type': 'string', 'title': 'Query', 'description': 'The search query to retrieve real-time information.'}, 'ai_model_id': {'enum': ['am_01j06ytn18ejftedz6dyhz2b15', 'am_01j749h8pbf7ns8r1bq9s2evrh'], 'type': 'string', 'title': 'Ai Model Id', 'description': 'The AI model ID to use for the query.\n\nAvailable AI Models:\n- am_01j06ytn18ejftedz6dyhz2b15: (Real-Time Data) Access real-time Google web search results, including the latest news, stock market data, news, weather, travel, deals, and more. Use this model when no stock ticker symbol is provided.\n- am_01j749h8pbf7ns8r1bq9s2evrh: (Stock Market Data) Access real-time financial news, stock prices, and trades from Polygon.io, with AI-powered insights and up-to-the-minute updates. Use this model only when a stock ticker symbol is provided.\n\n'}}}}, {'name': 'dappier_ai_recommendations', 'description': '\n Fetch AI-powered recommendations from Dappier by processing the provided query with a selected data model that tailors results to specific interests.\n\n - **Sports News (dm_01j0pb465keqmatq9k83dthx34):** \n Get real-time news, updates, and personalized content from top sports sources.\n\n - **Lifestyle News (dm_01j0q82s4bfjmsqkhs3ywm3x6y):** \n Access current lifestyle updates, analysis, and insights from leading lifestyle publications.\n\n - **iHeartDogs AI (dm_01j1sz8t3qe6v9g8ad102kvmqn):** \n Tap into a dog care expert with access to thousands of articles covering pet health, behavior, grooming, and ownership.\n\n - **iHeartCats AI (dm_01j1sza0h7ekhaecys2p3y0vmj):** \n Utilize a cat care specialist that provides comprehensive content on cat health, behavior, and lifestyle.\n\n - **GreenMonster (dm_01j5xy9w5sf49bm6b1prm80m27):** \n Receive guidance for making conscious and compassionate choices benefiting people, animals, and the planet.\n\n - **WISH-TV AI (dm_01jagy9nqaeer9hxx8z1sk1jx6):** \n Get recommendations covering sports, breaking news, politics, multicultural updates, and more.\n\n Based on the chosen `data_model_id`, the tool processes the input query and returns a formatted summary including article titles, summaries, images, source URLs, publication dates, and relevance scores.\n ', 'inputSchema': {'type': 'object', 'title': 'dappier_ai_recommendationsArguments', 'required': ['query', 'data_model_id'], 'properties': {'ref': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Ref', 'default': None, 'description': 'The site domain where recommendations should be prioritized.'}, 'query': {'type': 'string', 'title': 'Query', 'description': 'The input string for AI-powered content recommendations.'}, 'data_model_id': {'enum': ['dm_01j0pb465keqmatq9k83dthx34', 'dm_01j0q82s4bfjmsqkhs3ywm3x6y', 'dm_01j1sz8t3qe6v9g8ad102kvmqn', 'dm_01j1sza0h7ekhaecys2p3y0vmj', 'dm_01j5xy9w5sf49bm6b1prm80m27', 'dm_01jagy9nqaeer9hxx8z1sk1jx6'], 'type': 'string', 'title': 'Data Model Id', 'description': 'The data model ID to use for recommendations.\n\nAvailable Data Models:\n- dm_01j0pb465keqmatq9k83dthx34: (Sports News) Real-time news, updates, and personalized content from top sports sources like Sportsnaut, Forever Blueshirts, Minnesota Sports Fan, LAFB Network, Bounding Into Sports and Ringside Intel.\n- dm_01j0q82s4bfjmsqkhs3ywm3x6y: (Lifestyle News) Real-time updates, analysis, and personalized content from top sources like The Mix, Snipdaily, Nerdable and Familyproof.\n- dm_01j1sz8t3qe6v9g8ad102kvmqn: (iHeartDogs AI) A dog care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartDogs.com.\n- dm_01j1sza0h7ekhaecys2p3y0vmj: (iHeartCats AI) A cat care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartCats.com.\n- dm_01j5xy9w5sf49bm6b1prm80m27: (GreenMonster) A helpful guide to making conscious and compassionate choices that benefit people, animals, and the planet.\n- dm_01jagy9nqaeer9hxx8z1sk1jx6: (WISH-TV AI) Covers sports, politics, breaking news, multicultural news, Hispanic language content, entertainment, health, and education.\n\n'}, 'num_articles_ref': {'type': 'integer', 'title': 'Num Articles Ref', 'default': 0, 'description': 'Minimum number of articles to return from the reference domain.'}, 'search_algorithm': {'enum': ['most_recent', 'semantic', 'most_recent_semantic', 'trending'], 'type': 'string', 'title': 'Search Algorithm', 'default': 'most_recent', 'description': 'The search algorithm to use for retrieving articles.'}, 'similarity_top_k': {'type': 'integer', 'title': 'Similarity Top K', 'default': 9, 'description': 'Number of top similar articles to retrieve based on semantic similarity.'}}}}] |
|
@JavaProgrammerLB/zoom-mcp-server | Zoom Meeting Scheduler | Schedule Zoom meetings effortlessly with AI assistance. Simplify your meeting setup process and enhance productivity by leveraging intelligent scheduling capabilities. Integrate seamlessly with your Zoom account to manage meetings more effectively. | 2025-04-04T14:10:53.135Z | 12 | https://smithery.ai/server/@JavaProgrammerLB/zoom-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'create_meeting', 'description': 'Create a meeting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'topic': {'type': 'string', 'maxLength': 200, 'description': "The meeting's topic."}, 'agenda': {'type': 'string', 'default': 'New Meeting', 'maxLength': 2000, 'description': "The meeting's agenda"}, 'timezone': {'type': 'string', 'description': "Timezone for the meeting's start time"}, 'start_time': {'type': 'string', 'description': "The meeting's start time"}}, 'additionalProperties': False}}, {'name': 'list_meetings', 'description': 'List scheduled meetings', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'type': {'type': 'string', 'description': 'The type of meeting.'}}, 'additionalProperties': False}}] |
@DappierAI/dappier-mcp | Dappier MCP Server | Enable fast, free real-time web search and access premium data from trusted media brands—news, financial markets, sports, entertainment, weather, and more. Build powerful AI agents with Dappier. | 2025-04-14T14:44:49.675Z | 12 | https://smithery.ai/server/@DappierAI/dappier-mcp | true | {
"scanPassed": true
} | [{'name': 'dappier_real_time_search', 'description': '\n Retrieve real-time search data from Dappier by processing an AI model that supports two key capabilities:\n\n - Real-Time Web Search: \n Access the latest news, stock market data, weather, travel information, deals, and more using model `am_01j06ytn18ejftedz6dyhz2b15`. \n Use this model when no stock ticker symbol is provided.\n\n - Stock Market Data: \n Retrieve real-time financial news, stock prices, and trade updates using model `am_01j749h8pbf7ns8r1bq9s2evrh`. \n Use this model only when a stock ticker symbol is provided.\n\n Based on the provided `ai_model_id`, the tool selects the appropriate model and returns search results.\n ', 'inputSchema': {'type': 'object', 'title': 'dappier_real_time_searchArguments', 'required': ['query', 'ai_model_id'], 'properties': {'query': {'type': 'string', 'title': 'Query', 'description': 'The search query to retrieve real-time information.'}, 'ai_model_id': {'enum': ['am_01j06ytn18ejftedz6dyhz2b15', 'am_01j749h8pbf7ns8r1bq9s2evrh'], 'type': 'string', 'title': 'Ai Model Id', 'description': 'The AI model ID to use for the query.\n\nAvailable AI Models:\n- am_01j06ytn18ejftedz6dyhz2b15: (Real-Time Data) Access real-time Google web search results, including the latest news, stock market data, news, weather, travel, deals, and more. Use this model when no stock ticker symbol is provided.\n- am_01j749h8pbf7ns8r1bq9s2evrh: (Stock Market Data) Access real-time financial news, stock prices, and trades from Polygon.io, with AI-powered insights and up-to-the-minute updates. Use this model only when a stock ticker symbol is provided.\n\n'}}}}, {'name': 'dappier_ai_recommendations', 'description': '\n Fetch AI-powered recommendations from Dappier by processing the provided query with a selected data model that tailors results to specific interests.\n\n - **Sports News (dm_01j0pb465keqmatq9k83dthx34):** \n Get real-time news, updates, and personalized content from top sports sources.\n\n - **Lifestyle News (dm_01j0q82s4bfjmsqkhs3ywm3x6y):** \n Access current lifestyle updates, analysis, and insights from leading lifestyle publications.\n\n - **iHeartDogs AI (dm_01j1sz8t3qe6v9g8ad102kvmqn):** \n Tap into a dog care expert with access to thousands of articles covering pet health, behavior, grooming, and ownership.\n\n - **iHeartCats AI (dm_01j1sza0h7ekhaecys2p3y0vmj):** \n Utilize a cat care specialist that provides comprehensive content on cat health, behavior, and lifestyle.\n\n - **GreenMonster (dm_01j5xy9w5sf49bm6b1prm80m27):** \n Receive guidance for making conscious and compassionate choices benefiting people, animals, and the planet.\n\n - **WISH-TV AI (dm_01jagy9nqaeer9hxx8z1sk1jx6):** \n Get recommendations covering sports, breaking news, politics, multicultural updates, and more.\n\n Based on the chosen `data_model_id`, the tool processes the input query and returns a formatted summary including article titles, summaries, images, source URLs, publication dates, and relevance scores.\n ', 'inputSchema': {'type': 'object', 'title': 'dappier_ai_recommendationsArguments', 'required': ['query', 'data_model_id'], 'properties': {'ref': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Ref', 'default': None, 'description': 'The site domain where recommendations should be prioritized.'}, 'query': {'type': 'string', 'title': 'Query', 'description': 'The input string for AI-powered content recommendations.'}, 'data_model_id': {'enum': ['dm_01j0pb465keqmatq9k83dthx34', 'dm_01j0q82s4bfjmsqkhs3ywm3x6y', 'dm_01j1sz8t3qe6v9g8ad102kvmqn', 'dm_01j1sza0h7ekhaecys2p3y0vmj', 'dm_01j5xy9w5sf49bm6b1prm80m27', 'dm_01jagy9nqaeer9hxx8z1sk1jx6'], 'type': 'string', 'title': 'Data Model Id', 'description': 'The data model ID to use for recommendations.\n\nAvailable Data Models:\n- dm_01j0pb465keqmatq9k83dthx34: (Sports News) Real-time news, updates, and personalized content from top sports sources like Sportsnaut, Forever Blueshirts, Minnesota Sports Fan, LAFB Network, Bounding Into Sports and Ringside Intel.\n- dm_01j0q82s4bfjmsqkhs3ywm3x6y: (Lifestyle News) Real-time updates, analysis, and personalized content from top sources like The Mix, Snipdaily, Nerdable and Familyproof.\n- dm_01j1sz8t3qe6v9g8ad102kvmqn: (iHeartDogs AI) A dog care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartDogs.com.\n- dm_01j1sza0h7ekhaecys2p3y0vmj: (iHeartCats AI) A cat care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartCats.com.\n- dm_01j5xy9w5sf49bm6b1prm80m27: (GreenMonster) A helpful guide to making conscious and compassionate choices that benefit people, animals, and the planet.\n- dm_01jagy9nqaeer9hxx8z1sk1jx6: (WISH-TV AI) Covers sports, politics, breaking news, multicultural news, Hispanic language content, entertainment, health, and education.\n\n'}, 'num_articles_ref': {'type': 'integer', 'title': 'Num Articles Ref', 'default': 0, 'description': 'Minimum number of articles to return from the reference domain.'}, 'search_algorithm': {'enum': ['most_recent', 'semantic', 'most_recent_semantic', 'trending'], 'type': 'string', 'title': 'Search Algorithm', 'default': 'most_recent', 'description': 'The search algorithm to use for retrieving articles.'}, 'similarity_top_k': {'type': 'integer', 'title': 'Similarity Top K', 'default': 9, 'description': 'Number of top similar articles to retrieve based on semantic similarity.'}}}}] |
|
@DappierAI/dappier-mcp | Dappier MCP Server | Enable fast, free real-time web search and access premium data from trusted media brands—news, financial markets, sports, entertainment, weather, and more. Build powerful AI agents with Dappier. | 2025-04-14T14:44:49.675Z | 12 | https://smithery.ai/server/@DappierAI/dappier-mcp | true | {
"scanPassed": true
} | [{'name': 'dappier_real_time_search', 'description': '\n Retrieve real-time search data from Dappier by processing an AI model that supports two key capabilities:\n\n - Real-Time Web Search: \n Access the latest news, stock market data, weather, travel information, deals, and more using model `am_01j06ytn18ejftedz6dyhz2b15`. \n Use this model when no stock ticker symbol is provided.\n\n - Stock Market Data: \n Retrieve real-time financial news, stock prices, and trade updates using model `am_01j749h8pbf7ns8r1bq9s2evrh`. \n Use this model only when a stock ticker symbol is provided.\n\n Based on the provided `ai_model_id`, the tool selects the appropriate model and returns search results.\n ', 'inputSchema': {'type': 'object', 'title': 'dappier_real_time_searchArguments', 'required': ['query', 'ai_model_id'], 'properties': {'query': {'type': 'string', 'title': 'Query', 'description': 'The search query to retrieve real-time information.'}, 'ai_model_id': {'enum': ['am_01j06ytn18ejftedz6dyhz2b15', 'am_01j749h8pbf7ns8r1bq9s2evrh'], 'type': 'string', 'title': 'Ai Model Id', 'description': 'The AI model ID to use for the query.\n\nAvailable AI Models:\n- am_01j06ytn18ejftedz6dyhz2b15: (Real-Time Data) Access real-time Google web search results, including the latest news, stock market data, news, weather, travel, deals, and more. Use this model when no stock ticker symbol is provided.\n- am_01j749h8pbf7ns8r1bq9s2evrh: (Stock Market Data) Access real-time financial news, stock prices, and trades from Polygon.io, with AI-powered insights and up-to-the-minute updates. Use this model only when a stock ticker symbol is provided.\n\n'}}}}, {'name': 'dappier_ai_recommendations', 'description': '\n Fetch AI-powered recommendations from Dappier by processing the provided query with a selected data model that tailors results to specific interests.\n\n - **Sports News (dm_01j0pb465keqmatq9k83dthx34):** \n Get real-time news, updates, and personalized content from top sports sources.\n\n - **Lifestyle News (dm_01j0q82s4bfjmsqkhs3ywm3x6y):** \n Access current lifestyle updates, analysis, and insights from leading lifestyle publications.\n\n - **iHeartDogs AI (dm_01j1sz8t3qe6v9g8ad102kvmqn):** \n Tap into a dog care expert with access to thousands of articles covering pet health, behavior, grooming, and ownership.\n\n - **iHeartCats AI (dm_01j1sza0h7ekhaecys2p3y0vmj):** \n Utilize a cat care specialist that provides comprehensive content on cat health, behavior, and lifestyle.\n\n - **GreenMonster (dm_01j5xy9w5sf49bm6b1prm80m27):** \n Receive guidance for making conscious and compassionate choices benefiting people, animals, and the planet.\n\n - **WISH-TV AI (dm_01jagy9nqaeer9hxx8z1sk1jx6):** \n Get recommendations covering sports, breaking news, politics, multicultural updates, and more.\n\n Based on the chosen `data_model_id`, the tool processes the input query and returns a formatted summary including article titles, summaries, images, source URLs, publication dates, and relevance scores.\n ', 'inputSchema': {'type': 'object', 'title': 'dappier_ai_recommendationsArguments', 'required': ['query', 'data_model_id'], 'properties': {'ref': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Ref', 'default': None, 'description': 'The site domain where recommendations should be prioritized.'}, 'query': {'type': 'string', 'title': 'Query', 'description': 'The input string for AI-powered content recommendations.'}, 'data_model_id': {'enum': ['dm_01j0pb465keqmatq9k83dthx34', 'dm_01j0q82s4bfjmsqkhs3ywm3x6y', 'dm_01j1sz8t3qe6v9g8ad102kvmqn', 'dm_01j1sza0h7ekhaecys2p3y0vmj', 'dm_01j5xy9w5sf49bm6b1prm80m27', 'dm_01jagy9nqaeer9hxx8z1sk1jx6'], 'type': 'string', 'title': 'Data Model Id', 'description': 'The data model ID to use for recommendations.\n\nAvailable Data Models:\n- dm_01j0pb465keqmatq9k83dthx34: (Sports News) Real-time news, updates, and personalized content from top sports sources like Sportsnaut, Forever Blueshirts, Minnesota Sports Fan, LAFB Network, Bounding Into Sports and Ringside Intel.\n- dm_01j0q82s4bfjmsqkhs3ywm3x6y: (Lifestyle News) Real-time updates, analysis, and personalized content from top sources like The Mix, Snipdaily, Nerdable and Familyproof.\n- dm_01j1sz8t3qe6v9g8ad102kvmqn: (iHeartDogs AI) A dog care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartDogs.com.\n- dm_01j1sza0h7ekhaecys2p3y0vmj: (iHeartCats AI) A cat care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartCats.com.\n- dm_01j5xy9w5sf49bm6b1prm80m27: (GreenMonster) A helpful guide to making conscious and compassionate choices that benefit people, animals, and the planet.\n- dm_01jagy9nqaeer9hxx8z1sk1jx6: (WISH-TV AI) Covers sports, politics, breaking news, multicultural news, Hispanic language content, entertainment, health, and education.\n\n'}, 'num_articles_ref': {'type': 'integer', 'title': 'Num Articles Ref', 'default': 0, 'description': 'Minimum number of articles to return from the reference domain.'}, 'search_algorithm': {'enum': ['most_recent', 'semantic', 'most_recent_semantic', 'trending'], 'type': 'string', 'title': 'Search Algorithm', 'default': 'most_recent', 'description': 'The search algorithm to use for retrieving articles.'}, 'similarity_top_k': {'type': 'integer', 'title': 'Similarity Top K', 'default': 9, 'description': 'Number of top similar articles to retrieve based on semantic similarity.'}}}}] |
|
@brianirish/laravel-docs-mcp | Laravel Documentation Server | Provide AI assistants and language models with seamless access to Laravel documentation. Enable searching, reading, and updating Laravel docs dynamically to enhance AI-driven development support. Support multiple Laravel versions and automatic documentation updates from GitHub. | 2025-04-20T06:01:21.967Z | 12 | https://smithery.ai/server/@brianirish/laravel-docs-mcp | true | null | null | [{'name': 'list_docs', 'description': 'List all available Laravel documentation files.', 'inputSchema': {'type': 'object', 'title': 'list_docsArguments', 'properties': {}}}, {'name': 'search_docs', 'description': 'Search through all Laravel documentation for a specific term.', 'inputSchema': {'type': 'object', 'title': 'search_docsArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'update_docs', 'description': '\n Update Laravel documentation from official GitHub repository.\n \n Args:\n version: Laravel version branch (e.g., "12.x")\n force: Force update even if already up to date\n ', 'inputSchema': {'type': 'object', 'title': 'update_docsArguments', 'properties': {'force': {'type': 'boolean', 'title': 'Force', 'default': False}, 'version': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Version', 'default': None}}}}, {'name': 'docs_info', 'description': 'Get information about the documentation version and status.', 'inputSchema': {'type': 'object', 'title': 'docs_infoArguments', 'properties': {}}}, {'name': 'echo', 'description': 'Simple echo tool for testing.', 'inputSchema': {'type': 'object', 'title': 'echoArguments', 'required': ['message'], 'properties': {'message': {'type': 'string', 'title': 'Message'}}}}] |
@brianirish/laravel-docs-mcp | Laravel Documentation Server | Provide AI assistants and language models with seamless access to Laravel documentation. Enable searching, reading, and updating Laravel docs dynamically to enhance AI-driven development support. Support multiple Laravel versions and automatic documentation updates from GitHub. | 2025-04-20T06:01:21.967Z | 12 | https://smithery.ai/server/@brianirish/laravel-docs-mcp | true | null | null | [{'name': 'list_docs', 'description': 'List all available Laravel documentation files.', 'inputSchema': {'type': 'object', 'title': 'list_docsArguments', 'properties': {}}}, {'name': 'search_docs', 'description': 'Search through all Laravel documentation for a specific term.', 'inputSchema': {'type': 'object', 'title': 'search_docsArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'update_docs', 'description': '\n Update Laravel documentation from official GitHub repository.\n \n Args:\n version: Laravel version branch (e.g., "12.x")\n force: Force update even if already up to date\n ', 'inputSchema': {'type': 'object', 'title': 'update_docsArguments', 'properties': {'force': {'type': 'boolean', 'title': 'Force', 'default': False}, 'version': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Version', 'default': None}}}}, {'name': 'docs_info', 'description': 'Get information about the documentation version and status.', 'inputSchema': {'type': 'object', 'title': 'docs_infoArguments', 'properties': {}}}, {'name': 'echo', 'description': 'Simple echo tool for testing.', 'inputSchema': {'type': 'object', 'title': 'echoArguments', 'required': ['message'], 'properties': {'message': {'type': 'string', 'title': 'Message'}}}}] |
@vaebe/mcp | Server Time | Retrieve the current time effortlessly with this server. Integrate time-fetching capabilities into your applications seamlessly. Enhance your projects with accurate and reliable time data. | 2025-04-08T02:45:20.376Z | 12 | https://smithery.ai/server/@vaebe/mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_current_time', 'description': '获取当前时间', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'timezone': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'convert_time', 'description': '在时区之间转换时间', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['source_timezone', 'time', 'target_timezone'], 'properties': {'time': {'type': 'string', 'pattern': '^([01]\\d|2[0-3]):([0-5]\\d)$'}, 'source_timezone': {'type': 'string'}, 'target_timezone': {'type': 'string'}}, 'additionalProperties': False}}] |
@vaebe/mcp | Server Time | Retrieve the current time effortlessly with this server. Integrate time-fetching capabilities into your applications seamlessly. Enhance your projects with accurate and reliable time data. | 2025-04-08T02:45:20.376Z | 12 | https://smithery.ai/server/@vaebe/mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_current_time', 'description': '获取当前时间', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'timezone': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'convert_time', 'description': '在时区之间转换时间', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['source_timezone', 'time', 'target_timezone'], 'properties': {'time': {'type': 'string', 'pattern': '^([01]\\d|2[0-3]):([0-5]\\d)$'}, 'source_timezone': {'type': 'string'}, 'target_timezone': {'type': 'string'}}, 'additionalProperties': False}}] |
@kiennd/reference-servers | Sequential Thinking | Facilitate dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps and revise thoughts as understanding deepens, allowing for alternative paths of reasoning. Generate and verify solution hypotheses effectively. | 2025-04-10T08:27:30.605Z | 32 | https://smithery.ai/server/@kiennd/reference-servers | true | null | {
"scanPassed": true
} | [{'name': 'sequentialthinking', 'description': 'A detailed tool for dynamic and reflective problem-solving through thoughts.\nThis tool helps analyze problems through a flexible thinking process that can adapt and evolve.\nEach thought can build on, question, or revise previous insights as understanding deepens.\n\nWhen to use this tool:\n- Breaking down complex problems into steps\n- Planning and design with room for revision\n- Analysis that might need course correction\n- Problems where the full scope might not be clear initially\n- Problems that require a multi-step solution\n- Tasks that need to maintain context over multiple steps\n- Situations where irrelevant information needs to be filtered out\n\nKey features:\n- You can adjust total_thoughts up or down as you progress\n- You can question or revise previous thoughts\n- You can add more thoughts even after reaching what seemed like the end\n- You can express uncertainty and explore alternative approaches\n- Not every thought needs to build linearly - you can branch or backtrack\n- Generates a solution hypothesis\n- Verifies the hypothesis based on the Chain of Thought steps\n- Repeats the process until satisfied\n- Provides a correct answer\n\nParameters explained:\n- thought: Your current thinking step, which can include:\n* Regular analytical steps\n* Revisions of previous thoughts\n* Questions about previous decisions\n* Realizations about needing more analysis\n* Changes in approach\n* Hypothesis generation\n* Hypothesis verification\n- next_thought_needed: True if you need more thinking, even if at what seemed like the end\n- thought_number: Current number in sequence (can go beyond initial total if needed)\n- total_thoughts: Current estimate of thoughts needed (can be adjusted up/down)\n- is_revision: A boolean indicating if this thought revises previous thinking\n- revises_thought: If is_revision is true, which thought number is being reconsidered\n- branch_from_thought: If branching, which thought number is the branching point\n- branch_id: Identifier for the current branch (if any)\n- needs_more_thoughts: If reaching end but realizing more thoughts needed\n\nYou should:\n1. Start with an initial estimate of needed thoughts, but be ready to adjust\n2. Feel free to question or revise previous thoughts\n3. Don\'t hesitate to add more thoughts if needed, even at the "end"\n4. Express uncertainty when present\n5. Mark thoughts that revise previous thinking or branch into new paths\n6. Ignore information that is irrelevant to the current step\n7. Generate a solution hypothesis when appropriate\n8. Verify the hypothesis based on the Chain of Thought steps\n9. Repeat the process until satisfied with the solution\n10. Provide a single, ideally correct answer as the final output\n11. Only set next_thought_needed to false when truly done and a satisfactory answer is reached', 'inputSchema': {'type': 'object', 'required': ['thought', 'nextThoughtNeeded', 'thoughtNumber', 'totalThoughts'], 'properties': {'thought': {'type': 'string', 'description': 'Your current thinking step'}, 'branchId': {'type': 'string', 'description': 'Branch identifier'}, 'isRevision': {'type': 'boolean', 'description': 'Whether this revises previous thinking'}, 'thoughtNumber': {'type': 'integer', 'minimum': 1, 'description': 'Current thought number'}, 'totalThoughts': {'type': 'integer', 'minimum': 1, 'description': 'Estimated total thoughts needed'}, 'revisesThought': {'type': 'integer', 'minimum': 1, 'description': 'Which thought is being reconsidered'}, 'branchFromThought': {'type': 'integer', 'minimum': 1, 'description': 'Branching point thought number'}, 'needsMoreThoughts': {'type': 'boolean', 'description': 'If more thoughts are needed'}, 'nextThoughtNeeded': {'type': 'boolean', 'description': 'Whether another thought step is needed'}}}}] |
@baryhuang/mcp-remote-macos-use | Remote MacOs Use | Enable AI to fully control remote macOS systems effortlessly. Experience a native macOS environment without additional software installations, allowing your AI to operate seamlessly. Enjoy universal compatibility and minimal setup for instant productivity. | 2025-03-27T16:23:22.120Z | 12 | https://smithery.ai/server/@baryhuang/mcp-remote-macos-use | true | null | {
"scanPassed": true
} | [{'name': 'remote_macos_get_screen', 'description': 'Connect to a remote MacOs machine and get a screenshot of the remote desktop. Uses environment variables for connection details.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'remote_macos_mouse_scroll', 'description': 'Perform a mouse scroll at specified coordinates on a remote MacOs machine, with automatic coordinate scaling. Uses environment variables for connection details.', 'inputSchema': {'type': 'object', 'required': ['x', 'y'], 'properties': {'x': {'type': 'integer', 'description': 'X coordinate for mouse position (in source dimensions)'}, 'y': {'type': 'integer', 'description': 'Y coordinate for mouse position (in source dimensions)'}, 'direction': {'enum': ['up', 'down'], 'type': 'string', 'default': 'down', 'description': 'Scroll direction'}, 'source_width': {'type': 'integer', 'default': 1366, 'description': 'Width of the reference screen for coordinate scaling'}, 'source_height': {'type': 'integer', 'default': 768, 'description': 'Height of the reference screen for coordinate scaling'}}}}, {'name': 'remote_macos_send_keys', 'description': 'Send keyboard input to a remote MacOs machine. Uses environment variables for connection details.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'text': {'type': 'string', 'description': 'Text to send as keystrokes'}, 'special_key': {'type': 'string', 'description': "Special key to send (e.g., 'enter', 'backspace', 'tab', 'escape', etc.)"}, 'key_combination': {'type': 'string', 'description': "Key combination to send (e.g., 'ctrl+c', 'cmd+q', 'ctrl+alt+delete', etc.)"}}}}, {'name': 'remote_macos_mouse_move', 'description': 'Move the mouse cursor to specified coordinates on a remote MacOs machine, with automatic coordinate scaling. Uses environment variables for connection details.', 'inputSchema': {'type': 'object', 'required': ['x', 'y'], 'properties': {'x': {'type': 'integer', 'description': 'X coordinate for mouse position (in source dimensions)'}, 'y': {'type': 'integer', 'description': 'Y coordinate for mouse position (in source dimensions)'}, 'source_width': {'type': 'integer', 'default': 1366, 'description': 'Width of the reference screen for coordinate scaling'}, 'source_height': {'type': 'integer', 'default': 768, 'description': 'Height of the reference screen for coordinate scaling'}}}}, {'name': 'remote_macos_mouse_click', 'description': 'Perform a mouse click at specified coordinates on a remote MacOs machine, with automatic coordinate scaling. Uses environment variables for connection details.', 'inputSchema': {'type': 'object', 'required': ['x', 'y'], 'properties': {'x': {'type': 'integer', 'description': 'X coordinate for mouse position (in source dimensions)'}, 'y': {'type': 'integer', 'description': 'Y coordinate for mouse position (in source dimensions)'}, 'button': {'type': 'integer', 'default': 1, 'description': 'Mouse button (1=left, 2=middle, 3=right)'}, 'source_width': {'type': 'integer', 'default': 1366, 'description': 'Width of the reference screen for coordinate scaling'}, 'source_height': {'type': 'integer', 'default': 768, 'description': 'Height of the reference screen for coordinate scaling'}}}}, {'name': 'remote_macos_mouse_double_click', 'description': 'Perform a mouse double-click at specified coordinates on a remote MacOs machine, with automatic coordinate scaling. Uses environment variables for connection details.', 'inputSchema': {'type': 'object', 'required': ['x', 'y'], 'properties': {'x': {'type': 'integer', 'description': 'X coordinate for mouse position (in source dimensions)'}, 'y': {'type': 'integer', 'description': 'Y coordinate for mouse position (in source dimensions)'}, 'button': {'type': 'integer', 'default': 1, 'description': 'Mouse button (1=left, 2=middle, 3=right)'}, 'source_width': {'type': 'integer', 'default': 1366, 'description': 'Width of the reference screen for coordinate scaling'}, 'source_height': {'type': 'integer', 'default': 768, 'description': 'Height of the reference screen for coordinate scaling'}}}}] |
@xenoailimited/mavae-image-toolbox | Mavae Image Toolbox | MAVAE IMAGE TOOLBOX is a Model Context Protocol (MCP) server for interacting with image media tools. 🚀 Image Generation | 🚀 Image Editing | 🚀 Collection Management | 🚀 Model & Lora Management | 2025-03-20T13:26:54.266Z | 11 | https://smithery.ai/server/@xenoailimited/mavae-image-toolbox | true | null | {
"scanPassed": true
} | [{'name': 'image_raw_generate', 'description': 'Generate an image using raw AIGC configuration. Usually, check the generation status 10 seconds after starting the image generation to allow sufficient time for the process.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['prompt', 'aigc_config'], 'properties': {'prompt': {'type': 'string', 'description': 'The prompt to generate the image.'}, 'aigc_config': {'type': 'object', 'required': ['model'], 'properties': {'ar': {'type': 'string', 'description': 'Aspect ratio of the image in width:height format, e.g., 1:1, 16:9. Must be two positive integers separated by a colon.'}, 'cfg': {'type': 'number', 'description': 'Controls how strongly the image follows the prompt. Higher = more faithful, but too high may distort. Suggested: 4–10.'}, 'seed': {'type': 'string', 'description': 'Controls randomness of image generation. Same seed = same image. Use -1 for random. Range: 0-4294967295 or -1.'}, 'step': {'type': 'number', 'description': 'Number of sampling steps. Higher steps = clearer, more detailed images, but slower. Suggested: 20-40.'}, 'model': {'type': 'string', 'description': 'Base model for image generation. Can be model name (e.g., animagineXl40Opt.Mt5n), hash (e.g., 6327eca98b), or full title (e.g., animagineXl40Opt.Mt5n.safetensors [6327eca98b]). Different models affect style and quality.'}, 'width': {'type': 'number', 'description': 'Image width (pixels). Set along with width. Range: 64-2000.'}, 'height': {'type': 'number', 'description': 'Image height (pixels). Set along with width. Range: 64-2000.'}, 'n_iter': {'type': 'string', 'description': 'Number of iterations (batch count). Integer (≥1). Defines how many times the model runs, generating batch_size images per iteration. For example, with n_iter=3 and batch_size=2, a total of 6 images are produced.'}, 'sampler': {'enum': ['DPM++ 2M', 'DPM++ SDE', 'DPM++ 2M SDE', 'DPM++ 2M SDE Heun', 'DPM++ 2S a', 'DPM++ 3M SDE', 'Euler a', 'Euler', 'LMS', 'Heun', 'DPM2', 'DPM2 a', 'DPM fast', 'DPM adaptive', 'Restart', 'DDIM', 'DDIM CFG++', 'PLMS', 'UniPC', 'LCM'], 'type': 'string', 'description': 'Sampling algorithm. Affects image quality, speed, and style. Recommended: DPM++ series like DPM++ 2M Karras.'}, 'hr_scale': {'type': 'string', 'description': 'Upscaling factor for Hires Fix. Float (1.0-4.0, 1 decimal place). Determines final image resolution. For example, hr_scale=2.0 doubles the image size.'}, 'upscaler': {'enum': ['4x-UltraSharp', 'R-ESRGAN', 'ESRGAN'], 'type': 'string', 'description': 'Select the upscaling algorithm for increasing image resolution. Options: Latent, ESRGAN, R-ESRGAN, 4x-UltraSharp, etc.'}, 'enable_hr': {'enum': ['True', 'False'], 'type': 'string', 'description': "Enable Hires Fix (high-resolution repair). String format: 'True' / 'False'. Should be 'True' if hr_scale or related parameters are set."}, 'image_url': {'type': 'string', 'description': 'Upload reference image for ControlNet (e.g., sketch, depth, pose). Guides the image generation.'}, 'save_meta': {'enum': ['True', 'False'], 'type': 'string', 'description': "Whether to save metadata (e.g. prompt and settings) into the image file. String format: 'True' / 'False'. Useful for reproducibility and reference."}, 'pass_steps': {'type': 'string', 'description': 'Number of sampling steps in the second pass of Hires Fix. Integer format (e.g., 0, 10, 20). Higher values improve detail but increase processing time.'}, 'control_image': {'type': 'string', 'description': 'Upload reference image for ControlNet (e.g., sketch, depth, pose). Helps guide image generation.'}, 'control_units': {'type': 'array', 'items': {'type': 'object', 'properties': {'model': {'type': 'string', 'description': 'Specifies the model used by ControlNet. Accepts model name (e.g. control_v11p_sd15_openpose), hash (e.g. 8e4777ac), or full title (e.g. control_v11p_sd15_openpose [8e4777ac]).'}, 'module': {'type': 'string', 'description': "Defines the ControlNet preprocessor module type. String format, e.g., 'ip-adapter_clip_sd15' etc. Determines how the input image is interpreted."}, 'weight': {'type': 'number', 'description': 'Defines how strongly the ControlNet input affects the final image. Float (usually 0.0-2.0, 1 decimal place). Higher = stronger control. Default is 1.0.'}, 'resize_mode': {'enum': ['Just Resize', 'Crop and Resize', 'Resize and Fill'], 'type': 'string', 'description': "Defines how the input image is resized to match the generation size. String format, common values: 'Just Resize' - resize directly to target size, 'Crop and Resize' - crop and scale while preserving aspect ratio, 'Resize and Fill' - scale and pad the image to fit"}, 'threshold_a': {'type': 'number', 'default': 0.5, 'description': 'First threshold value for preprocessing module (e.g., edge detection). Float format (usually 0.0-255.0, 1 decimal place). Exact behavior depends on the module.'}, 'threshold_b': {'type': 'number', 'default': 0.5, 'description': 'Second threshold value for preprocessing module (e.g., edge detection). Float format (usually 0.0-255.0, 1 decimal place). Used with threshold_a to define sensitivity.'}, 'control_mode': {'type': 'number', 'default': 0, 'description': 'Sets the control priority mode for ControlNet. Integer format: 0 - Balanced (equal influence), 1 - My prompt is more important, 2 - ControlNet is more important'}, 'guidance_end': {'type': 'number', 'default': 1, 'description': 'Defines when ControlNet influence stops during sampling. Float (0.0-1.0, 1 decimal place). For example, 0.8 means control ends at 80% of the process.'}, 'pixel_perfect': {'enum': ['True', 'False'], 'type': 'string', 'description': "Enables Pixel Perfect mode, which auto-adjusts preprocessor settings (e.g. resizing). String format: 'True' or 'False'. Preserves input image details more accurately."}, 'guidance_start': {'type': 'number', 'default': 0, 'description': 'Defines when ControlNet influence starts during sampling. Float (0.0-1.0, 1 decimal place). For example, 0.1 means control starts at 10% of the process.'}}, 'additionalProperties': False}, 'description': 'An array of ControlNet units. List format, where each item includes parameters like input_image, model, module, weight, etc. Allows multiple ControlNet modules to be applied together.'}, 'restore_faces': {'enum': ['True', 'False'], 'type': 'string', 'description': "Enable face restoration (typically using GFPGAN or CodeFormer). String format: 'True' / 'False'. Improves facial features in portraits when enabled."}, 'denoising_strength': {'type': 'string', 'description': 'Controls how much the image changes. Float (0.0–1.0, 1 decimal place). Higher = more change. 0.3–0.7 is typical, 0.8+ may alter too much.'}}, 'additionalProperties': False}, 'negative_prompt': {'type': 'string', 'description': 'The negative prompt to generate the image.'}}, 'additionalProperties': False}}, {'name': 'image_collection_generate', 'description': "Generate an image using a collection's AIGC configuration. You need to first check the collection details to understand its variables so you can call it correctly. Usually, check the generation status 10 seconds after starting the image generation to allow sufficient time for the process.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'params': {'type': 'object', 'description': "A key-value map used to replace variable placeholders (e.g. $gender, $bg) in the collection's prompt. Keys should match variable names defined in the collection (without $), and values are their replacements.", 'additionalProperties': {'type': 'string'}}, 'collection_id': {'type': 'number', 'description': 'The collection id used to generate the image.'}, 'collection_name': {'type': 'string', 'description': 'The collection name used to generate the image.'}}, 'additionalProperties': False}}, {'name': 'image_retry_generate', 'description': 'Retry a failed image generation. Usually, check the generation status 10 seconds after starting the image generation to allow sufficient time for the process.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['image_id'], 'properties': {'image_id': {'type': 'string', 'description': 'The image id to retry.'}}, 'additionalProperties': False}}, {'name': 'image_state', 'description': 'Get the details of an owned image.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['image_id'], 'properties': {'image_id': {'type': 'string', 'description': 'The image id.'}}, 'additionalProperties': False}}, {'name': 'list_images', 'description': 'Get the list of owned images.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'number', 'description': 'The page number.'}, 'page_size': {'type': 'number', 'description': 'The page size.'}}, 'additionalProperties': False}}, {'name': 'generate_task_state', 'description': 'Get the generation state of an image by task id. Usually, check the generation status 10 seconds after starting the image generation to allow sufficient time for the process.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['task_id'], 'properties': {'refresh': {'type': 'string', 'default': 'true', 'description': 'When image is generated, refresh the image state.'}, 'task_id': {'type': 'string', 'description': 'The generation task id.'}}, 'additionalProperties': False}}, {'name': 'list_loras', 'description': 'Get the list of available loras.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list_models', 'description': 'Get the list of available models.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'collection_create', 'description': 'Create a new collection.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'prompt', 'aigc_config'], 'properties': {'name': {'type': 'string', 'description': 'The name of the collection.'}, 'prompt': {'type': 'string', 'description': "The base prompt string that supports variable placeholders using $variable syntax, e.g., 'portrait, 1 $gender, $clothing $style'. Variables will be dynamically replaced at image generation time."}, 'public': {'type': 'boolean', 'default': True, 'description': 'Whether the collection is public.'}, 'variables': {'type': 'array', 'items': {'type': 'string'}, 'description': "A list of variable names (without $) that are used in the prompt string, e.g., ['gender', 'clothing', 'style']. These will be replaced by values at generation time."}, 'aigc_config': {'type': 'object', 'required': ['model'], 'properties': {'ar': {'type': 'string', 'description': 'Aspect ratio of the image in width:height format, e.g., 1:1, 16:9. Must be two positive integers separated by a colon.'}, 'cfg': {'type': 'number', 'description': 'Controls how strongly the image follows the prompt. Higher = more faithful, but too high may distort. Suggested: 4–10.'}, 'seed': {'type': 'string', 'description': 'Controls randomness of image generation. Same seed = same image. Use -1 for random. Range: 0-4294967295 or -1.'}, 'step': {'type': 'number', 'description': 'Number of sampling steps. Higher steps = clearer, more detailed images, but slower. Suggested: 20-40.'}, 'model': {'type': 'string', 'description': 'Base model for image generation. Can be model name (e.g., animagineXl40Opt.Mt5n), hash (e.g., 6327eca98b), or full title (e.g., animagineXl40Opt.Mt5n.safetensors [6327eca98b]). Different models affect style and quality.'}, 'width': {'type': 'number', 'description': 'Image width (pixels). Set along with width. Range: 64-2000.'}, 'height': {'type': 'number', 'description': 'Image height (pixels). Set along with width. Range: 64-2000.'}, 'n_iter': {'type': 'string', 'description': 'Number of iterations (batch count). Integer (≥1). Defines how many times the model runs, generating batch_size images per iteration. For example, with n_iter=3 and batch_size=2, a total of 6 images are produced.'}, 'sampler': {'enum': ['DPM++ 2M', 'DPM++ SDE', 'DPM++ 2M SDE', 'DPM++ 2M SDE Heun', 'DPM++ 2S a', 'DPM++ 3M SDE', 'Euler a', 'Euler', 'LMS', 'Heun', 'DPM2', 'DPM2 a', 'DPM fast', 'DPM adaptive', 'Restart', 'DDIM', 'DDIM CFG++', 'PLMS', 'UniPC', 'LCM'], 'type': 'string', 'description': 'Sampling algorithm. Affects image quality, speed, and style. Recommended: DPM++ series like DPM++ 2M Karras.'}, 'hr_scale': {'type': 'string', 'description': 'Upscaling factor for Hires Fix. Float (1.0-4.0, 1 decimal place). Determines final image resolution. For example, hr_scale=2.0 doubles the image size.'}, 'upscaler': {'enum': ['4x-UltraSharp', 'R-ESRGAN', 'ESRGAN'], 'type': 'string', 'description': 'Select the upscaling algorithm for increasing image resolution. Options: Latent, ESRGAN, R-ESRGAN, 4x-UltraSharp, etc.'}, 'enable_hr': {'enum': ['True', 'False'], 'type': 'string', 'description': "Enable Hires Fix (high-resolution repair). String format: 'True' / 'False'. Should be 'True' if hr_scale or related parameters are set."}, 'image_url': {'type': 'string', 'description': 'Upload reference image for ControlNet (e.g., sketch, depth, pose). Guides the image generation.'}, 'save_meta': {'enum': ['True', 'False'], 'type': 'string', 'description': "Whether to save metadata (e.g. prompt and settings) into the image file. String format: 'True' / 'False'. Useful for reproducibility and reference."}, 'pass_steps': {'type': 'string', 'description': 'Number of sampling steps in the second pass of Hires Fix. Integer format (e.g., 0, 10, 20). Higher values improve detail but increase processing time.'}, 'control_image': {'type': 'string', 'description': 'Upload reference image for ControlNet (e.g., sketch, depth, pose). Helps guide image generation.'}, 'control_units': {'type': 'array', 'items': {'type': 'object', 'properties': {'model': {'type': 'string', 'description': 'Specifies the model used by ControlNet. Accepts model name (e.g. control_v11p_sd15_openpose), hash (e.g. 8e4777ac), or full title (e.g. control_v11p_sd15_openpose [8e4777ac]).'}, 'module': {'type': 'string', 'description': "Defines the ControlNet preprocessor module type. String format, e.g., 'ip-adapter_clip_sd15' etc. Determines how the input image is interpreted."}, 'weight': {'type': 'number', 'description': 'Defines how strongly the ControlNet input affects the final image. Float (usually 0.0-2.0, 1 decimal place). Higher = stronger control. Default is 1.0.'}, 'resize_mode': {'enum': ['Just Resize', 'Crop and Resize', 'Resize and Fill'], 'type': 'string', 'description': "Defines how the input image is resized to match the generation size. String format, common values: 'Just Resize' - resize directly to target size, 'Crop and Resize' - crop and scale while preserving aspect ratio, 'Resize and Fill' - scale and pad the image to fit"}, 'threshold_a': {'type': 'number', 'default': 0.5, 'description': 'First threshold value for preprocessing module (e.g., edge detection). Float format (usually 0.0-255.0, 1 decimal place). Exact behavior depends on the module.'}, 'threshold_b': {'type': 'number', 'default': 0.5, 'description': 'Second threshold value for preprocessing module (e.g., edge detection). Float format (usually 0.0-255.0, 1 decimal place). Used with threshold_a to define sensitivity.'}, 'control_mode': {'type': 'number', 'default': 0, 'description': 'Sets the control priority mode for ControlNet. Integer format: 0 - Balanced (equal influence), 1 - My prompt is more important, 2 - ControlNet is more important'}, 'guidance_end': {'type': 'number', 'default': 1, 'description': 'Defines when ControlNet influence stops during sampling. Float (0.0-1.0, 1 decimal place). For example, 0.8 means control ends at 80% of the process.'}, 'pixel_perfect': {'enum': ['True', 'False'], 'type': 'string', 'description': "Enables Pixel Perfect mode, which auto-adjusts preprocessor settings (e.g. resizing). String format: 'True' or 'False'. Preserves input image details more accurately."}, 'guidance_start': {'type': 'number', 'default': 0, 'description': 'Defines when ControlNet influence starts during sampling. Float (0.0-1.0, 1 decimal place). For example, 0.1 means control starts at 10% of the process.'}}, 'additionalProperties': False}, 'description': 'An array of ControlNet units. List format, where each item includes parameters like input_image, model, module, weight, etc. Allows multiple ControlNet modules to be applied together.'}, 'restore_faces': {'enum': ['True', 'False'], 'type': 'string', 'description': "Enable face restoration (typically using GFPGAN or CodeFormer). String format: 'True' / 'False'. Improves facial features in portraits when enabled."}, 'denoising_strength': {'type': 'string', 'description': 'Controls how much the image changes. Float (0.0–1.0, 1 decimal place). Higher = more change. 0.3–0.7 is typical, 0.8+ may alter too much.'}}, 'additionalProperties': False}, 'description': {'type': 'string', 'description': 'The description of the collection.'}, 'train_server': {'type': 'string', 'default': 'sd', 'description': 'The used aigc server of the collection.'}, 'negative_prompt': {'type': 'string', 'description': 'The negative prompt.'}}, 'additionalProperties': False}}, {'name': 'collection_delete', 'description': 'Delete a collection.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'collection_id': {'type': 'number', 'description': 'The collection id to delete.'}, 'collection_name': {'type': 'string', 'description': 'The collection name to delete.'}}, 'additionalProperties': False}}, {'name': 'collection_toggle_public', 'description': 'Toggle the public status of a collection.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'collection_id': {'type': 'number', 'description': 'The collection id to toggle public.'}, 'collection_name': {'type': 'string', 'description': 'The collection name to toggle public.'}}, 'additionalProperties': False}}, {'name': 'collection_list', 'description': 'Get the list of owned collections.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'number', 'description': 'The page.'}, 'page_size': {'type': 'number', 'description': 'The page size.'}, 'collection_name': {'type': 'string', 'description': 'The collection name to filter.'}}, 'additionalProperties': False}}, {'name': 'collection_state', 'description': 'Get the details of an owned collection.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['collection_id'], 'properties': {'collection_id': {'type': 'number', 'description': 'The collection id.'}}, 'additionalProperties': False}}, {'name': 'token_state', 'description': 'Get the x-api-token state.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'compress_image', 'description': 'Lossless compression of images (PNG, JPEG, WebP, GIF), support for local paths and URLs.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['inputs'], 'properties': {'inputs': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The URLs or full paths to the images to compress.'}, 'quality': {'type': 'number', 'default': 80, 'description': 'The quality of the compressed image.'}, 'outputPath': {'type': 'string', 'description': 'The full path to save the compressed image.'}}, 'additionalProperties': False}}, {'name': 'crop_image', 'description': 'Crop images (PNG, JPEG, WebP, GIF) with local path and URL support', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['inputs'], 'properties': {'top': {'type': 'number', 'default': 0, 'description': 'The left position of the cropped image.'}, 'left': {'type': 'number', 'default': 0, 'description': 'The top position of the cropped image.'}, 'width': {'type': 'number', 'default': 512, 'description': 'The width of the cropped image.'}, 'height': {'type': 'number', 'default': 512, 'description': 'The height of the cropped image.'}, 'inputs': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The URLs or full paths to the images to crop.'}, 'outputPath': {'type': 'string', 'description': 'The full path to save the cropped image.'}}, 'additionalProperties': False}}, {'name': 'web3_image_tokenization', 'description': 'Tokenize images to become NFT (Non-Fungible Token) on the blockchain.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['image_id', 'recipient'], 'properties': {'image_id': {'type': 'number', 'description': 'The image id.'}, 'recipient': {'type': 'string', 'description': 'The recipient of the NFT, it should be an ethereum address, starting at 0x, length 42.'}}, 'additionalProperties': False}}, {'name': 'web3_job_state', 'description': 'Get the state of a job by job id.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['job_id'], 'properties': {'job_id': {'type': 'string', 'description': 'The job id.'}, 'job_type': {'enum': ['image_tokenization_queue'], 'type': 'string', 'default': 'image_tokenization_queue', 'description': 'The type of job.'}}, 'additionalProperties': False}}, {'name': 'resize_image', 'description': 'Resize images with proportional or fixed dimensions, supports local paths and URLs.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['inputs'], 'properties': {'fit': {'enum': ['cover', 'contain', 'fill', 'inside', 'outside'], 'type': 'string', 'default': 'contain', 'description': 'How the image should be resized to fit the target dimensions.'}, 'width': {'type': 'number', 'description': 'The target width of the resized image in pixels.'}, 'height': {'type': 'number', 'description': 'The target height of the resized image in pixels.'}, 'inputs': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The URLs or full paths to the images to resize.'}, 'outputPath': {'type': 'string', 'description': 'The full path to save the resized image.'}}, 'additionalProperties': False}}] |
@bitrefill/bitrefill-mcp-server | Bitrefill MCP Server | Access Bitrefill services to search for gift cards, mobile top-ups, and more. Enhance your AI assistant's capabilities by integrating with Bitrefill's offerings using the Model Context Protocol. | 2025-03-12T23:45:40.261Z | 11 | https://smithery.ai/server/@bitrefill/bitrefill-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'search', 'description': "Search for gift cards, esims, mobile topups and more. It's suggested to use the `categories` tool before searching for products, to have a better understanding of what's available.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'col': {'type': 'number', 'description': 'Column layout parameter'}, 'rec': {'type': 'number', 'description': 'Recommendation parameter'}, 'sec': {'type': 'number', 'description': 'Security parameter'}, 'src': {'type': 'string', 'description': 'Source of the request'}, 'cart': {'type': 'string', 'description': 'Cart identifier'}, 'skip': {'type': 'number', 'description': 'Number of results to skip (for pagination)'}, 'limit': {'type': 'number', 'description': 'Maximum number of results to return'}, 'query': {'type': 'string', 'description': "Search query (e.g., 'Amazon', 'Netflix', 'AT&T' or '*' for all)"}, 'prefcc': {'type': 'number', 'description': 'Preferred country code parameter'}, 'country': {'type': 'string', 'description': "Country code (e.g., 'US', 'IT', 'GB')"}, 'category': {'type': 'string', 'description': "Filter by category (e.g., 'gaming', 'entertainment')"}, 'language': {'type': 'string', 'description': "Language code for results (e.g., 'en')"}, 'beta_flags': {'type': 'string', 'description': 'Beta feature flags'}, 'do_recommend': {'type': 'number', 'description': 'Enable recommendations'}}, 'additionalProperties': False}}, {'name': 'detail', 'description': 'Get detailed information about a product', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Unique identifier of the product'}}, 'additionalProperties': False}}, {'name': 'categories', 'description': "Get the full product type/categories map. It's suggested to use this tool to get the categories and then use the `search` tool to search for products in a specific category.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}] |
@emeryray2002/virustotal-mcp | VirusTotal MCP Server | Query the VirusTotal API to obtain comprehensive security analysis reports. Analyze URLs, files, IPs, and domains with automatic relationship data fetching for a complete security overview. Enhance your threat intelligence capabilities with advanced search and detailed relationship analysis tools. | 2025-03-30T13:16:24.526Z | 11 | https://smithery.ai/server/@emeryray2002/virustotal-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_file_report', 'description': "\n Name: get_file_report\n Description: Get a comprehensive file analysis report using its hash (MD5/SHA-1/SHA-256). Returns a concise summary of key threat details including detection stats, threat classification, and important indicators.\n Parameters:\n hash (required): The MD5, SHA-1, or SHA-256 hash of the file to analyze. Example: '8ab2cf...', 'e4d909c290d0...', etc.\n ", 'inputSchema': {'type': 'object', 'title': 'get_file_reportArguments', 'required': ['hash'], 'properties': {'hash': {'type': 'string', 'title': 'Hash'}}}}, {'name': 'get_url_report', 'description': "\n Name: get_url_report\n Description: Get a comprehensive URL analysis report including security scan results and key relationships like communicating files, contacted domains/IPs, downloaded files, redirects, and related threat actors. This tool automatically fetches summary information for these key relationships. For detailed, paginated relationship data, use the 'get_url_relationship' tool.\n Parameters:\n url (required): The URL to analyze (e.g., 'http://example.com/badsite', 'https://google.com'). The tool will automatically generate the required VirusTotal URL identifier.\n ", 'inputSchema': {'type': 'object', 'title': 'get_url_reportArguments', 'required': ['url'], 'properties': {'url': {'type': 'string', 'title': 'Url'}}}}, {'name': 'get_domain_report', 'description': "\n Name: get_domain_report\n Description: Get a comprehensive domain analysis report including DNS records, WHOIS data, and key relationships like historical SSL certificates, subdomains, resolutions, and related threat actors. This tool automatically fetches summary information for these key relationships. For detailed, paginated relationship data, use the 'get_domain_relationship' tool.\n Parameters:\n domain (required): The domain name to analyze (e.g., 'google.com', 'evil-domain.net').\n ", 'inputSchema': {'type': 'object', 'title': 'get_domain_reportArguments', 'required': ['domain'], 'properties': {'domain': {'type': 'string', 'title': 'Domain'}}}}, {'name': 'get_ip_report', 'description': "\n Name: get_ip_report\n Description: Get a comprehensive IP address analysis report including geolocation, reputation data, and key relationships like communicating/downloaded files, historical certificates/WHOIS, resolutions, and related URLs/threat actors. This tool automatically fetches summary information for these key relationships. For detailed, paginated relationship data, use the 'get_ip_relationship' tool.\n Parameters:\n ip (required): The IP address to analyze (e.g., '8.8.8.8', '192.168.1.1').\n ", 'inputSchema': {'type': 'object', 'title': 'get_ip_reportArguments', 'required': ['ip'], 'properties': {'ip': {'type': 'string', 'title': 'Ip'}}}}, {'name': 'get_file_behavior_summary', 'description': '\n Name: get_file_behavior_summary\n Description: Retrieves a summary of all behavior reports (sandbox execution details) for a specific file hash (MD5/SHA-1/SHA-256). This provides a consolidated view of dynamic analysis results from multiple sandboxes.\n Parameters:\n hash (required): The MD5, SHA-1, or SHA-256 hash of the file.\n ', 'inputSchema': {'type': 'object', 'title': 'get_file_behavior_summaryArguments', 'required': ['hash'], 'properties': {'hash': {'type': 'string', 'title': 'Hash'}}}}, {'name': 'advanced_corpus_search', 'description': '\n Name: advanced_corpus_search\n Description: Performs an advanced search across the VirusTotal dataset using VT Intelligence query syntax. This requires a premium VirusTotal API key with Intelligence access. Supports pagination.\n Parameters:\n query (required): The VT Intelligence search query string. Examples: \'p:mimikatz\', \'type:peexe size:100kb+ positives:5+\', \'entity:url url:"example.com"\'. See VT documentation for syntax.\n limit (optional, default: 20): Maximum number of results to return per page (max usually 300 for intelligence).\n cursor (optional): Continuation cursor for pagination, obtained from the \'meta.cursor\' field of a previous response.\n descriptors_only (optional): If true, retrieves only object descriptors (e.g., SHA256 hashes for files) instead of full objects, which can be faster.\n ', 'inputSchema': {'type': 'object', 'title': 'advanced_corpus_searchArguments', 'required': ['query'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 20}, 'query': {'type': 'string', 'title': 'Query'}, 'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'descriptors_only': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Descriptors Only', 'default': None}}}}, {'name': 'get_file_relationship', 'description': "\n Name: get_file_relationship\n Description: Query a specific relationship type for a file hash (MD5/SHA-1/SHA-256) with pagination support. Use this for in-depth exploration of connections.\n Parameters:\n hash (required): MD5, SHA-1 or SHA-256 hash of the file.\n relationship (required): Type of relationship to query. Choose from: analyses, behaviours, bundled_files, carbonblack_children, carbonblack_parents, ciphered_bundled_files, ciphered_parents, clues, collections, comments, compressed_parents, contacted_domains, contacted_ips, contacted_urls, dropped_files, email_attachments, email_parents, embedded_domains, embedded_ips, embedded_urls, execution_parents, graphs, itw_domains, itw_ips, itw_urls, memory_pattern_domains, memory_pattern_ips, memory_pattern_urls, overlay_children, overlay_parents, pcap_children, pcap_parents, pe_resource_children, pe_resource_parents, related_references, related_threat_actors, similar_files, submissions, screenshots, urls_for_embedded_js, votes.\n limit (optional, default: 10): Maximum number of related objects to retrieve per page (1-40).\n cursor (optional): Continuation cursor from previous page's 'meta.cursor' for pagination.\n ", 'inputSchema': {'type': 'object', 'title': 'get_file_relationshipArguments', 'required': ['hash', 'relationship'], 'properties': {'hash': {'type': 'string', 'title': 'Hash'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'relationship': {'type': 'string', 'title': 'Relationship'}}}}, {'name': 'get_url_relationship', 'description': "\n Name: get_url_relationship\n Description: Query a specific relationship type for a URL with pagination support. Use this for in-depth exploration of connections. The tool automatically generates the required VirusTotal URL identifier.\n Parameters:\n url (required): The URL to get relationships for.\n relationship (required): Type of relationship to query. Choose from: analyses, comments, communicating_files, contacted_domains, contacted_ips, downloaded_files, graphs, last_serving_ip_address, network_location, referrer_files, referrer_urls, redirecting_urls, redirects_to, related_comments, related_references, related_threat_actors, submissions.\n limit (optional, default: 10): Maximum number of related objects to retrieve per page (1-40).\n cursor (optional): Continuation cursor from previous page's 'meta.cursor' for pagination.\n ", 'inputSchema': {'type': 'object', 'title': 'get_url_relationshipArguments', 'required': ['url', 'relationship'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'relationship': {'type': 'string', 'title': 'Relationship'}}}}, {'name': 'get_domain_relationship', 'description': "\n Name: get_domain_relationship\n Description: Query a specific relationship type for a domain with pagination support. Use this for in-depth exploration of connections.\n Parameters:\n domain (required): The domain name to analyze.\n relationship (required): Type of relationship to query. Choose from: caa_records, cname_records, comments, communicating_files, downloaded_files, historical_ssl_certificates, historical_whois, immediate_parent, mx_records, ns_records, parent, referrer_files, related_comments, related_references, related_threat_actors, resolutions, soa_records, siblings, subdomains, urls, user_votes.\n limit (optional, default: 10): Maximum number of related objects to retrieve per page (1-40).\n cursor (optional): Continuation cursor from previous page's 'meta.cursor' for pagination.\n ", 'inputSchema': {'type': 'object', 'title': 'get_domain_relationshipArguments', 'required': ['domain', 'relationship'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'domain': {'type': 'string', 'title': 'Domain'}, 'relationship': {'type': 'string', 'title': 'Relationship'}}}}, {'name': 'get_ip_relationship', 'description': "\n Name: get_ip_relationship\n Description: Query a specific relationship type for an IP address with pagination support. Use this for in-depth exploration of connections.\n Parameters:\n ip (required): The IP address to analyze.\n relationship (required): Type of relationship to query. Choose from: comments, communicating_files, downloaded_files, graphs, historical_ssl_certificates, historical_whois, related_comments, related_references, related_threat_actors, referrer_files, resolutions, urls.\n limit (optional, default: 10): Maximum number of related objects to retrieve per page (1-40).\n cursor (optional): Continuation cursor from previous page's 'meta.cursor' for pagination.\n ", 'inputSchema': {'type': 'object', 'title': 'get_ip_relationshipArguments', 'required': ['ip', 'relationship'], 'properties': {'ip': {'type': 'string', 'title': 'Ip'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'relationship': {'type': 'string', 'title': 'Relationship'}}}}] |
@Vistara-Labs/hypercore-mcp | Hypercore Network MCP Server | Enable seamless integration with the Hypercore network by exposing its data and tools through a standardized protocol. Facilitate dynamic access and manipulation of Hypercore resources to enhance your LLM applications. Simplify interaction with decentralized data streams for improved context and capabilities. | 2025-05-04T11:37:23.588Z | 11 | https://smithery.ai/server/@Vistara-Labs/hypercore-mcp | true | null | {
"scanPassed": true
} | [{'name': 'list-containers', 'annotations': {}, 'description': 'fetches a list of already deployed containers', 'inputSchema': {'type': 'object'}}, {'name': 'spawn-container', 'description': 'spawns a new container on the hypercore network with the given configuration', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['imageRef', 'port'], 'properties': {'port': {'type': 'number', 'description': 'application port to expose'}, 'imageRef': {'type': 'string', 'description': 'public docker image tag, eg. docker.io/alpine:latest'}}, 'additionalProperties': False}}] |
@meicanhong/exa-mcp-server | Exa MCP Server | Enable AI assistants to perform real-time web searches using Exa's powerful search API. Get structured search results, cache recent searches, and handle rate limits gracefully for a seamless experience. Empower your AI with fresh content and optimized search capabilities. | 2025-04-07T11:00:26.681Z | 11 | https://smithery.ai/server/@meicanhong/exa-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'web_search', 'description': 'Search the web using Exa AI - performs real-time web searches and can scrape content from specific URLs. Supports configurable result counts and returns the content from the most relevant websites.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'Search query'}, 'numResults': {'type': 'number', 'description': 'Number of search results to return (default: 5)'}}, 'additionalProperties': False}}] |
@sjquant/llm-bridge-mcp | LLM Bridge | Interact seamlessly with multiple large language models through a unified interface. Switch between different LLM providers effortlessly and customize your interactions with adjustable parameters. Enhance your AI applications with powerful language model capabilities without the hassle of managing multiple integrations. | 2025-03-24T03:58:28.768Z | 11 | https://smithery.ai/server/@sjquant/llm-bridge-mcp | true | null | {
"scanPassed": true
} | [{'name': 'run_llm', 'description': 'Run a prompt through an LLM and return the response.', 'inputSchema': {'type': 'object', 'title': 'run_llmArguments', 'required': ['prompt'], 'properties': {'prompt': {'type': 'string', 'title': 'Prompt'}, 'max_tokens': {'type': 'integer', 'title': 'Max Tokens', 'default': 8192, 'description': 'Maximum number of tokens to generate'}, 'model_name': {'enum': ['anthropic:claude-3-7-sonnet-latest', 'anthropic:claude-3-5-haiku-latest', 'anthropic:claude-3-5-sonnet-latest', 'anthropic:claude-3-opus-latest', 'claude-3-7-sonnet-latest', 'claude-3-5-haiku-latest', 'bedrock:amazon.titan-tg1-large', 'bedrock:amazon.titan-text-lite-v1', 'bedrock:amazon.titan-text-express-v1', 'bedrock:us.amazon.nova-pro-v1:0', 'bedrock:us.amazon.nova-lite-v1:0', 'bedrock:us.amazon.nova-micro-v1:0', 'bedrock:anthropic.claude-3-5-sonnet-20241022-v2:0', 'bedrock:us.anthropic.claude-3-5-sonnet-20241022-v2:0', 'bedrock:anthropic.claude-3-5-haiku-20241022-v1:0', 'bedrock:us.anthropic.claude-3-5-haiku-20241022-v1:0', 'bedrock:anthropic.claude-instant-v1', 'bedrock:anthropic.claude-v2:1', 'bedrock:anthropic.claude-v2', 'bedrock:anthropic.claude-3-sonnet-20240229-v1:0', 'bedrock:us.anthropic.claude-3-sonnet-20240229-v1:0', 'bedrock:anthropic.claude-3-haiku-20240307-v1:0', 'bedrock:us.anthropic.claude-3-haiku-20240307-v1:0', 'bedrock:anthropic.claude-3-opus-20240229-v1:0', 'bedrock:us.anthropic.claude-3-opus-20240229-v1:0', 'bedrock:anthropic.claude-3-5-sonnet-20240620-v1:0', 'bedrock:us.anthropic.claude-3-5-sonnet-20240620-v1:0', 'bedrock:anthropic.claude-3-7-sonnet-20250219-v1:0', 'bedrock:us.anthropic.claude-3-7-sonnet-20250219-v1:0', 'bedrock:cohere.command-text-v14', 'bedrock:cohere.command-r-v1:0', 'bedrock:cohere.command-r-plus-v1:0', 'bedrock:cohere.command-light-text-v14', 'bedrock:meta.llama3-8b-instruct-v1:0', 'bedrock:meta.llama3-70b-instruct-v1:0', 'bedrock:meta.llama3-1-8b-instruct-v1:0', 'bedrock:us.meta.llama3-1-8b-instruct-v1:0', 'bedrock:meta.llama3-1-70b-instruct-v1:0', 'bedrock:us.meta.llama3-1-70b-instruct-v1:0', 'bedrock:meta.llama3-1-405b-instruct-v1:0', 'bedrock:us.meta.llama3-2-11b-instruct-v1:0', 'bedrock:us.meta.llama3-2-90b-instruct-v1:0', 'bedrock:us.meta.llama3-2-1b-instruct-v1:0', 'bedrock:us.meta.llama3-2-3b-instruct-v1:0', 'bedrock:us.meta.llama3-3-70b-instruct-v1:0', 'bedrock:mistral.mistral-7b-instruct-v0:2', 'bedrock:mistral.mixtral-8x7b-instruct-v0:1', 'bedrock:mistral.mistral-large-2402-v1:0', 'bedrock:mistral.mistral-large-2407-v1:0', 'claude-3-5-sonnet-latest', 'claude-3-opus-latest', 'cohere:c4ai-aya-expanse-32b', 'cohere:c4ai-aya-expanse-8b', 'cohere:command', 'cohere:command-light', 'cohere:command-light-nightly', 'cohere:command-nightly', 'cohere:command-r', 'cohere:command-r-03-2024', 'cohere:command-r-08-2024', 'cohere:command-r-plus', 'cohere:command-r-plus-04-2024', 'cohere:command-r-plus-08-2024', 'cohere:command-r7b-12-2024', 'deepseek:deepseek-chat', 'deepseek:deepseek-reasoner', 'google-gla:gemini-1.0-pro', 'google-gla:gemini-1.5-flash', 'google-gla:gemini-1.5-flash-8b', 'google-gla:gemini-1.5-pro', 'google-gla:gemini-2.0-flash-exp', 'google-gla:gemini-2.0-flash-thinking-exp-01-21', 'google-gla:gemini-exp-1206', 'google-gla:gemini-2.0-flash', 'google-gla:gemini-2.0-flash-lite-preview-02-05', 'google-gla:gemini-2.0-pro-exp-02-05', 'google-vertex:gemini-1.0-pro', 'google-vertex:gemini-1.5-flash', 'google-vertex:gemini-1.5-flash-8b', 'google-vertex:gemini-1.5-pro', 'google-vertex:gemini-2.0-flash-exp', 'google-vertex:gemini-2.0-flash-thinking-exp-01-21', 'google-vertex:gemini-exp-1206', 'google-vertex:gemini-2.0-flash', 'google-vertex:gemini-2.0-flash-lite-preview-02-05', 'google-vertex:gemini-2.0-pro-exp-02-05', 'gpt-3.5-turbo', 'gpt-3.5-turbo-0125', 'gpt-3.5-turbo-0301', 'gpt-3.5-turbo-0613', 'gpt-3.5-turbo-1106', 'gpt-3.5-turbo-16k', 'gpt-3.5-turbo-16k-0613', 'gpt-4', 'gpt-4-0125-preview', 'gpt-4-0314', 'gpt-4-0613', 'gpt-4-1106-preview', 'gpt-4-32k', 'gpt-4-32k-0314', 'gpt-4-32k-0613', 'gpt-4-turbo', 'gpt-4-turbo-2024-04-09', 'gpt-4-turbo-preview', 'gpt-4-vision-preview', 'gpt-4.5-preview', 'gpt-4.5-preview-2025-02-27', 'gpt-4o', 'gpt-4o-2024-05-13', 'gpt-4o-2024-08-06', 'gpt-4o-2024-11-20', 'gpt-4o-audio-preview', 'gpt-4o-audio-preview-2024-10-01', 'gpt-4o-audio-preview-2024-12-17', 'gpt-4o-mini', 'gpt-4o-mini-2024-07-18', 'gpt-4o-mini-audio-preview', 'gpt-4o-mini-audio-preview-2024-12-17', 'groq:gemma2-9b-it', 'groq:llama-3.1-8b-instant', 'groq:llama-3.2-11b-vision-preview', 'groq:llama-3.2-1b-preview', 'groq:llama-3.2-3b-preview', 'groq:llama-3.2-90b-vision-preview', 'groq:llama-3.3-70b-specdec', 'groq:llama-3.3-70b-versatile', 'groq:llama3-70b-8192', 'groq:llama3-8b-8192', 'groq:mixtral-8x7b-32768', 'mistral:codestral-latest', 'mistral:mistral-large-latest', 'mistral:mistral-moderation-latest', 'mistral:mistral-small-latest', 'o1', 'o1-2024-12-17', 'o1-mini', 'o1-mini-2024-09-12', 'o1-preview', 'o1-preview-2024-09-12', 'o3-mini', 'o3-mini-2025-01-31', 'openai:chatgpt-4o-latest', 'openai:gpt-3.5-turbo', 'openai:gpt-3.5-turbo-0125', 'openai:gpt-3.5-turbo-0301', 'openai:gpt-3.5-turbo-0613', 'openai:gpt-3.5-turbo-1106', 'openai:gpt-3.5-turbo-16k', 'openai:gpt-3.5-turbo-16k-0613', 'openai:gpt-4', 'openai:gpt-4-0125-preview', 'openai:gpt-4-0314', 'openai:gpt-4-0613', 'openai:gpt-4-1106-preview', 'openai:gpt-4-32k', 'openai:gpt-4-32k-0314', 'openai:gpt-4-32k-0613', 'openai:gpt-4-turbo', 'openai:gpt-4-turbo-2024-04-09', 'openai:gpt-4-turbo-preview', 'openai:gpt-4-vision-preview', 'openai:gpt-4.5-preview', 'openai:gpt-4.5-preview-2025-02-27', 'openai:gpt-4o', 'openai:gpt-4o-2024-05-13', 'openai:gpt-4o-2024-08-06', 'openai:gpt-4o-2024-11-20', 'openai:gpt-4o-audio-preview', 'openai:gpt-4o-audio-preview-2024-10-01', 'openai:gpt-4o-audio-preview-2024-12-17', 'openai:gpt-4o-mini', 'openai:gpt-4o-mini-2024-07-18', 'openai:gpt-4o-mini-audio-preview', 'openai:gpt-4o-mini-audio-preview-2024-12-17', 'openai:o1', 'openai:o1-2024-12-17', 'openai:o1-mini', 'openai:o1-mini-2024-09-12', 'openai:o1-preview', 'openai:o1-preview-2024-09-12', 'openai:o3-mini', 'openai:o3-mini-2025-01-31', 'test'], 'type': 'string', 'title': 'Model Name', 'default': 'openai:gpt-4o-mini', 'description': 'Specific model name. Available models: anthropic:claude-3-7-sonnet-latest, anthropic:claude-3-5-haiku-latest, anthropic:claude-3-5-sonnet-latest, anthropic:claude-3-opus-latest, claude-3-7-sonnet-latest, claude-3-5-haiku-latest, bedrock:amazon.titan-tg1-large, bedrock:amazon.titan-text-lite-v1, bedrock:amazon.titan-text-express-v1, bedrock:us.amazon.nova-pro-v1:0, bedrock:us.amazon.nova-lite-v1:0, bedrock:us.amazon.nova-micro-v1:0, bedrock:anthropic.claude-3-5-sonnet-20241022-v2:0, bedrock:us.anthropic.claude-3-5-sonnet-20241022-v2:0, bedrock:anthropic.claude-3-5-haiku-20241022-v1:0, bedrock:us.anthropic.claude-3-5-haiku-20241022-v1:0, bedrock:anthropic.claude-instant-v1, bedrock:anthropic.claude-v2:1, bedrock:anthropic.claude-v2, bedrock:anthropic.claude-3-sonnet-20240229-v1:0, bedrock:us.anthropic.claude-3-sonnet-20240229-v1:0, bedrock:anthropic.claude-3-haiku-20240307-v1:0, bedrock:us.anthropic.claude-3-haiku-20240307-v1:0, bedrock:anthropic.claude-3-opus-20240229-v1:0, bedrock:us.anthropic.claude-3-opus-20240229-v1:0, bedrock:anthropic.claude-3-5-sonnet-20240620-v1:0, bedrock:us.anthropic.claude-3-5-sonnet-20240620-v1:0, bedrock:anthropic.claude-3-7-sonnet-20250219-v1:0, bedrock:us.anthropic.claude-3-7-sonnet-20250219-v1:0, bedrock:cohere.command-text-v14, bedrock:cohere.command-r-v1:0, bedrock:cohere.command-r-plus-v1:0, bedrock:cohere.command-light-text-v14, bedrock:meta.llama3-8b-instruct-v1:0, bedrock:meta.llama3-70b-instruct-v1:0, bedrock:meta.llama3-1-8b-instruct-v1:0, bedrock:us.meta.llama3-1-8b-instruct-v1:0, bedrock:meta.llama3-1-70b-instruct-v1:0, bedrock:us.meta.llama3-1-70b-instruct-v1:0, bedrock:meta.llama3-1-405b-instruct-v1:0, bedrock:us.meta.llama3-2-11b-instruct-v1:0, bedrock:us.meta.llama3-2-90b-instruct-v1:0, bedrock:us.meta.llama3-2-1b-instruct-v1:0, bedrock:us.meta.llama3-2-3b-instruct-v1:0, bedrock:us.meta.llama3-3-70b-instruct-v1:0, bedrock:mistral.mistral-7b-instruct-v0:2, bedrock:mistral.mixtral-8x7b-instruct-v0:1, bedrock:mistral.mistral-large-2402-v1:0, bedrock:mistral.mistral-large-2407-v1:0, claude-3-5-sonnet-latest, claude-3-opus-latest, cohere:c4ai-aya-expanse-32b, cohere:c4ai-aya-expanse-8b, cohere:command, cohere:command-light, cohere:command-light-nightly, cohere:command-nightly, cohere:command-r, cohere:command-r-03-2024, cohere:command-r-08-2024, cohere:command-r-plus, cohere:command-r-plus-04-2024, cohere:command-r-plus-08-2024, cohere:command-r7b-12-2024, deepseek:deepseek-chat, deepseek:deepseek-reasoner, google-gla:gemini-1.0-pro, google-gla:gemini-1.5-flash, google-gla:gemini-1.5-flash-8b, google-gla:gemini-1.5-pro, google-gla:gemini-2.0-flash-exp, google-gla:gemini-2.0-flash-thinking-exp-01-21, google-gla:gemini-exp-1206, google-gla:gemini-2.0-flash, google-gla:gemini-2.0-flash-lite-preview-02-05, google-gla:gemini-2.0-pro-exp-02-05, google-vertex:gemini-1.0-pro, google-vertex:gemini-1.5-flash, google-vertex:gemini-1.5-flash-8b, google-vertex:gemini-1.5-pro, google-vertex:gemini-2.0-flash-exp, google-vertex:gemini-2.0-flash-thinking-exp-01-21, google-vertex:gemini-exp-1206, google-vertex:gemini-2.0-flash, google-vertex:gemini-2.0-flash-lite-preview-02-05, google-vertex:gemini-2.0-pro-exp-02-05, gpt-3.5-turbo, gpt-3.5-turbo-0125, gpt-3.5-turbo-0301, gpt-3.5-turbo-0613, gpt-3.5-turbo-1106, gpt-3.5-turbo-16k, gpt-3.5-turbo-16k-0613, gpt-4, gpt-4-0125-preview, gpt-4-0314, gpt-4-0613, gpt-4-1106-preview, gpt-4-32k, gpt-4-32k-0314, gpt-4-32k-0613, gpt-4-turbo, gpt-4-turbo-2024-04-09, gpt-4-turbo-preview, gpt-4-vision-preview, gpt-4.5-preview, gpt-4.5-preview-2025-02-27, gpt-4o, gpt-4o-2024-05-13, gpt-4o-2024-08-06, gpt-4o-2024-11-20, gpt-4o-audio-preview, gpt-4o-audio-preview-2024-10-01, gpt-4o-audio-preview-2024-12-17, gpt-4o-mini, gpt-4o-mini-2024-07-18, gpt-4o-mini-audio-preview, gpt-4o-mini-audio-preview-2024-12-17, groq:gemma2-9b-it, groq:llama-3.1-8b-instant, groq:llama-3.2-11b-vision-preview, groq:llama-3.2-1b-preview, groq:llama-3.2-3b-preview, groq:llama-3.2-90b-vision-preview, groq:llama-3.3-70b-specdec, groq:llama-3.3-70b-versatile, groq:llama3-70b-8192, groq:llama3-8b-8192, groq:mixtral-8x7b-32768, mistral:codestral-latest, mistral:mistral-large-latest, mistral:mistral-moderation-latest, mistral:mistral-small-latest, o1, o1-2024-12-17, o1-mini, o1-mini-2024-09-12, o1-preview, o1-preview-2024-09-12, o3-mini, o3-mini-2025-01-31, openai:chatgpt-4o-latest, openai:gpt-3.5-turbo, openai:gpt-3.5-turbo-0125, openai:gpt-3.5-turbo-0301, openai:gpt-3.5-turbo-0613, openai:gpt-3.5-turbo-1106, openai:gpt-3.5-turbo-16k, openai:gpt-3.5-turbo-16k-0613, openai:gpt-4, openai:gpt-4-0125-preview, openai:gpt-4-0314, openai:gpt-4-0613, openai:gpt-4-1106-preview, openai:gpt-4-32k, openai:gpt-4-32k-0314, openai:gpt-4-32k-0613, openai:gpt-4-turbo, openai:gpt-4-turbo-2024-04-09, openai:gpt-4-turbo-preview, openai:gpt-4-vision-preview, openai:gpt-4.5-preview, openai:gpt-4.5-preview-2025-02-27, openai:gpt-4o, openai:gpt-4o-2024-05-13, openai:gpt-4o-2024-08-06, openai:gpt-4o-2024-11-20, openai:gpt-4o-audio-preview, openai:gpt-4o-audio-preview-2024-10-01, openai:gpt-4o-audio-preview-2024-12-17, openai:gpt-4o-mini, openai:gpt-4o-mini-2024-07-18, openai:gpt-4o-mini-audio-preview, openai:gpt-4o-mini-audio-preview-2024-12-17, openai:o1, openai:o1-2024-12-17, openai:o1-mini, openai:o1-mini-2024-09-12, openai:o1-preview, openai:o1-preview-2024-09-12, openai:o3-mini, openai:o3-mini-2025-01-31, test'}, 'temperature': {'type': 'number', 'title': 'Temperature', 'default': 0.7, 'description': 'Controls randomness (0.0 to 1.0)'}, 'system_prompt': {'type': 'string', 'title': 'System Prompt', 'default': '', 'description': "Optional system prompt to guide the model's behavior"}}}}] |
@ahnopologetic/canvas-lms-mcp | Canvas LMS Server | Provide seamless access to education data from your Canvas LMS instance through a minimal MCP server. List and retrieve courses, assignments, quizzes, files, and planner items to integrate Canvas data into AI systems or development environments. Enhance your productivity by querying and managing your educational content programmatically. | 2025-04-25T04:00:56.413Z | 11 | https://smithery.ai/server/@ahnopologetic/canvas-lms-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_assignment', 'description': '\nGet a single assignment by ID.\n\nArgs:\n course_id: Course ID\n assignment_id: Assignment ID\n\nReturns:\n Assignment object\n', 'inputSchema': {'type': 'object', 'title': 'get_assignmentArguments', 'required': ['course_id', 'assignment_id'], 'properties': {'course_id': {'type': 'integer', 'title': 'Course Id'}, 'assignment_id': {'type': 'integer', 'title': 'Assignment Id'}}}}, {'name': 'get_course_modules', 'description': '\nGet modules for a course.\n\nArgs:\n course_id: Course ID\n include: Optional list of additional data to include\n\nReturns:\n List of Module objects\n', 'inputSchema': {'type': 'object', 'title': 'get_course_modulesArguments', 'required': ['course_id'], 'properties': {'include': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Include', 'default': None}, 'course_id': {'type': 'integer', 'title': 'Course Id'}}}}, {'name': 'get_course_syllabus', 'description': "\nGet a course's syllabus.\n\nArgs:\n course_id: Course ID\n\nReturns:\n Course syllabus as string\n", 'inputSchema': {'type': 'object', 'title': 'get_course_syllabusArguments', 'required': ['course_id'], 'properties': {'course_id': {'type': 'integer', 'title': 'Course Id'}}}}, {'name': 'get_course', 'description': '\nGet a single course by ID.\n\nArgs:\n course_id: Course ID\n include: Optional list of additional data to include\n\nReturns:\n Course object\n', 'inputSchema': {'type': 'object', 'title': 'get_courseArguments', 'required': ['course_id'], 'properties': {'include': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Include', 'default': None}, 'course_id': {'type': 'integer', 'title': 'Course Id'}}}}, {'name': 'get_quiz', 'description': '\nGet a single quiz by ID.\n\nArgs:\n course_id: Course ID\n quiz_id: Quiz ID\n\nReturns:\n Quiz object\n', 'inputSchema': {'type': 'object', 'title': 'get_quizArguments', 'required': ['course_id', 'quiz_id'], 'properties': {'quiz_id': {'type': 'integer', 'title': 'Quiz Id'}, 'course_id': {'type': 'integer', 'title': 'Course Id'}}}}, {'name': 'list_assignments', 'description': '\nList assignments for a course.\n\nArgs:\n course_id: Course ID\n bucket: Bucket to filter assignments by (past, overdue, undated, ungraded, unsubmitted, upcoming, future)\n order_by: Field to order assignments by (due_at, position, name)\n page: Page number (1-indexed)\n items_per_page: Number of items per page\n\nReturns:\n PaginatedResponse containing assignments\n', 'inputSchema': {'type': 'object', 'title': 'list_assignmentsArguments', 'required': ['course_id', 'bucket', 'order_by'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1}, 'bucket': {'enum': ['past', 'overdue', 'undated', 'ungraded', 'unsubmitted', 'upcoming', 'future'], 'type': 'string', 'title': 'Bucket'}, 'order_by': {'enum': ['due_at', 'position', 'name'], 'type': 'string', 'title': 'Order By'}, 'course_id': {'type': 'integer', 'title': 'Course Id'}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10}}}}, {'name': 'list_courses', 'description': '\nList courses that the user is actively enrolled in.\n\nArgs:\n page: Page number (1-indexed)\n items_per_page: Number of items per page\n\nReturns:\n PaginatedResponse containing courses\n', 'inputSchema': {'type': 'object', 'title': 'list_coursesArguments', 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10}}}}, {'name': 'list_files', 'description': '\nList files for a course or folder.\n\nArgs:\n course_id: Optional Course ID\n folder_id: Optional Folder ID\n include: Optional list of additional data to include\n page: Page number (1-indexed)\n items_per_page: Number of items per page\n\nReturns:\n PaginatedResponse[File]\n', 'inputSchema': {'type': 'object', 'title': 'list_filesArguments', 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1}, 'include': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Include', 'default': None}, 'course_id': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Course Id', 'default': None}, 'folder_id': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Folder Id', 'default': None}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10}}}}, {'name': 'list_planner_items', 'description': '\nList planner items for the authenticated user.\n\nArgs:\n start_date: start date in ISO 8601 format\n end_date: end date in ISO 8601 format\n context_codes: list of context codes (e.g., ["course_123"])\n page: Page number (1-indexed)\n items_per_page: Number of items per page\n\nReturns:\n PaginatedResponse[PlannerItem]\n', 'inputSchema': {'type': 'object', 'title': 'list_planner_itemsArguments', 'required': ['start_date', 'end_date'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1}, 'end_date': {'type': 'string', 'title': 'End Date'}, 'start_date': {'type': 'string', 'title': 'Start Date'}, 'context_codes': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Context Codes', 'default': None}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10}}}}, {'name': 'list_quizzes', 'description': '\nList quizzes for a course.\n\nArgs:\n course_id: Course ID\n include: Optional list of additional data to include\n page: Page number (1-indexed)\n items_per_page: Number of items per page\n\nReturns:\n PaginatedResponse containing quizzes\n', 'inputSchema': {'type': 'object', 'title': 'list_quizzesArguments', 'required': ['course_id'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1}, 'include': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Include', 'default': None}, 'course_id': {'type': 'integer', 'title': 'Course Id'}, 'items_per_page': {'type': 'integer', 'title': 'Items Per Page', 'default': 10}}}}] |
@keygray/reference-servers | Model Context Protocol Reference Servers | Provide a collection of reference implementations demonstrating how to extend Large Language Models with secure, controlled access to tools and data sources. Enable easy integration of various capabilities such as file operations, web search, database access, and more through standardized MCP servers. Facilitate rapid development and testing of MCP features using TypeScript and Python SDKs. | 2025-04-15T09:59:42.341Z | 11 | https://smithery.ai/server/@keygray/reference-servers | true | null | {
"scanPassed": true
} | [{'name': 'echo', 'description': 'Echoes back the input', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['message'], 'properties': {'message': {'type': 'string', 'description': 'Message to echo'}}, 'additionalProperties': False}}, {'name': 'add', 'description': 'Adds two numbers', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['a', 'b'], 'properties': {'a': {'type': 'number', 'description': 'First number'}, 'b': {'type': 'number', 'description': 'Second number'}}, 'additionalProperties': False}}, {'name': 'printEnv', 'description': 'Prints all environment variables, helpful for debugging MCP server configuration', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'longRunningOperation', 'description': 'Demonstrates a long running operation with progress updates', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'steps': {'type': 'number', 'default': 5, 'description': 'Number of steps in the operation'}, 'duration': {'type': 'number', 'default': 10, 'description': 'Duration of the operation in seconds'}}, 'additionalProperties': False}}, {'name': 'sampleLLM', 'description': "Samples from an LLM using MCP's sampling feature", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['prompt'], 'properties': {'prompt': {'type': 'string', 'description': 'The prompt to send to the LLM'}, 'maxTokens': {'type': 'number', 'default': 100, 'description': 'Maximum number of tokens to generate'}}, 'additionalProperties': False}}, {'name': 'getTinyImage', 'description': 'Returns the MCP_TINY_IMAGE', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}] |
@ykhli/mcp-send-emails | Email sending server | Send emails directly from your LLM applications using Resend's API. Compose and dispatch emails seamlessly without manual copying and pasting. | 2025-02-25T20:20:24.366Z | 11 | https://smithery.ai/server/@ykhli/mcp-send-emails | true | null | {
"scanPassed": true
} | [{'name': 'send-email', 'description': 'Send an email using Resend', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['to', 'subject', 'content'], 'properties': {'to': {'type': 'string', 'format': 'email', 'description': 'Recipient email address'}, 'content': {'type': 'string', 'description': 'Plain text email content'}, 'subject': {'type': 'string', 'description': 'Email subject line'}}, 'additionalProperties': False}}] |
@jamiew/spotify-mcp | Spotify | Connect to Spotify to control playback and manage your music library. This fork includes playlist management support | 2025-01-27T21:13:52.433Z | 11 | https://smithery.ai/server/@jamiew/spotify-mcp | true | null | {
"scanPassed": true
} | [{'name': 'SpotifyPlayback', 'description': "Manages the current playback with the following actions:\n - get: Get information about user's current track.\n - start: Starts of resumes playback.\n - pause: Pauses current playback.\n - skip: Skips current track.\n ", 'inputSchema': {'type': 'object', 'title': 'Playback', 'required': ['action'], 'properties': {'action': {'type': 'string', 'title': 'Action', 'description': "Action to perform: 'get', 'start', 'pause' or 'skip'."}, 'track_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Track Id', 'default': None, 'description': "Specifies track to play for 'start' action. If omitted, resumes current playback."}, 'num_skips': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Num Skips', 'default': 1, 'description': 'Number of tracks to skip for `skip` action.'}}, 'description': "Manages the current playback with the following actions:\n- get: Get information about user's current track.\n- start: Starts of resumes playback.\n- pause: Pauses current playback.\n- skip: Skips current track."}}, {'name': 'SpotifySearch', 'description': 'Search for tracks, albums, artists, or playlists on Spotify.', 'inputSchema': {'type': 'object', 'title': 'Search', 'required': ['query'], 'properties': {'limit': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Limit', 'default': 10, 'description': 'Maximum number of items to return'}, 'qtype': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Qtype', 'default': 'track', 'description': 'Type of items to search for (track, album, artist, playlist, or comma-separated combination)'}, 'query': {'type': 'string', 'title': 'Query', 'description': 'query term'}}, 'description': 'Search for tracks, albums, artists, or playlists on Spotify.'}}, {'name': 'SpotifyQueue', 'description': 'Manage the playback queue - get the queue or add tracks.', 'inputSchema': {'type': 'object', 'title': 'Queue', 'required': ['action'], 'properties': {'action': {'type': 'string', 'title': 'Action', 'description': "Action to perform: 'add' or 'get'."}, 'track_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Track Id', 'default': None, 'description': 'Track ID to add to queue (required for add action)'}}, 'description': 'Manage the playback queue - get the queue or add tracks.'}}, {'name': 'SpotifyGetInfo', 'description': 'Get detailed information about a Spotify item (track, album, artist, or playlist).', 'inputSchema': {'type': 'object', 'title': 'GetInfo', 'required': ['item_id'], 'properties': {'qtype': {'type': 'string', 'title': 'Qtype', 'default': 'track', 'description': "Type of item: 'track', 'album', 'artist', or 'playlist'. If 'playlist' or 'album', returns its tracks. If 'artist',returns albums and top tracks."}, 'item_id': {'type': 'string', 'title': 'Item Id', 'description': 'ID of the item to get information about'}}, 'description': 'Get detailed information about a Spotify item (track, album, artist, or playlist).'}}, {'name': 'SpotifyPlaylistManage', 'description': 'Manage playlists - create, update details, or get details of playlists.', 'inputSchema': {'type': 'object', 'title': 'PlaylistManage', 'required': ['action'], 'properties': {'name': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Name', 'default': None, 'description': 'Playlist name (required for create action, optional for update_details)'}, 'action': {'type': 'string', 'title': 'Action', 'description': "Action to perform: 'create', 'update_details', 'get'"}, 'public': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Public', 'default': None, 'description': 'Whether the playlist should be public (optional)'}, 'description': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Description', 'default': None, 'description': 'Playlist description (optional)'}, 'playlist_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Playlist Id', 'default': None, 'description': 'Playlist ID (required for update_details and get actions)'}}, 'description': 'Manage playlists - create, update details, or get details of playlists.'}}, {'name': 'SpotifyPlaylistItems', 'description': 'Manage playlist items - add, remove, or update items in a playlist.', 'inputSchema': {'type': 'object', 'title': 'PlaylistItems', 'required': ['action', 'playlist_id', 'uris'], 'properties': {'uris': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Uris', 'description': 'List of Spotify URIs for tracks to add/remove/update'}, 'action': {'type': 'string', 'title': 'Action', 'description': "Action to perform: 'add', 'remove', 'update'"}, 'position': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Position', 'default': None, 'description': 'Position to insert tracks (for add action)'}, 'playlist_id': {'type': 'string', 'title': 'Playlist Id', 'description': 'Playlist ID'}, 'range_start': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Range Start', 'default': None, 'description': 'Start index for reordering (for update action)'}, 'snapshot_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Snapshot Id', 'default': None, 'description': "Playlist's snapshot ID (optional)"}, 'range_length': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Range Length', 'default': None, 'description': 'Number of items to move (for update action)'}, 'insert_before': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Insert Before', 'default': None, 'description': 'Position to insert before (for update action)'}}, 'description': 'Manage playlist items - add, remove, or update items in a playlist.'}}, {'name': 'SpotifyUserPlaylists', 'description': "Get a user's playlists.", 'inputSchema': {'type': 'object', 'title': 'UserPlaylists', 'properties': {'limit': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Limit', 'default': 20, 'description': 'Maximum number of playlists to return'}, 'offset': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Offset', 'default': 0, 'description': 'Offset for pagination'}, 'user_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'User Id', 'default': None, 'description': "User ID (optional, if omitted returns current user's playlists)"}}, 'description': "Get a user's playlists."}}, {'name': 'SpotifyPlaylistCover', 'description': 'Manage playlist cover image - get or upload custom cover.', 'inputSchema': {'type': 'object', 'title': 'PlaylistCover', 'required': ['action', 'playlist_id'], 'properties': {'action': {'type': 'string', 'title': 'Action', 'description': "Action to perform: 'get' or 'upload'"}, 'image_data': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Image Data', 'default': None, 'description': 'Base64-encoded JPEG image data (required for upload action)'}, 'playlist_id': {'type': 'string', 'title': 'Playlist Id', 'description': 'Playlist ID'}}, 'description': 'Manage playlist cover image - get or upload custom cover.'}}] |
@TommyBez/dbt-semantic-layer-mcp | DBT Semantic Layer Server | Query the DBT Semantic Layer API seamlessly. Enhance your data querying capabilities with a robust MCP server. | 2025-02-28T16:21:46.480Z | 11 | https://smithery.ai/server/@TommyBez/dbt-semantic-layer-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_documentation', 'description': 'Get a comprehensive user guide on how to use the dbt Semantic Layer MCP Server tools. Use this tool to understand the available tools, their parameters, and see workflow examples.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'fetch_metrics', 'description': 'Fetches metrics from the semantic layer. Use this to get a list of metrics available in the semantic layer with their description and dimensions. Invoke this tool prior to creating a query to get a list of metrics to use in the query.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'create_query', 'description': 'Creates a query to the semantic layer. Use this tool to create a query to the semantic layer. Returns the query id which can be used to fetch the results of the query.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['metrics'], 'properties': {'limit': {'type': 'number'}, 'where': {'type': 'array', 'items': {'type': 'object', 'required': ['sql'], 'properties': {'sql': {'type': 'string'}}, 'additionalProperties': False}}, 'groupBy': {'type': 'array', 'items': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string'}}, 'additionalProperties': False}}, 'metrics': {'type': 'array', 'items': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string'}}, 'additionalProperties': False}}, 'orderBy': {'type': 'array', 'items': {'type': 'object', 'required': ['descending', 'groupBy', 'metric'], 'properties': {'metric': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string'}}, 'additionalProperties': False}, 'groupBy': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string'}}, 'additionalProperties': False}, 'descending': {'type': 'boolean'}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, {'name': 'fetch_query_result', 'description': 'Fetches the results of a query from the semantic layer. You have to poll this tool until the query status is SUCCESSFUL.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['queryId'], 'properties': {'queryId': {'type': 'string'}}, 'additionalProperties': False}}] |
@antonioevans/runpod-mcp-ts | RunPod Server Manager | Manage your RunPod resources seamlessly through an MCP-compatible client. Create, list, update, and delete pods, serverless endpoints, templates, network volumes, and container registry authentications with ease. Streamline your RunPod operations directly from your preferred LLM interface. | 2025-04-30T14:50:44.111Z | 11 | https://smithery.ai/server/@antonioevans/runpod-mcp-ts | true | null | {
"scanPassed": true
} | [{'name': 'list-pods', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'name': {'type': 'string', 'description': 'Filter to Pods with the provided name'}, 'gpuTypeId': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter to Pods with any of the listed GPU types'}, 'computeType': {'enum': ['GPU', 'CPU'], 'type': 'string', 'description': 'Filter to only GPU or only CPU Pods'}, 'dataCenterId': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter to Pods in any of the provided data centers'}, 'includeMachine': {'type': 'boolean', 'description': 'Include information about the machine'}, 'includeNetworkVolume': {'type': 'boolean', 'description': 'Include information about attached network volumes'}}, 'additionalProperties': False}}, {'name': 'get-pod', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['podId'], 'properties': {'podId': {'type': 'string', 'description': 'ID of the pod to retrieve'}, 'includeMachine': {'type': 'boolean', 'description': 'Include information about the machine'}, 'includeNetworkVolume': {'type': 'boolean', 'description': 'Include information about attached network volumes'}}, 'additionalProperties': False}}, {'name': 'create-pod', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['imageName'], 'properties': {'env': {'type': 'object', 'description': 'Environment variables', 'additionalProperties': {'type': 'string'}}, 'name': {'type': 'string', 'description': 'Name for the pod'}, 'ports': {'type': 'array', 'items': {'type': 'string'}, 'description': "Ports to expose (e.g., '8888/http', '22/tcp')"}, 'gpuCount': {'type': 'number', 'description': 'Number of GPUs'}, 'cloudType': {'enum': ['SECURE', 'COMMUNITY'], 'type': 'string', 'description': 'SECURE or COMMUNITY cloud'}, 'imageName': {'type': 'string', 'description': 'Docker image to use'}, 'gpuTypeIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of acceptable GPU types'}, 'volumeInGb': {'type': 'number', 'description': 'Volume size in GB'}, 'dataCenterIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of data centers'}, 'volumeMountPath': {'type': 'string', 'description': 'Path to mount the volume'}, 'containerDiskInGb': {'type': 'number', 'description': 'Container disk size in GB'}}, 'additionalProperties': False}}, {'name': 'update-pod', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['podId'], 'properties': {'env': {'type': 'object', 'description': 'New environment variables', 'additionalProperties': {'type': 'string'}}, 'name': {'type': 'string', 'description': 'New name for the pod'}, 'podId': {'type': 'string', 'description': 'ID of the pod to update'}, 'ports': {'type': 'array', 'items': {'type': 'string'}, 'description': 'New ports to expose'}, 'imageName': {'type': 'string', 'description': 'New Docker image'}, 'volumeInGb': {'type': 'number', 'description': 'New volume size in GB'}, 'volumeMountPath': {'type': 'string', 'description': 'New path to mount the volume'}, 'containerDiskInGb': {'type': 'number', 'description': 'New container disk size in GB'}}, 'additionalProperties': False}}, {'name': 'start-pod', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['podId'], 'properties': {'podId': {'type': 'string', 'description': 'ID of the pod to start'}}, 'additionalProperties': False}}, {'name': 'stop-pod', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['podId'], 'properties': {'podId': {'type': 'string', 'description': 'ID of the pod to stop'}}, 'additionalProperties': False}}, {'name': 'delete-pod', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['podId'], 'properties': {'podId': {'type': 'string', 'description': 'ID of the pod to delete'}}, 'additionalProperties': False}}, {'name': 'list-endpoints', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'includeWorkers': {'type': 'boolean', 'description': 'Include information about workers'}, 'includeTemplate': {'type': 'boolean', 'description': 'Include template information'}}, 'additionalProperties': False}}, {'name': 'get-endpoint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['endpointId'], 'properties': {'endpointId': {'type': 'string', 'description': 'ID of the endpoint to retrieve'}, 'includeWorkers': {'type': 'boolean', 'description': 'Include information about workers'}, 'includeTemplate': {'type': 'boolean', 'description': 'Include template information'}}, 'additionalProperties': False}}, {'name': 'create-endpoint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['templateId'], 'properties': {'name': {'type': 'string', 'description': 'Name for the endpoint'}, 'gpuCount': {'type': 'number', 'description': 'Number of GPUs per worker'}, 'gpuTypeIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of acceptable GPU types'}, 'templateId': {'type': 'string', 'description': 'Template ID to use'}, 'workersMax': {'type': 'number', 'description': 'Maximum number of workers'}, 'workersMin': {'type': 'number', 'description': 'Minimum number of workers'}, 'computeType': {'enum': ['GPU', 'CPU'], 'type': 'string', 'description': 'GPU or CPU endpoint'}, 'dataCenterIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of data centers'}}, 'additionalProperties': False}}, {'name': 'update-endpoint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['endpointId'], 'properties': {'name': {'type': 'string', 'description': 'New name for the endpoint'}, 'endpointId': {'type': 'string', 'description': 'ID of the endpoint to update'}, 'scalerType': {'enum': ['QUEUE_DELAY', 'REQUEST_COUNT'], 'type': 'string', 'description': 'Scaler type'}, 'workersMax': {'type': 'number', 'description': 'New maximum number of workers'}, 'workersMin': {'type': 'number', 'description': 'New minimum number of workers'}, 'idleTimeout': {'type': 'number', 'description': 'New idle timeout in seconds'}, 'scalerValue': {'type': 'number', 'description': 'Scaler value'}}, 'additionalProperties': False}}, {'name': 'delete-endpoint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['endpointId'], 'properties': {'endpointId': {'type': 'string', 'description': 'ID of the endpoint to delete'}}, 'additionalProperties': False}}, {'name': 'list-templates', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-template', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['templateId'], 'properties': {'templateId': {'type': 'string', 'description': 'ID of the template to retrieve'}}, 'additionalProperties': False}}, {'name': 'create-template', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'imageName'], 'properties': {'env': {'type': 'object', 'description': 'Environment variables', 'additionalProperties': {'type': 'string'}}, 'name': {'type': 'string', 'description': 'Name for the template'}, 'ports': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Ports to expose'}, 'readme': {'type': 'string', 'description': 'README content in markdown format'}, 'imageName': {'type': 'string', 'description': 'Docker image to use'}, 'volumeInGb': {'type': 'number', 'description': 'Volume size in GB'}, 'isServerless': {'type': 'boolean', 'description': 'Is this a serverless template'}, 'dockerStartCmd': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Docker start commands'}, 'volumeMountPath': {'type': 'string', 'description': 'Path to mount the volume'}, 'dockerEntrypoint': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Docker entrypoint commands'}, 'containerDiskInGb': {'type': 'number', 'description': 'Container disk size in GB'}}, 'additionalProperties': False}}, {'name': 'update-template', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['templateId'], 'properties': {'env': {'type': 'object', 'description': 'New environment variables', 'additionalProperties': {'type': 'string'}}, 'name': {'type': 'string', 'description': 'New name for the template'}, 'ports': {'type': 'array', 'items': {'type': 'string'}, 'description': 'New ports to expose'}, 'readme': {'type': 'string', 'description': 'New README content in markdown format'}, 'imageName': {'type': 'string', 'description': 'New Docker image'}, 'templateId': {'type': 'string', 'description': 'ID of the template to update'}}, 'additionalProperties': False}}, {'name': 'delete-template', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['templateId'], 'properties': {'templateId': {'type': 'string', 'description': 'ID of the template to delete'}}, 'additionalProperties': False}}, {'name': 'list-network-volumes', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-network-volume', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkVolumeId'], 'properties': {'networkVolumeId': {'type': 'string', 'description': 'ID of the network volume to retrieve'}}, 'additionalProperties': False}}, {'name': 'create-network-volume', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'size', 'dataCenterId'], 'properties': {'name': {'type': 'string', 'description': 'Name for the network volume'}, 'size': {'type': 'number', 'description': 'Size in GB (1-4000)'}, 'dataCenterId': {'type': 'string', 'description': 'Data center ID'}}, 'additionalProperties': False}}, {'name': 'update-network-volume', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkVolumeId'], 'properties': {'name': {'type': 'string', 'description': 'New name for the network volume'}, 'size': {'type': 'number', 'description': 'New size in GB (must be larger than current)'}, 'networkVolumeId': {'type': 'string', 'description': 'ID of the network volume to update'}}, 'additionalProperties': False}}, {'name': 'delete-network-volume', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkVolumeId'], 'properties': {'networkVolumeId': {'type': 'string', 'description': 'ID of the network volume to delete'}}, 'additionalProperties': False}}, {'name': 'list-container-registry-auths', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-container-registry-auth', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['containerRegistryAuthId'], 'properties': {'containerRegistryAuthId': {'type': 'string', 'description': 'ID of the container registry auth to retrieve'}}, 'additionalProperties': False}}, {'name': 'create-container-registry-auth', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'username', 'password'], 'properties': {'name': {'type': 'string', 'description': 'Name for the container registry auth'}, 'password': {'type': 'string', 'description': 'Registry password'}, 'username': {'type': 'string', 'description': 'Registry username'}}, 'additionalProperties': False}}, {'name': 'delete-container-registry-auth', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['containerRegistryAuthId'], 'properties': {'containerRegistryAuthId': {'type': 'string', 'description': 'ID of the container registry auth to delete'}}, 'additionalProperties': False}}] |
@daheepk/arxiv-paper-mcp | arXiv Research Assistant | Enable efficient search, exploration, and comparison of arXiv.org research papers through a local MCP server. Access detailed paper metadata, perform keyword and author-based searches, and generate prompts for summarization and comparison. Stay updated with trending topics in various research categories. | 2025-04-22T02:32:35.786Z | 11 | https://smithery.ai/server/@daheepk/arxiv-paper-mcp | true | null | {
"scanPassed": true
} | [{'name': 'scrape_recent_category_papers', 'description': "[크롤링] 특정 카테고리의 'recent' 페이지를 스크랩하여 최신 논문 목록을 가져옵니다.", 'inputSchema': {'type': 'object', 'title': 'scrape_recent_category_papersArguments', 'required': ['category'], 'properties': {'category': {'type': 'string', 'title': 'Category'}, 'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}}}}, {'name': 'search_papers', 'description': '키워드로 arXiv 논문을 검색합니다.', 'inputSchema': {'type': 'object', 'title': 'search_papersArguments', 'required': ['keyword'], 'properties': {'keyword': {'type': 'string', 'title': 'Keyword'}, 'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 5}}}}, {'name': 'get_paper_info', 'description': '논문 ID로 상세 정보를 가져옵니다.', 'inputSchema': {'type': 'object', 'title': 'get_paper_infoArguments', 'required': ['paper_id'], 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}}}}, {'name': 'analyze_trends', 'description': '특정 카테고리의 최신 트렌드를 분석합니다.', 'inputSchema': {'type': 'object', 'title': 'analyze_trendsArguments', 'properties': {'days': {'type': 'integer', 'title': 'Days', 'default': 30}, 'category': {'type': 'string', 'title': 'Category', 'default': 'cs.AI'}}}}] |
@GHSix/averbeporto-mcp | AverbePorto | Integrate with AverbePorto to streamline authentication and document submission using AI tools. Effortlessly manage your cargo insurance endorsements and access essential services through a secure API. Enhance your workflow with automated document handling and protocol consultations. | 2025-04-11T16:25:32.257Z | 11 | https://smithery.ai/server/@GHSix/averbeporto-mcp | true | null | {
"scanPassed": true
} | [{'name': 'login', 'description': 'Authenticates a user with the AverbePorto API using their username and password. Establishes a session and returns a unique `sessionId` required for subsequent API calls.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['user', 'pass'], 'properties': {'dump': {'type': 'number', 'description': 'Debug flag (1 or 2)'}, 'pass': {'type': 'string', 'description': 'Password for AverbePorto API'}, 'user': {'type': 'string', 'description': 'Username for AverbePorto API'}}, 'additionalProperties': False}}, {'name': 'upload', 'description': 'Uploads a specified file to the AverbePorto API for processing. Requires an active `sessionId` obtained from the `login` tool. Returns the processing status, including counts of processed/duplicated/rejected/denied items, generated protocol numbers, and any errors encountered.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sessionId', 'filePath'], 'properties': {'filePath': {'type': 'string', 'description': 'Path to the file to upload'}, 'sessionId': {'type': 'string', 'description': 'Session ID from login'}}, 'additionalProperties': False}}, {'name': 'consultProtocol', 'description': 'Consults the AverbePorto API to retrieve details associated with one or more document access keys (44 digits) or protocol numbers (40 digits). Requires an active `sessionId`.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sessionId'], 'properties': {'keys': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of keys (44 characters) and/or protocols to query - will be automatically sorted'}, 'download': {'type': 'boolean', 'description': 'Set download header'}, 'delimiter': {'type': 'string', 'description': 'CSV delimiter'}, 'protocols': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of protocols (40 characters) and/or keys to query - will be automatically sorted'}, 'sessionId': {'type': 'string', 'description': 'Session ID from login'}}, 'additionalProperties': False}}, {'name': 'decomposeKey', 'description': 'Parses a 44-digit (infCte/Id) Brazilian electronic fiscal document access key (like NF-e, CT-e, MDF-e) into its individual components. Provides details such as state code, emission date, emitter CNPJ, document model, series, number, and emission type. This operation is performed locally without calling an external API.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': 'The access key for NF-e, CT-e, or MDF-e, which may include prefixes or suffixes'}}, 'additionalProperties': False}}, {'name': 'retrieveDocument', 'description': 'Retrieves a list of electronic fiscal documents (NF-e, CT-e, MDF-e, Minuta CT-e) from the AverbePorto API based on specified filter criteria. Filters include document type, date range, date type (emission, update, send), document number (9 char max), involved parties (CNPJs), status, and more. Supports pagination. Requires an active `sessionId`.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sessionId', 'modDoc', 'dtStart', 'dtLimit'], 'properties': {'rem': {'type': 'string', 'description': 'Remitter filter (CNPJ/CPF)'}, 'dest': {'type': 'string', 'description': 'Destination filter (CNPJ/CPF)'}, 'emit': {'type': 'string', 'description': 'Emitter filter (CNPJ/CPF)'}, 'page': {'type': 'integer', 'default': 1, 'description': 'Page number for pagination (starts at 1)', 'exclusiveMinimum': 0}, 'prot': {'type': 'string', 'description': 'Protocol filter'}, 'toma': {'type': 'string', 'description': 'Taker filter (CNPJ/CPF)'}, 'exped': {'type': 'string', 'description': 'Expedition filter (CNPJ/CPF)'}, 'limit': {'type': 'integer', 'default': 25, 'description': 'Limit number of results per page', 'exclusiveMinimum': 0}, 'modal': {'enum': ['All', 'Road', 'Air', 'Water', 'Rail', 'Pipeline', 'Multimodal'], 'type': 'string', 'default': 'All', 'description': 'Modal parameter, default All (maps to 0)'}, 'receb': {'type': 'string', 'description': 'Reception filter (CNPJ/CPF)'}, 'start': {'type': 'integer', 'default': 0, 'minimum': 0, 'description': 'Start index for pagination (0-based)'}, 'taxId': {'type': 'string', 'description': 'Tax ID filter (CNPJ/CPF, specific use case)'}, 'valid': {'enum': ['No', 'Yes', 'All'], 'type': 'string', 'default': 'All', 'description': 'Valid parameter (document status), default All (maps to 2)'}, 'dtType': {'enum': ['Update', 'Emission', 'Send'], 'type': 'string', 'default': 'Send', 'description': 'Date type filter (Update, Emission, Send), default is Send (maps to 1)'}, 'modDoc': {'enum': ['DI', 'MDF-e', 'CT-e', 'NF-e', 'Minuta CT-e'], 'type': 'string', 'description': 'Document type identifier (e.g., CT-e, NF-e, MDF-e, Minuta CT-e)'}, 'numDoc': {'type': 'string', 'description': 'Document number filter (9 char)'}, 'dtLimit': {'type': 'string', 'pattern': '^\\d{4}-\\d{2}-\\d{2}$', 'description': 'End date in YYYY-MM-DD format'}, 'dtStart': {'type': 'string', 'pattern': '^\\d{4}-\\d{2}-\\d{2}$', 'description': 'Start date in YYYY-MM-DD format'}, 'relation': {'type': 'integer', 'default': 0, 'description': 'Relation parameter, default 0'}, 'sessionId': {'type': 'string', 'description': 'Session ID from login'}, 'importador': {'type': 'string', 'description': 'Importer filter (CNPJ/CPF)'}, 'representante': {'type': 'string', 'description': 'Representative filter (CNPJ/CPF)'}}, 'additionalProperties': False}}] |
@utensils/mcp-nixos | mcp-nixos | MCP-NixOS is a Model Context Protocol server that stops your AI assistant from making stuff up about NixOS. Because let's face it—the only thing worse than confusing NixOS documentation is an AI confidently hallucinating about it. | 2025-03-29T09:00:29.661Z | 11 | https://smithery.ai/server/@utensils/mcp-nixos | true | null | {
"scanPassed": true
} | [{'name': 'nixos_search', 'description': 'Search for NixOS packages, options, or programs.\n\n Args:\n query: The search term\n type: The type to search (packages, options, or programs)\n limit: Maximum number of results to return (default: 20)\n channel: NixOS channel to use (default: unstable)\n\n Returns:\n Results formatted as text\n ', 'inputSchema': {'type': 'object', 'title': 'nixos_searchArguments', 'required': ['ctx', 'query'], 'properties': {'ctx': {'type': 'string', 'title': 'ctx'}, 'type': {'type': 'string', 'title': 'Type', 'default': 'packages'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 20}, 'query': {'type': 'string', 'title': 'Query'}, 'channel': {'type': 'string', 'title': 'Channel', 'default': 'unstable'}}}}, {'name': 'nixos_info', 'description': 'Get detailed information about a NixOS package or option.\n\n Args:\n name: The name of the package or option\n type: Either "package" or "option"\n channel: NixOS channel to use (default: unstable)\n\n Returns:\n Detailed information about the package or option\n ', 'inputSchema': {'type': 'object', 'title': 'nixos_infoArguments', 'required': ['ctx', 'name'], 'properties': {'ctx': {'type': 'string', 'title': 'ctx'}, 'name': {'type': 'string', 'title': 'Name'}, 'type': {'type': 'string', 'title': 'Type', 'default': 'package'}, 'channel': {'type': 'string', 'title': 'Channel', 'default': 'unstable'}}}}, {'name': 'nixos_stats', 'description': 'Get statistics about available NixOS packages and options.\n\n Args:\n channel: NixOS channel to use (default: unstable)\n\n Returns:\n Statistics about packages and options\n ', 'inputSchema': {'type': 'object', 'title': 'nixos_statsArguments', 'required': ['ctx'], 'properties': {'ctx': {'type': 'string', 'title': 'ctx'}, 'channel': {'type': 'string', 'title': 'Channel', 'default': 'unstable'}}}}, {'name': 'home_manager_search', 'description': 'Search for Home Manager options.\n\n Args:\n query: The search term\n limit: Maximum number of results to return (default: 20)\n\n Returns:\n Results formatted as text\n ', 'inputSchema': {'type': 'object', 'title': 'home_manager_searchArguments', 'required': ['ctx', 'query'], 'properties': {'ctx': {'type': 'string', 'title': 'ctx'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 20}, 'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'home_manager_info', 'description': 'Get detailed information about a Home Manager option.\n\n Args:\n name: The name of the option\n\n Returns:\n Detailed information formatted as text\n ', 'inputSchema': {'type': 'object', 'title': 'home_manager_infoArguments', 'required': ['ctx', 'name'], 'properties': {'ctx': {'type': 'string', 'title': 'ctx'}, 'name': {'type': 'string', 'title': 'Name'}}}}, {'name': 'home_manager_stats', 'description': 'Get statistics about Home Manager options.\n\n Returns:\n Statistics about Home Manager options\n ', 'inputSchema': {'type': 'object', 'title': 'home_manager_statsArguments', 'required': ['ctx'], 'properties': {'ctx': {'type': 'string', 'title': 'ctx'}}}}, {'name': 'home_manager_list_options', 'description': 'List all top-level Home Manager option categories.\n\n Returns:\n Formatted list of top-level option categories and their statistics\n ', 'inputSchema': {'type': 'object', 'title': 'home_manager_list_optionsArguments', 'required': ['ctx'], 'properties': {'ctx': {'type': 'string', 'title': 'ctx'}}}}, {'name': 'home_manager_options_by_prefix', 'description': 'Get all Home Manager options under a specific prefix.\n\n Args:\n option_prefix: The option prefix to search for (e.g., "programs", "programs.git")\n\n Returns:\n Formatted list of options under the given prefix\n ', 'inputSchema': {'type': 'object', 'title': 'home_manager_options_by_prefixArguments', 'required': ['ctx', 'option_prefix'], 'properties': {'ctx': {'type': 'string', 'title': 'ctx'}, 'option_prefix': {'type': 'string', 'title': 'Option Prefix'}}}}, {'name': 'darwin_search', 'description': '', 'inputSchema': {'type': 'object', 'title': 'darwin_search_handlerArguments', 'required': ['query'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 20}, 'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'darwin_info', 'description': '', 'inputSchema': {'type': 'object', 'title': 'darwin_info_handlerArguments', 'required': ['name'], 'properties': {'name': {'type': 'string', 'title': 'Name'}}}}, {'name': 'darwin_stats', 'description': '', 'inputSchema': {'type': 'object', 'title': 'darwin_stats_handlerArguments', 'properties': {}}}, {'name': 'darwin_list_options', 'description': '', 'inputSchema': {'type': 'object', 'title': 'darwin_list_options_handlerArguments', 'properties': {}}}, {'name': 'darwin_options_by_prefix', 'description': '', 'inputSchema': {'type': 'object', 'title': 'darwin_options_by_prefix_handlerArguments', 'required': ['option_prefix'], 'properties': {'option_prefix': {'type': 'string', 'title': 'Option Prefix'}}}}] |
@ropon/mcp_demo | Demo IP Query | Query IP addresses and retrieve related information effortlessly. Enhance your applications with real-time IP data and insights. | 2025-04-07T01:55:22.639Z | 11 | https://smithery.ai/server/@ropon/mcp_demo | true | null | {
"scanPassed": true
} | [{'name': 'get_current_ip_info', 'description': 'This is a tool from the demo MCP server.\nGet information about the current ip info', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'get_ip_info', 'description': 'Get IP information', 'inputSchema': {'type': 'object', 'properties': {'ip': {'type': 'string', 'description': 'IP address'}}}}] |
@ESnark/blowback | Blowback | Integrate your front-end development server with a powerful MCP server. Capture browser console logs, manage checkpoints, and streamline your development workflow with ease. Enhance your debugging and testing capabilities while working with Vite and other frameworks. | 2025-03-20T19:00:29.141Z | 11 | https://smithery.ai/server/@ESnark/blowback | true | null | {
"scanPassed": true
} | [{'name': 'how-to-use', 'description': 'Description of how to use the server', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['section'], 'properties': {'section': {'enum': ['checkpoint', 'hmr'], 'type': 'string', 'description': 'Section to describe'}}, 'additionalProperties': False}}, {'name': 'get-hmr-events', 'description': 'Retrieves recent HMR events', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of events to return'}}, 'additionalProperties': False}}, {'name': 'start-browser', 'description': 'Launches a browser instance and navigates to the Vite dev server', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'headless': {'type': 'boolean', 'description': 'Run browser in headless mode'}, 'viteServerUrl': {'type': 'string', 'description': 'URL of the Vite dev server (default: http://localhost:5173)'}}, 'additionalProperties': False}}, {'name': 'capture-screenshot', 'description': 'Captures a screenshot of the current page or a specific element.\nThis feature is for MCP Clients that do not support MCP Resource and image content type.\nIf the image is successfully saved, you should request the user to provide the image.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectRoot'], 'properties': {'url': {'type': 'string', 'description': 'URL to navigate to before capturing screenshot'}, 'selector': {'type': 'string', 'description': 'CSS selector to capture (captures full page if not provided)'}, 'projectRoot': {'type': 'string', 'description': 'Root directory path of the development project'}}, 'additionalProperties': False}}, {'name': 'get-element-properties', 'description': 'Retrieves properties and state information of a specific element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector', 'properties'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector of the element to inspect'}, 'properties': {'type': 'array', 'items': {'type': 'string'}, 'description': "Array of property names to retrieve (e.g., ['value', 'checked', 'textContent'])"}}, 'additionalProperties': False}}, {'name': 'get-element-styles', 'description': 'Retrieves style information of a specific element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector', 'styleProperties'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector of the element to inspect'}, 'styleProperties': {'type': 'array', 'items': {'type': 'string'}, 'description': "Array of style property names to retrieve (e.g., ['color', 'fontSize', 'backgroundColor'])"}}, 'additionalProperties': False}}, {'name': 'get-element-dimensions', 'description': 'Retrieves dimension and position information of a specific element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector of the element to inspect'}}, 'additionalProperties': False}}, {'name': 'monitor-network', 'description': 'Monitors network requests in the browser for a specified duration', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'duration': {'type': 'number', 'description': 'Duration in milliseconds to monitor (default: 5000)'}, 'urlPattern': {'type': 'string', 'description': 'URL pattern to filter (regex string)'}}, 'additionalProperties': False}}, {'name': 'get-element-html', 'description': 'Retrieves the HTML content of a specific element and its children', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector of the element to inspect'}, 'includeOuter': {'type': 'boolean', 'description': "If true, includes the selected element's outer HTML; otherwise returns only inner HTML (default: false)"}}, 'additionalProperties': False}}, {'name': 'get-console-logs', 'description': 'Retrieves console logs from the development server', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'description': 'Number of logs to return, starting from the most recent log'}, 'checkpoint': {'type': 'string', 'description': 'If specified, returns only logs recorded at this checkpoint'}}, 'additionalProperties': False}}, {'name': 'execute-browser-commands', 'description': 'Executes a sequence of predefined browser commands safely. Available commands:\n\n- click: Clicks on an element matching the selector or at specified coordinates\n- type: Types text into an input element\n- wait: Waits for an element, a specified time period, or a condition\n- navigate: Navigates to a specified URL\n- select: Selects an option in a dropdown\n- check: Checks or unchecks a checkbox\n- hover: Hovers over an element\n- focus: Focuses an element\n- blur: Removes focus from an element\n- keypress: Simulates pressing a keyboard key\n- scroll: Scrolls the page or an element\n- getAttribute: Gets an attribute value from an element\n- getProperty: Gets a property value from an element\n- drag: Performs a drag operation from one position to another\n- refresh: Refreshes the current page\n\nNote on coordinates: For all mouse-related commands (click, drag, etc.), coordinates are relative to the browser viewport\nwhere (0,0) is the top-left corner. X increases to the right, Y increases downward.\n\nExamples are available in the schema definition.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['commands'], 'properties': {'timeout': {'type': 'number', 'description': 'Overall timeout in milliseconds (default: 30000)'}, 'commands': {'type': 'array', 'items': {'anyOf': [{'type': 'object', 'required': ['command'], 'properties': {'args': {'type': 'object', 'required': ['y'], 'properties': {'x': {'type': 'number', 'description': 'X coordinate to click (used instead of selector)'}, 'y': {'type': 'number', 'description': 'Y coordinate to click (used instead of selector)'}, 'delay': {'type': 'number', 'description': 'Delay between mousedown and mouseup in ms (default: 0)'}, 'button': {'enum': ['left', 'right', 'middle'], 'type': 'string', 'description': 'Mouse button to use (default: left)'}, 'clickCount': {'type': 'number', 'description': 'Number of clicks (default: 1)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'click'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to click (required unless x,y coordinates are provided)'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'string', 'description': 'Text to type into the element'}, 'delay': {'type': 'number', 'description': 'Delay between keystrokes in ms (default: 0)'}, 'clearFirst': {'type': 'boolean', 'description': 'Whether to clear the input field before typing (default: false)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'type'}, 'selector': {'type': 'string', 'description': 'CSS selector of input element to type into'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command'], 'properties': {'args': {'type': 'object', 'properties': {'time': {'type': 'number', 'description': 'Time to wait in milliseconds (use this or selector)'}, 'timeout': {'type': 'number', 'description': 'Maximum time to wait in ms (default: 5000)'}, 'visible': {'type': 'boolean', 'description': 'Wait for element to be visible (default: true)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'wait'}, 'selector': {'type': 'string', 'description': 'CSS selector to wait for'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'args'], 'properties': {'args': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'URL to navigate to'}, 'waitUntil': {'enum': ['load', 'domcontentloaded', 'networkidle0', 'networkidle2'], 'type': 'string', 'description': 'Navigation wait condition (default: networkidle0)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'navigate'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'args'], 'properties': {'args': {'type': 'object', 'required': ['sourceX', 'sourceY', 'offsetX', 'offsetY'], 'properties': {'steps': {'type': 'number', 'description': 'Number of intermediate steps for smooth drag (default: 10)'}, 'offsetX': {'type': 'number', 'description': 'Horizontal distance to drag (positive for right, negative for left)'}, 'offsetY': {'type': 'number', 'description': 'Vertical distance to drag (positive for down, negative for up)'}, 'sourceX': {'type': 'number', 'description': 'X coordinate to start the drag from (distance from left edge of viewport)'}, 'sourceY': {'type': 'number', 'description': 'Y coordinate to start the drag from (distance from top edge of viewport)'}, 'smoothDrag': {'type': 'boolean', 'description': 'Whether to perform a smooth, gradual drag movement (default: false)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'drag'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector', 'args'], 'properties': {'args': {'type': 'object', 'required': ['value'], 'properties': {'value': {'type': 'string', 'description': 'Value of the option to select'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'select'}, 'selector': {'type': 'string', 'description': 'CSS selector of select element'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'properties': {'checked': {'type': 'boolean', 'description': 'Whether to check or uncheck the box (default: true)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'check'}, 'selector': {'type': 'string', 'description': 'CSS selector of checkbox element'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'properties': {'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'hover'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to hover over'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'properties': {'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'focus'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to focus'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector'], 'properties': {'args': {'type': 'object', 'properties': {'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'blur'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to blur'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'args'], 'properties': {'args': {'type': 'object', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "Key to press (e.g., 'Enter', 'Tab', 'ArrowDown')"}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'keypress'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to target (optional)'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command'], 'properties': {'args': {'type': 'object', 'properties': {'x': {'type': 'number', 'description': 'Horizontal scroll amount in pixels (default: 0)'}, 'y': {'type': 'number', 'description': 'Vertical scroll amount in pixels (default: 0)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'scroll'}, 'selector': {'type': 'string', 'description': 'CSS selector of element to scroll (scrolls page if not provided)'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector', 'args'], 'properties': {'args': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the attribute to retrieve'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'getAttribute'}, 'selector': {'type': 'string', 'description': 'CSS selector of element'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command', 'selector', 'args'], 'properties': {'args': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the property to retrieve'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'getProperty'}, 'selector': {'type': 'string', 'description': 'CSS selector of element'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['command'], 'properties': {'args': {'type': 'object', 'properties': {'waitUntil': {'enum': ['load', 'domcontentloaded', 'networkidle0', 'networkidle2'], 'type': 'string', 'description': 'Navigation wait condition (default: networkidle0)'}, 'continueOnError': {'type': 'boolean', 'description': 'Whether to continue executing commands if this command fails'}}, 'additionalProperties': False}, 'command': {'type': 'string', 'const': 'refresh'}, 'description': {'type': 'string', 'description': 'Description of this command step'}}, 'additionalProperties': False}]}, 'description': 'Array of commands to execute in sequence'}}, 'additionalProperties': False}}] |
@dcSpark/mcp-server-jupiter | Jupiter Swap API Server | Enable Claude to interact with the Jupiter swap API on the Solana blockchain. Get quotes, build, and send swap transactions seamlessly. Enhance your trading experience with direct access to token swaps. | 2025-03-10T07:00:19.752Z | 11 | https://smithery.ai/server/@dcSpark/mcp-server-jupiter | true | null | {
"scanPassed": true
} | [{'name': 'jupiter_get_quote', 'description': 'Get a quote for swapping tokens on Jupiter', 'inputSchema': {'type': 'object', 'required': ['inputMint', 'outputMint', 'amount'], 'properties': {'amount': {'type': 'string'}, 'swapMode': {'type': 'string'}, 'inputMint': {'type': 'string'}, 'outputMint': {'type': 'string'}, 'maxAccounts': {'type': 'number'}, 'slippageBps': {'type': 'number'}, 'excludeDexes': {'type': 'array', 'items': {'type': 'string'}}, 'platformFeeBps': {'type': 'number'}, 'onlyDirectRoutes': {'type': 'boolean'}, 'asLegacyTransaction': {'type': 'boolean'}}}}, {'name': 'jupiter_build_swap_transaction', 'description': 'Build a swap transaction on Jupiter', 'inputSchema': {'type': 'object', 'required': ['quoteResponse', 'userPublicKey'], 'properties': {'quoteResponse': {'type': 'string'}, 'userPublicKey': {'type': 'string'}, 'asLegacyTransaction': {'type': 'boolean'}, 'prioritizationFeeLamports': {'type': 'number'}, 'computeUnitPriceMicroLamports': {'type': 'number'}}}}, {'name': 'jupiter_send_swap_transaction', 'description': 'Send a swap transaction on Jupiter', 'inputSchema': {'type': 'object', 'properties': {'maxRetries': {'type': 'number'}, 'skipPreflight': {'type': 'boolean'}, 'swapTransaction': {'type': 'string'}, 'serializedTransaction': {'type': 'string'}}}}] |
@recrmio/recrmio-mcp-server | RealEstateCRM MCP Server | Provide seamless integration of RealEstateCRM data and tools with language models to enhance real estate workflows. Enable dynamic access to CRM resources and actions through a standardized protocol. Facilitate automation and intelligent interactions within real estate management environments. | 2025-04-21T08:54:45.872Z | 11 | https://smithery.ai/server/@recrmio/recrmio-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'recrm_list_leads', 'description': 'List leads with optional filters.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_lead', 'description': 'Get details for a specific lead.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_create_lead', 'description': 'Create a new lead.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'currency_code': {'type': 'string', 'description': 'Currency code (e.g., USD, EUR) (will lookup ID)'}, 'lead_type_name': {'type': 'string', 'description': 'Lead type name (will lookup ID)'}, 'lead_rating_name': {'type': 'string', 'description': 'Lead rating name (will lookup ID)'}, 'lead_source_name': {'type': 'string', 'description': 'Lead source name (will lookup ID)'}, 'lead_status_name': {'type': 'string', 'description': 'Lead status name (will lookup ID)'}, 'lead_purpose_name': {'type': 'string', 'description': 'Lead purpose name (will lookup ID)'}, 'lead_industry_name': {'type': 'string', 'description': 'Lead industry name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}}}}, {'name': 'recrm_update_lead', 'description': 'Update an existing lead.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}, 'currency_code': {'type': 'string', 'description': 'Currency code (e.g., USD, EUR) (will lookup ID)'}, 'lead_type_name': {'type': 'string', 'description': 'Lead type name (will lookup ID)'}, 'lead_rating_name': {'type': 'string', 'description': 'Lead rating name (will lookup ID)'}, 'lead_source_name': {'type': 'string', 'description': 'Lead source name (will lookup ID)'}, 'lead_status_name': {'type': 'string', 'description': 'Lead status name (will lookup ID)'}, 'lead_purpose_name': {'type': 'string', 'description': 'Lead purpose name (will lookup ID)'}, 'lead_industry_name': {'type': 'string', 'description': 'Lead industry name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}}}}, {'name': 'recrm_delete_lead', 'description': 'Delete a lead.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_list_contacts', 'description': 'List contacts with optional filters.', 'inputSchema': {'type': 'object', 'properties': {'email': {'type': 'string', 'description': 'Filter by contact email'}, 'search': {'type': 'string', 'description': 'Search term for contact name'}}}}, {'name': 'recrm_get_contact', 'description': 'Get details for a specific contact.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}}}}, {'name': 'recrm_create_contact', 'description': 'Create a new contact.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'contact_status_name': {'type': 'string', 'description': 'Contact status name (will lookup ID)'}}}}, {'name': 'recrm_update_contact', 'description': 'Update an existing contact.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'contact_status_name': {'type': 'string', 'description': 'Contact status name (will lookup ID)'}}}}, {'name': 'recrm_delete_contact', 'description': 'Delete a contact.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}}}}, {'name': 'recrm_list_accounts', 'description': 'List accounts.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_account', 'description': 'Get details for a specific account.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_create_account', 'description': 'Create a new account.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'account_type_name': {'type': 'string', 'description': 'Account type name (will lookup ID)'}, 'account_rating_name': {'type': 'string', 'description': 'Account rating name (will lookup ID)'}, 'account_status_name': {'type': 'string', 'description': 'Account status name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'account_industry_name': {'type': 'string', 'description': 'Account industry name (will lookup ID)'}, 'payment_currency_code': {'type': 'string', 'description': 'Payment currency code (e.g., USD) (will lookup ID)'}, 'payment_condition_name': {'type': 'string', 'description': 'Payment condition name (will lookup ID)'}, 'account_company_type_name': {'type': 'string', 'description': 'Account company type name (will lookup ID)'}}}}, {'name': 'recrm_update_account', 'description': 'Update an existing account.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}, 'account_type_name': {'type': 'string', 'description': 'Account type name (will lookup ID)'}, 'account_rating_name': {'type': 'string', 'description': 'Account rating name (will lookup ID)'}, 'account_status_name': {'type': 'string', 'description': 'Account status name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'account_industry_name': {'type': 'string', 'description': 'Account industry name (will lookup ID)'}, 'payment_currency_code': {'type': 'string', 'description': 'Payment currency code (e.g., USD) (will lookup ID)'}, 'payment_condition_name': {'type': 'string', 'description': 'Payment condition name (will lookup ID)'}, 'account_company_type_name': {'type': 'string', 'description': 'Account company type name (will lookup ID)'}}}}, {'name': 'recrm_delete_account', 'description': 'Delete an account.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_get_account_types', 'description': 'Fetch Accounts Types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_account_industries', 'description': 'Fetch Accounts Industry.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_account_ratings', 'description': 'Fetch Accounts Rating.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_account_payment_conditions', 'description': 'Fetch Accounts Payment Conditions.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_account_status', 'description': 'Fetch Accounts Status.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_account_company_types', 'description': 'Fetch Accounts Company Types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_list_opportunities', 'description': 'List opportunities with optional filters.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_opportunity', 'description': 'Get details for a specific opportunity.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}}}}, {'name': 'recrm_create_opportunity', 'description': 'Create a new opportunity.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'lead_source_name': {'type': 'string', 'description': 'Lead source name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'opportunity_stage_name': {'type': 'string', 'description': 'Opportunity stage name (will lookup ID)'}, 'opportunity_purpose_name': {'type': 'string', 'description': 'Opportunity purpose name (will lookup ID)'}, 'opportunity_pipeline_name': {'type': 'string', 'description': 'Opportunity pipeline name (will lookup ID)'}}}}, {'name': 'recrm_update_opportunity', 'description': 'Update an existing opportunity.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}, 'lead_source_name': {'type': 'string', 'description': 'Lead source name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'opportunity_stage_name': {'type': 'string', 'description': 'Opportunity stage name (will lookup ID)'}, 'opportunity_purpose_name': {'type': 'string', 'description': 'Opportunity purpose name (will lookup ID)'}, 'opportunity_pipeline_name': {'type': 'string', 'description': 'Opportunity pipeline name (will lookup ID)'}}}}, {'name': 'recrm_delete_opportunity', 'description': 'Delete an opportunity.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}}}}, {'name': 'recrm_list_deals', 'description': 'List deals with optional filters.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_deal', 'description': 'Get details for a specific deal.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_create_deal', 'description': 'Create a new deal.', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'The name of the deal (Required)'}, 'amount': {'type': 'number', 'description': 'Deal amount'}, 'contact_name': {'type': 'string', 'description': 'Contact name (will lookup ID)'}, 'contact_email': {'type': 'string', 'description': 'Contact email (will lookup ID)'}, 'deal_stage_name': {'type': 'string', 'description': 'Deal stage name (will lookup ID)'}, 'deal_purpose_name': {'type': 'string', 'description': 'Deal purpose name (will lookup ID)'}, 'deal_pipeline_name': {'type': 'string', 'description': 'Deal pipeline name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'deal_contact_type_name': {'type': 'string', 'description': 'Deal contact type name (will lookup ID)'}, 'deal_business_type_name': {'type': 'string', 'description': 'Deal business type name (will lookup ID)'}, 'deal_transaction_type_name': {'type': 'string', 'description': 'Deal transaction type name (will lookup ID)'}}}}, {'name': 'recrm_update_deal', 'description': 'Update an existing deal.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string', 'description': 'The name of the deal'}, 'amount': {'type': 'number', 'description': 'Deal amount'}, 'contact_name': {'type': 'string', 'description': 'Contact name (will lookup ID)'}, 'contact_email': {'type': 'string', 'description': 'Contact email (will lookup ID)'}, 'deal_stage_name': {'type': 'string', 'description': 'Deal stage name (will lookup ID)'}, 'deal_purpose_name': {'type': 'string', 'description': 'Deal purpose name (will lookup ID)'}, 'deal_pipeline_name': {'type': 'string', 'description': 'Deal pipeline name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'deal_contact_type_name': {'type': 'string', 'description': 'Deal contact type name (will lookup ID)'}, 'deal_business_type_name': {'type': 'string', 'description': 'Deal business type name (will lookup ID)'}, 'deal_transaction_type_name': {'type': 'string', 'description': 'Deal transaction type name (will lookup ID)'}}}}, {'name': 'recrm_delete_deal', 'description': 'Delete a deal.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_get_deal_stages', 'description': 'Fetch Deals Stages.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_deal_business_types', 'description': 'Fetch Deals Business Types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_deal_transaction_types', 'description': 'Fetch Deals Transaction Types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_deal_contact_types', 'description': 'Fetch Deals Contact Types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_deal_pipelines', 'description': 'Fetch Deals Pipelines.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_deal_pipelines_by_transaction_type', 'description': 'Get Pipelines By Deal Transaction Type.', 'inputSchema': {'type': 'object', 'required': ['transaction_type_id'], 'properties': {'transaction_type_id': {'type': 'integer', 'description': 'ID of the Deal Transaction Type'}}}}, {'name': 'recrm_get_deal_stages_by_pipeline', 'description': 'Get Stages By Pipeline.', 'inputSchema': {'type': 'object', 'required': ['pipeline_id'], 'properties': {'pipeline_id': {'type': 'integer', 'description': 'ID of the Deal Pipeline'}}}}, {'name': 'recrm_get_opportunity_pipelines', 'description': 'Fetch Opportunity Pipelines.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_opportunity_stages', 'description': 'Fetch Opportunity Stages.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_opportunity_purposes', 'description': 'Fetch Opportunity Purposes.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_opportunity_lost_reasons', 'description': 'Fetch Opportunity Lost Reasons.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_opportunity_deal_transaction_types_by_pipeline', 'description': 'Get Opportunity Deal Transaction Types By Pipeline.', 'inputSchema': {'type': 'object', 'required': ['pipeline_id'], 'properties': {'pipeline_id': {'type': 'integer', 'description': 'ID of the Opportunity Pipeline'}}}}, {'name': 'recrm_get_opportunity_pipelines_by_deal_transaction_type', 'description': 'Get Opportunity Pipelines By Deal Transaction Type.', 'inputSchema': {'type': 'object', 'required': ['deal_transaction_type_id'], 'properties': {'deal_transaction_type_id': {'type': 'integer', 'description': 'ID of the Deal Transaction Type'}}}}, {'name': 'recrm_get_opportunity_purposes_by_deal_transaction_type', 'description': 'Get Opportunity Purposes By Deal Transaction Type.', 'inputSchema': {'type': 'object', 'required': ['deal_transaction_type_id'], 'properties': {'deal_transaction_type_id': {'type': 'integer', 'description': 'ID of the Deal Transaction Type'}}}}, {'name': 'recrm_get_opportunity_stages_by_pipeline', 'description': 'Get Opportunity Stages By Pipeline Id.', 'inputSchema': {'type': 'object', 'required': ['pipeline_id'], 'properties': {'pipeline_id': {'type': 'integer', 'description': 'ID of the Opportunity Pipeline'}}}}, {'name': 'recrm_list_properties', 'description': 'Fetch Properties (Listings).', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_property', 'description': 'Get Property (Listing) Detail.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_create_property', 'description': 'Add Property (Listing).', 'inputSchema': {'type': 'object', 'required': ['reference', 'country_name'], 'properties': {'city': {'type': 'string', 'description': 'City (optional)'}, 'street': {'type': 'string', 'description': 'Street address (optional)'}, 'district': {'type': 'string', 'description': 'District/State (optional)'}, 'zip_code': {'type': 'string', 'description': 'Zip/Postal code (optional)'}, 'reference': {'type': 'string', 'description': 'Property Reference (Required)'}, 'country_name': {'type': 'string', 'description': 'Country name (will lookup ID)'}, 'currency_code': {'type': 'string', 'description': 'Currency code (e.g., THB, USD) (will lookup ID)'}, 'unit_type_name': {'type': 'string', 'description': 'Unit type name (will lookup ID)'}, 'orientation_name': {'type': 'string', 'description': 'Orientation name (will lookup ID)'}, 'contract_type_name': {'type': 'string', 'description': 'Contract type name (will lookup ID)'}, 'property_type_name': {'type': 'string', 'description': 'Property type name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'property_category_name': {'type': 'string', 'description': 'Property category name (will lookup ID)'}}}}, {'name': 'recrm_update_property', 'description': 'Edit Property (Listing).', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}, 'city': {'type': 'string', 'description': 'City (optional)'}, 'street': {'type': 'string', 'description': 'Street address (optional)'}, 'district': {'type': 'string', 'description': 'District/State (optional)'}, 'zip_code': {'type': 'string', 'description': 'Zip/Postal code (optional)'}, 'country_name': {'type': 'string', 'description': 'Country name (will lookup ID)'}, 'currency_code': {'type': 'string', 'description': 'Currency code (e.g., THB, USD) (will lookup ID)'}, 'unit_type_name': {'type': 'string', 'description': 'Unit type name (will lookup ID)'}, 'orientation_name': {'type': 'string', 'description': 'Orientation name (will lookup ID)'}, 'contract_type_name': {'type': 'string', 'description': 'Contract type name (will lookup ID)'}, 'property_type_name': {'type': 'string', 'description': 'Property type name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'property_category_name': {'type': 'string', 'description': 'Property category name (will lookup ID)'}}}}, {'name': 'recrm_delete_property', 'description': 'Delete Property (Listing).', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_get_property_descriptions', 'description': 'Fetch Property Descriptions.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_search_properties', 'description': 'Search Properties (Listings).', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_property_categories', 'description': 'Fetch Property Categories.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_property_interiors', 'description': 'Fetch Property Interiors.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_property_exteriors', 'description': 'Fetch Property Exteriors.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_property_unit_types', 'description': 'Fetch Property Unit Types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_property_orientations', 'description': 'Fetch Property Orientations.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_property_contract_types', 'description': 'Fetch Property Contract Types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_building_property_types', 'description': 'Fetch Building Property Types (used for Properties).', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_building_ranges', 'description': 'Fetch Building Ranges.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_building_services', 'description': 'Fetch Building Services.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_building_amenities', 'description': 'Fetch Building Amenities.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_countries', 'description': 'Fetch Countries.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_list_buildings', 'description': 'Fetch Buildings.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_building', 'description': 'Get Building Detail.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_create_building', 'description': 'Add Building.', 'inputSchema': {'type': 'object', 'required': ['name', 'country_name'], 'properties': {'city': {'type': 'string', 'description': 'City (optional)'}, 'name': {'type': 'string', 'description': 'Building Name (Required)'}, 'street': {'type': 'string', 'description': 'Street address (optional)'}, 'district': {'type': 'string', 'description': 'District/State (optional)'}, 'zip_code': {'type': 'string', 'description': 'Zip/Postal code (optional)'}, 'country_name': {'type': 'string', 'description': 'Country name (will lookup ID)'}, 'property_type_name': {'type': 'string', 'description': 'Property type name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}}}}, {'name': 'recrm_update_building', 'description': 'Edit Building.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}, 'city': {'type': 'string', 'description': 'City (optional)'}, 'name': {'type': 'string', 'description': 'Building Name'}, 'street': {'type': 'string', 'description': 'Street address (optional)'}, 'district': {'type': 'string', 'description': 'District/State (optional)'}, 'zip_code': {'type': 'string', 'description': 'Zip/Postal code (optional)'}, 'country_name': {'type': 'string', 'description': 'Country name (will lookup ID)'}, 'property_type_name': {'type': 'string', 'description': 'Property type name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}}}}, {'name': 'recrm_delete_building', 'description': 'Delete Building.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_list_tasks', 'description': 'List tasks with optional filters.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_task', 'description': 'Get details for a specific task.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}}}}, {'name': 'recrm_create_task', 'description': 'Create a new task.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'task_type_name': {'type': 'string', 'description': 'Task type name (will lookup ID)'}, 'task_status_name': {'type': 'string', 'description': 'Task status name (will lookup ID)'}, 'task_priority_name': {'type': 'string', 'description': 'Task priority name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}}}}, {'name': 'recrm_update_task', 'description': 'Update an existing task.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}, 'task_type_name': {'type': 'string', 'description': 'Task type name (will lookup ID)'}, 'task_status_name': {'type': 'string', 'description': 'Task status name (will lookup ID)'}, 'task_priority_name': {'type': 'string', 'description': 'Task priority name (will lookup ID)'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}}}}, {'name': 'recrm_delete_task', 'description': 'Delete a task.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}}}}, {'name': 'recrm_list_users', 'description': 'List users, optionally filtering by search term.', 'inputSchema': {'type': 'object', 'properties': {'search': {'type': 'string', 'description': 'Search term for user name or email'}}}}, {'name': 'recrm_get_lead_sources', 'description': 'Fetch available lead sources.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_company_currencies', 'description': 'Fetch currencies associated with the company.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_lead_statuses', 'description': 'Fetch available lead statuses.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_lead_ratings', 'description': 'Fetch available lead ratings.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_lead_types', 'description': 'Fetch available lead types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_lead_purposes', 'description': 'Fetch available lead purposes.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_lead_industries', 'description': 'Fetch available lead industries.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_contact_statuses', 'description': 'Fetch available contact statuses.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_task_types', 'description': 'Fetch available task types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_task_priorities', 'description': 'Fetch available task priorities.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_task_statuses', 'description': 'Fetch available task statuses.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_global_search', 'description': 'Search across all modules (leads, contacts, accounts, etc.).', 'inputSchema': {'type': 'object', 'required': ['search'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination.'}, 'limit': {'type': 'number', 'description': 'Number of results per page.'}, 'search': {'type': 'string', 'description': 'The search term.'}}}}, {'name': 'recrm_module_search', 'description': 'Search within a specific module.', 'inputSchema': {'type': 'object', 'required': ['module_name', 'search'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination.'}, 'limit': {'type': 'number', 'description': 'Number of results per page.'}, 'search': {'type': 'string', 'description': 'The search term.'}, 'module_name': {'type': 'string', 'description': 'The name of the module to search within (e.g., leads, contacts, accounts).'}}}}, {'name': 'recrm_list_calendars', 'description': 'Fetch Accessible Calendars.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_calendar', 'description': 'Get Calendar Detail.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_create_calendar', 'description': 'Add Calendar.', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string'}, 'first_day': {'enum': [0, 1], 'type': 'integer', 'description': 'First day of week (0=Sun, 1=Mon)'}, 'is_public': {'enum': [0, 1], 'type': 'integer', 'description': 'Public (1) or Private (0)'}, 'day_start_at': {'type': 'string', 'description': 'Start time for agendaDay view (HH:MM:SS)'}, 'default_view': {'enum': ['month', 'agendaWeek', 'agendaDay'], 'type': 'string', 'description': 'Default view setting'}}}}, {'name': 'recrm_update_calendar', 'description': 'Edit Calendar.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'first_day': {'enum': [0, 1], 'type': 'integer', 'description': 'First day of week (0=Sun, 1=Mon)'}, 'is_public': {'enum': [0, 1], 'type': 'integer', 'description': 'Public (1) or Private (0)'}, 'day_start_at': {'type': 'string', 'description': 'Start time for agendaDay view (HH:MM:SS)'}, 'default_view': {'enum': ['month', 'agendaWeek', 'agendaDay'], 'type': 'string', 'description': 'Default view setting'}}}}, {'name': 'recrm_delete_calendar', 'description': 'Delete Calendar.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_list_events', 'description': 'Fetch Calendar Events.', 'inputSchema': {'type': 'object', 'required': ['calendar_id'], 'properties': {'end_date': {'type': 'string', 'description': 'The end date (YYYY-MM-DD or YYYY-MM-DD HH:MM:SS)'}, 'start_date': {'type': 'string', 'description': 'The start date (YYYY-MM-DD or YYYY-MM-DD HH:MM:SS)'}, 'calendar_id': {'type': 'integer', 'description': 'The calendar id (Required)'}}}}, {'name': 'recrm_get_event', 'description': 'Get Event Detail.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}}}}, {'name': 'recrm_create_event', 'description': 'Add Event.', 'inputSchema': {'type': 'object', 'required': ['calendar_id', 'name', 'start_date', 'end_date'], 'properties': {'name': {'type': 'string', 'description': 'Event name (Required)'}, 'end_date': {'type': 'string', 'description': 'End date/time (Required, d-m-Y H:i:s format)'}, 'full_day': {'type': 'integer', 'description': 'Is it a full day event? (0 or 1, defaults to 0)'}, 'location': {'type': 'string', 'description': 'Event location'}, 'lead_name': {'type': 'string', 'description': 'Lead name (will lookup ID - provide EITHER contact OR lead)'}, 'start_date': {'type': 'string', 'description': 'Start date/time (Required, d-m-Y H:i:s format)'}, 'calendar_id': {'type': 'integer', 'description': 'The calendar id (Required - used in URL path)'}, 'description': {'type': 'string', 'description': 'Event description'}, 'event_color': {'type': 'string', 'description': 'Event color (hex code, e.g., #FF5733)'}, 'contact_name': {'type': 'string', 'description': 'Contact name (will lookup ID - provide EITHER contact OR lead)'}, 'event_status_name': {'type': 'string', 'description': 'Event status name (will lookup ID)'}, 'event_priority_name': {'type': 'string', 'description': 'Event priority name (will lookup ID)'}, 'shared_with_user_names': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of user names to share the event with (will lookup IDs)'}}}}, {'name': 'recrm_update_event', 'description': 'Edit Event.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'The event id (Required)'}, 'name': {'type': 'string', 'description': 'Event name'}, 'end_date': {'type': 'string', 'description': 'End date/time (d-m-Y H:i:s format)'}, 'full_day': {'type': 'integer', 'description': 'Is it a full day event? (0 or 1)'}, 'location': {'type': 'string', 'description': 'Event location'}, 'lead_name': {'type': 'string', 'description': 'Lead name (will lookup ID - provide EITHER contact OR lead)'}, 'start_date': {'type': 'string', 'description': 'Start date/time (d-m-Y H:i:s format)'}, 'description': {'type': 'string', 'description': 'Event description'}, 'event_color': {'type': 'string', 'description': 'Event color (hex code, e.g., #FF5733)'}, 'contact_name': {'type': 'string', 'description': 'Contact name (will lookup ID - provide EITHER contact OR lead)'}, 'event_status_name': {'type': 'string', 'description': 'Event status name (will lookup ID)'}, 'event_priority_name': {'type': 'string', 'description': 'Event priority name (will lookup ID)'}, 'shared_with_user_names': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of user names to share the event with (will lookup IDs)'}}}}, {'name': 'recrm_delete_event', 'description': 'Delete Event.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string'}}}}, {'name': 'recrm_get_event_statuses', 'description': 'Fetch Event Status.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_event_priorities', 'description': 'Fetch Event Priorities.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_comments', 'description': 'Get comments for a specific entity.', 'inputSchema': {'type': 'object', 'required': ['entity_type', 'entity_id'], 'properties': {'entity_id': {'type': 'string', 'description': 'The entity id'}, 'entity_type': {'enum': ['accounts', 'assets', 'buildings', 'events', 'calls', 'campaigns', 'contactrequests', 'contacts', 'deals', 'documents', 'emails', 'feedback', 'invoices', 'leads', 'opportunities', 'orders', 'payments', 'pricelist', 'products', 'productdates', 'properties', 'quotes', 'servicecontracts', 'tasks', 'testimonials', 'tickets', 'vendors'], 'type': 'string', 'description': 'The entity type'}}}}, {'name': 'recrm_create_comment', 'description': 'Create a new comment for a specific entity, optionally mentioning users.', 'inputSchema': {'type': 'object', 'required': ['entity_type', 'entity_id', 'comment'], 'properties': {'comment': {'type': 'string', 'description': 'The content of the comment (Required)'}, 'entity_id': {'type': 'string', 'description': 'The entity id'}, 'entity_type': {'enum': ['accounts', 'assets', 'buildings', 'events', 'calls', 'campaigns', 'contactrequests', 'contacts', 'deals', 'documents', 'emails', 'feedback', 'invoices', 'leads', 'opportunities', 'orders', 'payments', 'pricelist', 'products', 'productdates', 'properties', 'quotes', 'servicecontracts', 'tasks', 'testimonials', 'tickets', 'vendors'], 'type': 'string', 'description': 'The entity type'}, 'parent_comment_id': {'type': 'integer', 'description': 'ID of the parent comment for threading (Optional)'}, 'mentioned_user_names': {'type': 'array', 'items': {'type': 'string'}, 'description': "Array of user names/emails to mention (will lookup IDs for 'pings')"}}}}, {'name': 'recrm_update_comment', 'description': 'Update an existing comment.', 'inputSchema': {'type': 'object', 'required': ['entity_type', 'entity_id', 'id', 'comment'], 'properties': {'id': {'type': 'integer', 'description': 'The ID of the comment to update'}, 'comment': {'type': 'string', 'description': 'The updated content of the comment (Required)'}, 'entity_id': {'type': 'string', 'description': 'The entity id'}, 'entity_type': {'enum': ['accounts', 'assets', 'buildings', 'events', 'calls', 'campaigns', 'contactrequests', 'contacts', 'deals', 'documents', 'emails', 'feedback', 'invoices', 'leads', 'opportunities', 'orders', 'payments', 'pricelist', 'products', 'productdates', 'properties', 'quotes', 'servicecontracts', 'tasks', 'testimonials', 'tickets', 'vendors'], 'type': 'string', 'description': 'The entity type'}}}}, {'name': 'recrm_delete_comment', 'description': 'Delete a comment.', 'inputSchema': {'type': 'object', 'required': ['entity_type', 'entity_id', 'id'], 'properties': {'id': {'type': 'integer', 'description': 'The ID of the comment to delete'}, 'entity_id': {'type': 'string', 'description': 'The entity id'}, 'entity_type': {'enum': ['accounts', 'assets', 'buildings', 'events', 'calls', 'campaigns', 'contactrequests', 'contacts', 'deals', 'documents', 'emails', 'feedback', 'invoices', 'leads', 'opportunities', 'orders', 'payments', 'pricelist', 'products', 'productdates', 'properties', 'quotes', 'servicecontracts', 'tasks', 'testimonials', 'tickets', 'vendors'], 'type': 'string', 'description': 'The entity type'}}}}, {'name': 'recrm_upvote_comment', 'description': 'Upvote a comment.', 'inputSchema': {'type': 'object', 'required': ['entity_type', 'entity_id', 'id'], 'properties': {'id': {'type': 'integer', 'description': 'The ID of the comment to upvote'}, 'entity_id': {'type': 'string', 'description': 'The entity id'}, 'entity_type': {'enum': ['accounts', 'assets', 'buildings', 'events', 'calls', 'campaigns', 'contactrequests', 'contacts', 'deals', 'documents', 'emails', 'feedback', 'invoices', 'leads', 'opportunities', 'orders', 'payments', 'pricelist', 'products', 'productdates', 'properties', 'quotes', 'servicecontracts', 'tasks', 'testimonials', 'tickets', 'vendors'], 'type': 'string', 'description': 'The entity type'}}}}, {'name': 'recrm_get_attachments', 'description': 'Get attachments for a specific module entity.', 'inputSchema': {'type': 'object', 'required': ['module_type', 'entity_id'], 'properties': {'entity_id': {'type': 'integer', 'description': 'The ID of the entity within the module.'}, 'module_type': {'enum': ['accounts', 'assets', 'buildings', 'buildingunitlayout', 'calls', 'campaigns', 'email_campaigns', 'contactrequests', 'contacts', 'deals', 'documents', 'emails', 'events', 'invoices', 'leads', 'opportunities', 'orders', 'payments', 'pricelist', 'products', 'productdates', 'properties', 'quotes', 'servicecontracts', 'testimonials', 'tasks', 'tickets', 'vendors', 'user', 'weblistings'], 'type': 'string', 'description': 'Name of the module the attachment belongs to.'}}}}, {'name': 'recrm_upload_attachment_from_url', 'description': 'Upload an attachment from a publicly accessible URL.', 'inputSchema': {'type': 'object', 'required': ['url', 'module_type', 'entity_id'], 'properties': {'url': {'type': 'string', 'format': 'uri', 'description': 'The publicly accessible URL of the file to attach.'}, 'type': {'type': 'string', 'default': 'document', 'description': "The attachment type. Default is 'document'."}, 'order': {'type': 'integer', 'minimum': 1, 'description': 'Optional order number (must be >= 1).'}, 'title': {'type': 'string', 'description': 'Optional title for the attachment.'}, 'entity_id': {'type': 'integer', 'description': 'The ID of the entity within the module.'}, 'module_type': {'enum': ['accounts', 'assets', 'buildings', 'buildingunitlayout', 'calls', 'campaigns', 'email_campaigns', 'contactrequests', 'contacts', 'deals', 'documents', 'emails', 'events', 'invoices', 'leads', 'opportunities', 'orders', 'payments', 'pricelist', 'products', 'productdates', 'properties', 'quotes', 'servicecontracts', 'testimonials', 'tasks', 'tickets', 'vendors', 'user', 'weblistings'], 'type': 'string', 'description': 'Name of the module to attach the file to.'}}}}, {'name': 'recrm_update_attachment', 'description': 'Update an existing attachment (e.g., change title or order).', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'The ID of the attachment to update.'}, 'order': {'type': 'integer', 'minimum': 1, 'description': 'The new order number (must be >= 1).'}, 'title': {'type': 'string', 'description': 'The new title for the attachment.'}}}}, {'name': 'recrm_delete_attachment', 'description': 'Delete an attachment.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'The ID of the attachment to delete.'}}}}, {'name': 'recrm_list_calls', 'description': 'List calls with optional filters.', 'inputSchema': {'type': 'object', 'properties': {'page': {'type': 'integer', 'description': 'Page number for pagination.'}, 'lead_id': {'type': 'integer', 'description': 'Filter by lead ID.'}, 'subject': {'type': 'string', 'description': 'Filter by subject (partial match).'}, 'owned_by': {'type': 'integer', 'description': 'Filter by owner (user ID).'}, 'per_page': {'type': 'integer', 'description': 'Number of items per page.'}, 'status_id': {'type': 'integer', 'description': 'Filter by status ID.'}, 'account_id': {'type': 'integer', 'description': 'Filter by account ID.'}, 'contact_id': {'type': 'integer', 'description': 'Filter by contact ID.'}, 'call_date_to': {'type': 'string', 'format': 'date', 'description': 'Filter calls by end date (format: YYYY-MM-DD).'}, 'direction_id': {'type': 'integer', 'description': 'Filter by direction ID.'}, 'phone_number': {'type': 'string', 'description': 'Filter by phone number (partial match).'}, 'call_date_from': {'type': 'string', 'format': 'date', 'description': 'Filter calls by start date (format: YYYY-MM-DD).'}}}}, {'name': 'recrm_get_call', 'description': 'Get details for a specific call.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'The ID of the call to retrieve.'}}}}, {'name': 'recrm_create_call', 'description': 'Create (log) a new call.', 'inputSchema': {'type': 'object', 'required': ['subject', 'call_date', 'duration', 'phone_number'], 'properties': {'notes': {'type': 'string', 'description': 'Notes about the call.'}, 'subject': {'type': 'string', 'description': 'Subject of the call (Required).'}, 'duration': {'type': 'string', 'description': 'Duration of the call (Required, format: HH:MM:SS).'}, 'call_date': {'type': 'string', 'description': 'Date of the call (Required, format: DD-MM-YYYY).'}, 'lead_name': {'type': 'string', 'description': 'Lead name (will lookup ID - provide ONE of account/contact/lead).'}, 'status_name': {'type': 'string', 'description': 'Call status name (e.g., Completed, No Answer) (will lookup ID).'}, 'account_name': {'type': 'string', 'description': 'Account name (will lookup ID - provide ONE of account/contact/lead).'}, 'contact_name': {'type': 'string', 'description': 'Contact name (will lookup ID - provide ONE of account/contact/lead).'}, 'phone_number': {'type': 'string', 'description': 'Phone number called/received from.'}, 'contact_email': {'type': 'string', 'description': 'Contact email (alternative lookup - provide ONE of account/contact/lead).'}, 'direction_name': {'type': 'string', 'description': 'Call direction name (e.g., Outgoing, Incoming) (will lookup ID).'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID).'}}}}, {'name': 'recrm_update_call', 'description': 'Update an existing call log.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'The ID of the call to update (Required).'}, 'notes': {'type': 'string', 'description': 'Notes about the call.'}, 'subject': {'type': 'string', 'description': 'Subject of the call.'}, 'duration': {'type': 'string', 'description': 'Duration of the call (format: HH:MM:SS).'}, 'call_date': {'type': 'string', 'description': 'Date of the call (format: DD-MM-YYYY).'}, 'lead_name': {'type': 'string', 'description': 'Lead name (will lookup ID - provide ONE of account/contact/lead).'}, 'status_name': {'type': 'string', 'description': 'Call status name (will lookup ID).'}, 'account_name': {'type': 'string', 'description': 'Account name (will lookup ID - provide ONE of account/contact/lead).'}, 'contact_name': {'type': 'string', 'description': 'Contact name (will lookup ID - provide ONE of account/contact/lead).'}, 'phone_number': {'type': 'string', 'description': 'Phone number called/received from.'}, 'contact_email': {'type': 'string', 'description': 'Contact email (alternative lookup - provide ONE of account/contact/lead).'}, 'direction_name': {'type': 'string', 'description': 'Call direction name (will lookup ID).'}, 'assign_to_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID).'}}}}, {'name': 'recrm_delete_call', 'description': 'Delete a call log.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'The ID of the call to delete.'}}}}, {'name': 'recrm_get_call_direction_types', 'description': 'Fetch available call direction types.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_call_statuses', 'description': 'Fetch available call statuses.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_list_email_templates', 'description': 'Fetch Email Templates.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_get_email_template', 'description': 'Get Email Template Detail.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer'}}}}, {'name': 'recrm_create_email_template', 'description': 'Create Email Template.', 'inputSchema': {'type': 'object', 'required': ['name', 'subject', 'message', 'module', 'language'], 'properties': {'name': {'type': 'string', 'description': 'Template name (Required)'}, 'module': {'enum': ['leads', 'contacts', 'opportunities', 'deals', 'properties'], 'type': 'string', 'description': 'Module the template relates to (Required)'}, 'message': {'type': 'string', 'description': 'Email body (HTML, Required)'}, 'subject': {'type': 'string', 'description': 'Email subject (Required)'}, 'language': {'type': 'string', 'description': 'Language code (e.g., en, th) (Required)'}, 'owned_by_user_name': {'type': 'string', 'description': 'Assign to specific user by name (Optional, will lookup ID)'}}}}, {'name': 'recrm_update_email_template', 'description': 'Update Email Template.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the template to update (Required)'}, 'name': {'type': 'string', 'description': 'Template name'}, 'module': {'enum': ['leads', 'contacts', 'opportunities', 'deals', 'properties'], 'type': 'string', 'description': 'Module the template relates to'}, 'message': {'type': 'string', 'description': 'Email body (HTML)'}, 'subject': {'type': 'string', 'description': 'Email subject'}, 'language': {'type': 'string', 'description': 'Language code (e.g., en, th)'}, 'owned_by_user_name': {'type': 'string', 'description': 'Assign to specific user by name (Optional, will lookup ID)'}}}}, {'name': 'recrm_copy_email_template', 'description': 'Copy Email Template.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the template to copy (Required)'}}}}, {'name': 'recrm_delete_email_template', 'description': 'Delete Email Template.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the template to delete (Required)'}}}}, {'name': 'recrm_get_email_template_module_variables', 'description': 'Get Email Template Variables for a specific module.', 'inputSchema': {'type': 'object', 'required': ['module'], 'properties': {'module': {'type': 'string', 'description': 'Module name to get variables for (e.g., leads, contacts, deals)'}}}}, {'name': 'recrm_list_listings_lists', 'description': 'Fetch Lists of Listings.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'recrm_create_listings_list', 'description': 'Create a new list of listings.', 'inputSchema': {'type': 'object', 'required': ['list_name'], 'properties': {'items': {'type': 'array', 'items': {'type': 'object', 'required': ['type', 'id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the building or property'}, 'type': {'enum': ['building', 'property'], 'type': 'string', 'description': 'Type of item'}}}, 'description': 'Initial items for manual lists'}, 'duration': {'type': 'integer', 'description': 'Duration for dynamic lists (check units - days?)'}, 'is_public': {'type': 'boolean', 'description': 'Whether the list is public'}, 'list_name': {'type': 'string', 'description': 'Name of the list (Required)'}, 'list_type': {'type': 'integer', 'description': 'Type of the list itself (e.g., 0 for manual, 1 for dynamic - check API docs)'}, 'force_update': {'type': 'boolean', 'description': 'Force update for dynamic lists?'}, 'listing_type': {'type': 'integer', 'description': 'Type of listings in the list (e.g., 0 for properties, 1 for buildings - check API docs)'}, 'maximum_listings': {'type': 'integer', 'description': 'Maximum items for dynamic lists'}, 'is_update_existing': {'type': 'boolean', 'description': 'Update existing items in dynamic lists?'}, 'owned_by_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'buildings_search_options': {'type': 'object', 'description': 'Search criteria for dynamic building lists'}, 'properties_search_options': {'type': 'object', 'description': 'Search criteria for dynamic property lists'}}}}, {'name': 'recrm_get_listings_list', 'description': 'Get a specific list of listings.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the list'}}}}, {'name': 'recrm_update_listings_list', 'description': 'Update a list of listings.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the list to update (Required)'}, 'duration': {'type': 'integer'}, 'is_public': {'type': 'boolean'}, 'list_name': {'type': 'string', 'description': 'New name for the list'}, 'list_type': {'type': 'integer'}, 'force_update': {'type': 'boolean'}, 'listing_type': {'type': 'integer'}, 'maximum_listings': {'type': 'integer'}, 'is_update_existing': {'type': 'boolean'}, 'owned_by_user_name': {'type': 'string', 'description': 'Assign to user by name (will lookup ID)'}, 'buildings_search_options': {'type': 'object'}, 'properties_search_options': {'type': 'object'}}}}, {'name': 'recrm_delete_listings_list', 'description': 'Delete a list of listings.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the list to delete'}}}}, {'name': 'recrm_add_items_to_listings_list', 'description': 'Add items (buildings/properties) to a list of listings.', 'inputSchema': {'type': 'object', 'required': ['id', 'items'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the list to add items to (Required)'}, 'items': {'type': 'array', 'items': {'type': 'object', 'required': ['type', 'id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the building or property'}, 'type': {'enum': ['building', 'property'], 'type': 'string', 'description': 'Type of item'}}}, 'description': 'Items to add (Required)'}}}}, {'name': 'recrm_remove_items_from_listings_list', 'description': 'Remove items from a list of listings.', 'inputSchema': {'type': 'object', 'required': ['id', 'items'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the list to remove items from (Required)'}, 'items': {'type': 'array', 'items': {'type': 'object', 'required': ['type', 'id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the building or property'}, 'type': {'enum': ['building', 'property'], 'type': 'string', 'description': 'Type of item'}}}, 'description': 'Items to remove (Required)'}}}}, {'name': 'recrm_get_listings_list_items', 'description': 'Get items currently in a list of listings.', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'integer', 'description': 'ID of the list'}}}}] |
@devalexandre/mcp-servers | MCP Servers | Automate browser tasks effortlessly. Control a headless browser for navigation, screenshot capturing, and element interaction, all through a simple interface. Enhance your automation projects with dynamic resource access and server lifecycle management. | 2025-03-10T19:08:21.068Z | 11 | https://smithery.ai/server/@devalexandre/mcp-servers | true | null | {
"scanPassed": true
} | [{'name': 'pyppeteer_navigation', 'description': '\n Navigates to the URL specified in the parameter\n ', 'inputSchema': {'type': 'object', 'title': 'pyppeteer_navigationArguments', 'required': ['url'], 'properties': {'url': {'type': 'string', 'title': 'Url'}}}}, {'name': 'take_screenshot', 'description': '\n Takes a screenshot of the current page and saves it with the specified name\n ', 'inputSchema': {'type': 'object', 'title': 'take_screenshotArguments', 'required': ['name'], 'properties': {'name': {'type': 'string', 'title': 'Name'}}}}, {'name': 'click_element', 'description': '\n Clicks an element on the page using the specified selector\n This selector can be css, xpath, or class_name\n ', 'inputSchema': {'type': 'object', 'title': 'click_elementArguments', 'required': ['selector'], 'properties': {'by': {'type': 'string', 'title': 'By', 'default': 'css'}, 'selector': {'type': 'string', 'title': 'Selector'}}}}, {'name': 'exit_server', 'description': '\n Stops the server\n ', 'inputSchema': {'type': 'object', 'title': 'exit_serverArguments', 'properties': {}}}] |
@George5562/Jira-MCP-Server | Jira MCP Server | Interact with Jira using natural language to manage your projects effortlessly. Automate project tasks, issue management, and team assignments, enhancing your productivity and collaboration. Simplify your project management workflow with intuitive commands and automated processes. | 2025-03-13T15:01:30.406Z | 10 | https://smithery.ai/server/@George5562/Jira-MCP-Server | true | null | {
"scanPassed": true
} | [{'name': 'delete_issue', 'description': 'Delete a Jira issue or subtask', 'inputSchema': {'type': 'object', 'required': ['issueKey'], 'properties': {'issueKey': {'type': 'string', 'description': 'Key of the issue to delete'}}}}, {'name': 'get_issues', 'description': 'Get all issues and subtasks for a project', 'inputSchema': {'type': 'object', 'required': ['projectKey'], 'properties': {'jql': {'type': 'string', 'description': 'Optional JQL to filter issues'}, 'projectKey': {'type': 'string', 'description': 'Project key (e.g., "PP")'}}}}, {'name': 'update_issue', 'description': 'Update an existing Jira issue', 'inputSchema': {'type': 'object', 'required': ['issueKey'], 'properties': {'status': {'type': 'string', 'description': 'New status'}, 'summary': {'type': 'string', 'description': 'New summary/title'}, 'assignee': {'type': 'string', 'description': 'Email of new assignee'}, 'issueKey': {'type': 'string', 'description': 'Key of the issue to update'}, 'priority': {'type': 'string', 'description': 'New priority'}, 'description': {'type': 'string', 'description': 'New description'}}}}, {'name': 'list_fields', 'description': 'List all available Jira fields', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'list_issue_types', 'description': 'List all available issue types', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'list_link_types', 'description': 'List all available issue link types', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'get_user', 'description': "Get a user's account ID by email address", 'inputSchema': {'type': 'object', 'required': ['email'], 'properties': {'email': {'type': 'string', 'description': "User's email address"}}}}, {'name': 'create_issue', 'description': 'Create a new Jira issue', 'inputSchema': {'type': 'object', 'required': ['projectKey', 'summary', 'issueType'], 'properties': {'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of labels to apply'}, 'summary': {'type': 'string', 'description': 'Issue summary/title'}, 'assignee': {'type': 'string', 'description': 'Email of the assignee'}, 'priority': {'type': 'string', 'description': 'Issue priority'}, 'issueType': {'type': 'string', 'description': 'Type of issue (e.g., "Task", "Bug", "Story")'}, 'components': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of component names'}, 'projectKey': {'type': 'string', 'description': 'Project key (e.g., "PP")'}, 'description': {'type': 'string', 'description': 'Detailed description of the issue'}}}}, {'name': 'create_issue_link', 'description': 'Create a link between two issues', 'inputSchema': {'type': 'object', 'required': ['inwardIssueKey', 'outwardIssueKey', 'linkType'], 'properties': {'linkType': {'type': 'string', 'description': "Type of link (e.g., 'blocks')"}, 'inwardIssueKey': {'type': 'string', 'description': 'Key of the inward issue (e.g., blocked issue)'}, 'outwardIssueKey': {'type': 'string', 'description': 'Key of the outward issue (e.g., blocking issue)'}}}}] |
@Aias/barnsworthburning-mcp | barnsworthburning | Use this MCP server to search barnsworthburning.net, a digital commonplace book built and curated by Nick Trombley. The site contains a wealth of bookmarks and short snippets on a broad range of topics: design, software, art, architecture, craft, writing, literature, and many more. | 2025-03-12T01:00:44.604Z | 10 | https://smithery.ai/server/@Aias/barnsworthburning-mcp | true | null | {
"scanPassed": true
} | [{'name': 'search', 'description': 'Search barnsworthburning.net for the given query', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'minLength': 2, 'description': 'The search query to look for on barnsworthburning.net'}}, 'additionalProperties': False}}] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.