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
|
---|---|---|---|---|---|---|---|---|---|
@inkdropapp/mcp-server | Inkdrop MCP Server | Retrieve, create, and manage your notes seamlessly with this server. Enhance your Inkdrop experience by integrating local HTTP server capabilities for efficient note handling. Access your notes and notebooks effortlessly through a standardized protocol. | 2025-03-10T11:00:44.729Z | 0 | https://smithery.ai/server/@inkdropapp/mcp-server | true | null | null | [{'name': 'read-note', 'description': 'Retrieve the complete contents of the note by its ID from the database.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['noteId'], 'properties': {'noteId': {'type': 'string', 'description': 'ID of the note to retrieve. It can be found as `_id` in the note docs. It always starts with `note:`.'}}, 'additionalProperties': False}}, {'name': 'search-notes', 'description': 'List all notes that contain a given keyword.\nThe result does not include entire note bodies as they are truncated in 200 characters.\nYou have to retrieve the full note content by calling `read-note`.\nHere are tips to specify keywords effectively:\n\n## Use special qualifiers to narrow down results\n\nYou can use special qualifiers to get more accurate results. See the qualifiers and their usage examples:\n\n- **book** \n `book:Blog`: Searches for notes in the \'Blog\' notebook.\n `book:"Desktop App"`: Searches for notes in the \'Desktop App\' notebook.\n- **bookId**\n `bookId:kGlLniaV`: Searches for notes in the notebook ID \'book:kGlLniaV\'.\n- **tag** \n `tag:JavaScript`: Searches for all notes having the \'JavaScript\' tag. Read more about [tags](https://docs.inkdrop.app/manual/write-notes#tag-notes).\n- **status** \n `status:onHold`: Searches for all notes with the \'On hold\' status. Read more about [statuses](/reference/note-statuses).\n- **title** \n `title:"JavaScript setTimeout"`: Searches for the note with the specified title.\n- **body** \n `body:KEYWORD`: Searches for a specific word in all notes. Equivalent to a [global search](#search-for-notes-across-all-notebooks).\n\n### Combine qualifiers\n\nYou can combine the filter qualifiers to refine data even more.\n\n**Find notes that contain the word \'Hello\' and have the \'Issue\' tag.**\n\n```text\nHello tag:Issue\n```\n\n**Find notes that contain the word \'Typescript,\' have the \'Contribution\' tag, and the \'Completed\' status**\n\n```text\nTypescript tag:Contribution status:Completed\n```\n\n## Search for text with spaces\n\nTo find the text that includes spaces, put the text into the double quotation marks ("):\n\n```text\n"database associations"\n```\n\n## Exclude text from search\n\nTo exclude text from the search results or ignore a specific qualifier, put the minus sign (-) before it. You can also combine the exclusions. See the examples:\n\n- `-book:Backend "closure functions"`: Ignores the \'Backend\' notebook while searching for the \'closure functions\' phrase.\n- `-tag:JavaScript`: Ignores all notes having the \'JavaScript\' tag.\n- `-book:Typescript tag:work "Data types"`: Ignores the \'Typescript\' notebook and the \'work\' tag while searching for the \'Data types\' phrase.\n- `-status:dropped title:"Sprint 10.0" debounce`: Ignores notes with the \'Dropped\' status while searching for the \'debounce\' word in the note with the \'Sprint 10.0\' title.\n- `-"Phrase to ignore" "in the rest of a sentence"`: Ignores the \'Phrase to ignore\' part while searching for \'in the rest of a sentence\'.\n\nNote that you can\'t specify excluding modifiers only without including conditions.\n\n**WARNING**: Make sure to enter a text to search for after the exclusion modifier.\n\n- ✅ Will work \n `-book:Backend "closure functions"`\n\n- ⛔️ Won\'t work \n `-book:Backend`. There\'s no query. Inkdrop doesn\'t understand what to search for.\n ', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['keyword'], 'properties': {'keyword': {'type': 'string', 'description': 'Keyword to search for.'}}, 'additionalProperties': False}}, {'name': 'list-notes', 'description': 'List all notes in a specified notebook with ID.\nThe result does not include entire note bodies as they are truncated in 200 characters.\nYou have to retrieve the full note content by calling `read-note`.\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['bookId'], 'properties': {'sort': {'enum': ['updatedAt', 'createdAt', 'title'], 'type': 'string', 'default': 'updatedAt', 'description': 'Sort the documents by the specified field'}, 'bookId': {'type': 'string', 'description': "ID of the notebook. It always starts with 'book:'. You can retrieve a list of notebooks with `list-notebooks`"}, 'tagIds': {'type': 'array', 'items': {'type': 'string'}, 'default': [], 'description': "An array of tag IDs to filter. It always starts with 'tag:'. You can retrieve a list of available tags from `list-tags`."}, 'keyword': {'type': 'string', 'description': 'Keyword to filter notes'}, 'descending': {'type': 'boolean', 'default': True, 'description': 'Reverse the order of the output documents'}}, 'additionalProperties': False}}, {'name': 'create-note', 'description': 'Create a new note in the database', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['bookId', 'title', 'body'], 'properties': {'body': {'type': 'string', 'maxLength': 1048576, 'description': 'The content of the note represented with Markdown'}, 'title': {'type': 'string', 'maxLength': 128, 'description': 'The note title'}, 'bookId': {'type': 'string', 'pattern': '^(book:|trash$)', 'maxLength': 128, 'minLength': 5, 'description': 'The notebook ID'}, 'status': {'enum': ['none', 'active', 'onHold', 'completed', 'dropped'], 'type': 'string', 'description': 'The status of the note'}}, 'additionalProperties': False}}, {'name': 'update-note', 'description': 'Update the existing note in the database. You should retrieve the existing note with `read-note` first. When updating the note, you must specify not only the changed fields but also all the un-changed fields.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['_id', '_rev', 'bookId', 'title', 'body'], 'properties': {'_id': {'type': 'string', 'pattern': '^note:', 'maxLength': 128, 'minLength': 6, 'description': 'The unique document ID which should start with `note:` and the remains are randomly generated string'}, '_rev': {'type': 'string', 'description': 'This is a CouchDB specific field. The current MVCC-token/revision of this document (mandatory and immutable).'}, 'body': {'type': 'string', 'maxLength': 1048576, 'description': 'The content of the note in Markdown. NOTE: Do not escape special characters like `\\n`.'}, 'title': {'type': 'string', 'maxLength': 128, 'description': 'The note title'}, 'bookId': {'type': 'string', 'pattern': '^(book:|trash$)', 'maxLength': 128, 'minLength': 5, 'description': 'The notebook ID'}, 'status': {'enum': ['none', 'active', 'onHold', 'completed', 'dropped'], 'type': 'string', 'description': 'The status of the note'}}, 'additionalProperties': False}}, {'name': 'list-notebooks', 'description': 'Retrieve a list of all notebooks', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-tags', 'description': 'Retrieve a list of all tags', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}] |
@inkdropapp/mcp-server | Inkdrop MCP Server | Retrieve, create, and manage your notes seamlessly with this server. Enhance your Inkdrop experience by integrating local HTTP server capabilities for efficient note handling. Access your notes and notebooks effortlessly through a standardized protocol. | 2025-03-10T11:00:44.729Z | 0 | https://smithery.ai/server/@inkdropapp/mcp-server | true | null | null | [{'name': 'read-note', 'description': 'Retrieve the complete contents of the note by its ID from the database.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['noteId'], 'properties': {'noteId': {'type': 'string', 'description': 'ID of the note to retrieve. It can be found as `_id` in the note docs. It always starts with `note:`.'}}, 'additionalProperties': False}}, {'name': 'search-notes', 'description': 'List all notes that contain a given keyword.\nThe result does not include entire note bodies as they are truncated in 200 characters.\nYou have to retrieve the full note content by calling `read-note`.\nHere are tips to specify keywords effectively:\n\n## Use special qualifiers to narrow down results\n\nYou can use special qualifiers to get more accurate results. See the qualifiers and their usage examples:\n\n- **book** \n `book:Blog`: Searches for notes in the \'Blog\' notebook.\n `book:"Desktop App"`: Searches for notes in the \'Desktop App\' notebook.\n- **bookId**\n `bookId:kGlLniaV`: Searches for notes in the notebook ID \'book:kGlLniaV\'.\n- **tag** \n `tag:JavaScript`: Searches for all notes having the \'JavaScript\' tag. Read more about [tags](https://docs.inkdrop.app/manual/write-notes#tag-notes).\n- **status** \n `status:onHold`: Searches for all notes with the \'On hold\' status. Read more about [statuses](/reference/note-statuses).\n- **title** \n `title:"JavaScript setTimeout"`: Searches for the note with the specified title.\n- **body** \n `body:KEYWORD`: Searches for a specific word in all notes. Equivalent to a [global search](#search-for-notes-across-all-notebooks).\n\n### Combine qualifiers\n\nYou can combine the filter qualifiers to refine data even more.\n\n**Find notes that contain the word \'Hello\' and have the \'Issue\' tag.**\n\n```text\nHello tag:Issue\n```\n\n**Find notes that contain the word \'Typescript,\' have the \'Contribution\' tag, and the \'Completed\' status**\n\n```text\nTypescript tag:Contribution status:Completed\n```\n\n## Search for text with spaces\n\nTo find the text that includes spaces, put the text into the double quotation marks ("):\n\n```text\n"database associations"\n```\n\n## Exclude text from search\n\nTo exclude text from the search results or ignore a specific qualifier, put the minus sign (-) before it. You can also combine the exclusions. See the examples:\n\n- `-book:Backend "closure functions"`: Ignores the \'Backend\' notebook while searching for the \'closure functions\' phrase.\n- `-tag:JavaScript`: Ignores all notes having the \'JavaScript\' tag.\n- `-book:Typescript tag:work "Data types"`: Ignores the \'Typescript\' notebook and the \'work\' tag while searching for the \'Data types\' phrase.\n- `-status:dropped title:"Sprint 10.0" debounce`: Ignores notes with the \'Dropped\' status while searching for the \'debounce\' word in the note with the \'Sprint 10.0\' title.\n- `-"Phrase to ignore" "in the rest of a sentence"`: Ignores the \'Phrase to ignore\' part while searching for \'in the rest of a sentence\'.\n\nNote that you can\'t specify excluding modifiers only without including conditions.\n\n**WARNING**: Make sure to enter a text to search for after the exclusion modifier.\n\n- ✅ Will work \n `-book:Backend "closure functions"`\n\n- ⛔️ Won\'t work \n `-book:Backend`. There\'s no query. Inkdrop doesn\'t understand what to search for.\n ', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['keyword'], 'properties': {'keyword': {'type': 'string', 'description': 'Keyword to search for.'}}, 'additionalProperties': False}}, {'name': 'list-notes', 'description': 'List all notes in a specified notebook with ID.\nThe result does not include entire note bodies as they are truncated in 200 characters.\nYou have to retrieve the full note content by calling `read-note`.\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['bookId'], 'properties': {'sort': {'enum': ['updatedAt', 'createdAt', 'title'], 'type': 'string', 'default': 'updatedAt', 'description': 'Sort the documents by the specified field'}, 'bookId': {'type': 'string', 'description': "ID of the notebook. It always starts with 'book:'. You can retrieve a list of notebooks with `list-notebooks`"}, 'tagIds': {'type': 'array', 'items': {'type': 'string'}, 'default': [], 'description': "An array of tag IDs to filter. It always starts with 'tag:'. You can retrieve a list of available tags from `list-tags`."}, 'keyword': {'type': 'string', 'description': 'Keyword to filter notes'}, 'descending': {'type': 'boolean', 'default': True, 'description': 'Reverse the order of the output documents'}}, 'additionalProperties': False}}, {'name': 'create-note', 'description': 'Create a new note in the database', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['bookId', 'title', 'body'], 'properties': {'body': {'type': 'string', 'maxLength': 1048576, 'description': 'The content of the note represented with Markdown'}, 'title': {'type': 'string', 'maxLength': 128, 'description': 'The note title'}, 'bookId': {'type': 'string', 'pattern': '^(book:|trash$)', 'maxLength': 128, 'minLength': 5, 'description': 'The notebook ID'}, 'status': {'enum': ['none', 'active', 'onHold', 'completed', 'dropped'], 'type': 'string', 'description': 'The status of the note'}}, 'additionalProperties': False}}, {'name': 'update-note', 'description': 'Update the existing note in the database. You should retrieve the existing note with `read-note` first. When updating the note, you must specify not only the changed fields but also all the un-changed fields.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['_id', '_rev', 'bookId', 'title', 'body'], 'properties': {'_id': {'type': 'string', 'pattern': '^note:', 'maxLength': 128, 'minLength': 6, 'description': 'The unique document ID which should start with `note:` and the remains are randomly generated string'}, '_rev': {'type': 'string', 'description': 'This is a CouchDB specific field. The current MVCC-token/revision of this document (mandatory and immutable).'}, 'body': {'type': 'string', 'maxLength': 1048576, 'description': 'The content of the note in Markdown. NOTE: Do not escape special characters like `\\n`.'}, 'title': {'type': 'string', 'maxLength': 128, 'description': 'The note title'}, 'bookId': {'type': 'string', 'pattern': '^(book:|trash$)', 'maxLength': 128, 'minLength': 5, 'description': 'The notebook ID'}, 'status': {'enum': ['none', 'active', 'onHold', 'completed', 'dropped'], 'type': 'string', 'description': 'The status of the note'}}, 'additionalProperties': False}}, {'name': 'list-notebooks', 'description': 'Retrieve a list of all notebooks', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-tags', 'description': 'Retrieve a list of all tags', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}] |
@crazyrabbitLTC/mcp-ethersjs-server | Ethers Wallet | Provide Ethereum wallet functionality to your applications. Create, manage, and interact with wallets and contracts seamlessly using the Model Context Protocol. | 2025-04-04T11:41:04.509Z | 0 | https://smithery.ai/server/@crazyrabbitLTC/mcp-ethersjs-server | true | null | {
"scanPassed": true
} | [{'name': 'getSupportedNetworks', 'description': 'Get a list of all supported networks and their configurations. For more detailed information about networks, use the getAllNetworks and getNetwork tools.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'getBlockNumber', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getGasPrice', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getFeeData', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'generateWallet', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'saveToEnv': {'type': 'boolean', 'description': "Optional. If true, the private key will be saved to the server's environment variables for future use. Default is false."}}, 'additionalProperties': False}}, {'name': 'loadWallet', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey'], 'properties': {'saveToEnv': {'type': 'boolean', 'description': "Optional. If true, the private key will be saved to the server's environment variables for this session. Default is true."}, 'privateKey': {'type': 'string', 'description': "The private key of the wallet to load. Should start with '0x'."}}, 'additionalProperties': False}}, {'name': 'checkWalletExists', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getWalletBalance', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to query'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'formatEther', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['wei'], 'properties': {'wei': {'type': 'string', 'description': 'The wei value to format'}}, 'additionalProperties': False}}, {'name': 'parseEther', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ether'], 'properties': {'ether': {'type': 'string', 'description': 'The ether value to parse'}}, 'additionalProperties': False}}, {'name': 'formatUnits', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['value', 'unit'], 'properties': {'unit': {'type': ['string', 'number'], 'description': "The number of decimals or unit name (e.g., 'gwei', 18)"}, 'value': {'type': 'string', 'description': 'The value to format'}}, 'additionalProperties': False}}, {'name': 'getWalletTransactionCount', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to query'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getBlockDetails', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['blockTag'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'blockTag': {'type': ['string', 'number'], 'description': "The block number or the string 'latest'"}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getTransactionDetails', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'The transaction hash to lookup'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getContractCode', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': "The contract's address"}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'contractCall', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'abi', 'method'], 'properties': {'abi': {'type': 'string', 'description': 'The ABI of the contract function to call, in JSON format'}, 'args': {'type': 'array', 'description': 'Optional. The arguments to pass to the contract function'}, 'method': {'type': 'string', 'description': 'The name of the method to call'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'contractAddress': {'type': 'string', 'description': 'The address of the contract to call'}}, 'additionalProperties': False}}, {'name': 'signMessage', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['message'], 'properties': {'message': {'type': 'string', 'description': 'The message to sign'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'ethSign', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['data'], 'properties': {'data': {'type': 'string', 'description': 'The data to sign. Will be converted to hex if not already in hex format.'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'resolveName', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'The ENS name to resolve'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'lookupAddress', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to resolve'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'sendTransaction', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['to', 'value'], 'properties': {'to': {'type': 'string', 'description': 'The Ethereum address to send to'}, 'data': {'type': 'string', 'description': 'Optional. The hex data to include in the transaction'}, 'value': {'type': 'string', 'description': 'The amount to send in ether'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'mockMode': {'type': 'boolean', 'default': False, 'description': 'Optional. If true, just simulates the transaction without sending it. Default is false.'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'sendTransactionWithOptions', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['to', 'value'], 'properties': {'to': {'type': 'string', 'description': 'The Ethereum address to send to'}, 'data': {'type': 'string', 'description': 'Optional. The hex data to include in the transaction'}, 'nonce': {'type': 'number', 'description': 'Optional. The nonce to use for the transaction'}, 'value': {'type': 'string', 'description': 'The amount to send in ether'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'gasLimit': {'type': 'string', 'description': 'Optional. The gas limit for the transaction'}, 'mockMode': {'type': 'boolean', 'default': False, 'description': 'Optional. If true, just simulates the transaction without sending it. Default is false.'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'maxFeePerGas': {'type': 'string', 'description': 'Optional. The maximum fee per gas (in gwei)'}, 'maxPriorityFeePerGas': {'type': 'string', 'description': 'Optional. The maximum priority fee per gas (in gwei)'}}, 'additionalProperties': False}}, {'name': 'getERC20TokenInfo', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}}, 'additionalProperties': False}}, {'name': 'erc20_getTokenInfo', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}}, 'additionalProperties': False}}, {'name': 'getERC20Balance', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'ownerAddress': {'type': 'string', 'description': 'The Ethereum address whose balance to check'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}}, 'additionalProperties': False}}, {'name': 'erc20_balanceOf', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'ownerAddress': {'type': 'string', 'description': 'The Ethereum address whose balance to check'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}}, 'additionalProperties': False}}, {'name': 'getERC20Allowance', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress', 'spenderAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'ownerAddress': {'type': 'string', 'description': 'The Ethereum address that owns the tokens'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}, 'spenderAddress': {'type': 'string', 'description': 'The Ethereum address that is approved to spend tokens'}}, 'additionalProperties': False}}, {'name': 'transferERC20', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'recipientAddress', 'amount'], 'properties': {'amount': {'type': 'string', 'description': "The amount of tokens to transfer (can be decimal, e.g. '1.5')"}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'gasLimit': {'type': 'string'}, 'gasPrice': {'type': 'string'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}, 'recipientAddress': {'type': 'string', 'description': 'The Ethereum address to receive the tokens'}}, 'additionalProperties': False}}, {'name': 'approveERC20', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'spenderAddress', 'amount'], 'properties': {'amount': {'type': 'string', 'description': "The amount of tokens to transfer (can be decimal, e.g. '1.5')"}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'gasLimit': {'type': 'string'}, 'gasPrice': {'type': 'string'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}, 'spenderAddress': {'type': 'string', 'description': 'The Ethereum address to approve for spending tokens'}}, 'additionalProperties': False}}, {'name': 'getNFTInfo', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'getNFTOwner', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': ['string', 'number'], 'description': 'The ID of the token to check'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'erc721_balanceOf', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'ownerAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address to check balance for'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'getNFTTokenURI', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': ['string', 'number'], 'description': 'The ID of the token to get the URI for'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'erc721_tokenURI', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': ['string', 'number'], 'description': 'The ID of the token to get the URI for'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'getNFTMetadata', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number'}, 'tokenId': {'type': ['string', 'number']}, 'provider': {'type': 'string'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}}, 'additionalProperties': False}}, {'name': 'transferNFT', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId', 'to'], 'properties': {'to': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}, 'chainId': {'type': 'number'}, 'tokenId': {'type': ['string', 'number']}, 'provider': {'type': 'string'}, 'gasOptions': {'type': 'object', 'properties': {'nonce': {'type': 'number'}, 'value': {'type': 'string'}, 'gasLimit': {'type': 'number'}, 'gasPrice': {'type': 'number'}, 'maxFeePerGas': {'type': 'number'}, 'maxPriorityFeePerGas': {'type': 'number'}}, 'additionalProperties': False}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}}, 'additionalProperties': False}}, {'name': 'approveNFT', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId', 'approved'], 'properties': {'chainId': {'type': 'number'}, 'tokenId': {'type': ['string', 'number']}, 'approved': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}, 'provider': {'type': 'string'}, 'gasOptions': {'type': 'object', 'properties': {'nonce': {'type': 'number'}, 'value': {'type': 'string'}, 'gasLimit': {'type': 'number'}, 'gasPrice': {'type': 'number'}, 'maxFeePerGas': {'type': 'number'}, 'maxPriorityFeePerGas': {'type': 'number'}}, 'additionalProperties': False}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}}, 'additionalProperties': False}}, {'name': 'setNFTApprovalForAll', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'operator', 'approved'], 'properties': {'chainId': {'type': 'number'}, 'approved': {'type': 'boolean'}, 'operator': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}, 'provider': {'type': 'string'}, 'gasOptions': {'type': 'object', 'properties': {'nonce': {'type': 'number'}, 'value': {'type': 'string'}, 'gasLimit': {'type': 'number'}, 'gasPrice': {'type': 'number'}, 'maxFeePerGas': {'type': 'number'}, 'maxPriorityFeePerGas': {'type': 'number'}}, 'additionalProperties': False}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}}, 'additionalProperties': False}}, {'name': 'erc1155_balanceOf', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': 'string', 'description': 'The ID of the token to query'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'ownerAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address to check balance for'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC1155 contract'}}, 'additionalProperties': False}}, {'name': 'erc1155_uri', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': 'string', 'description': 'The ID of the token to query'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC1155 contract'}}, 'additionalProperties': False}}, {'name': 'erc1155_balanceOfBatch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddresses', 'tokenIds'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenIds': {'type': 'array', 'items': {'type': 'string', 'description': 'The ID of the token to query'}, 'description': 'Array of token IDs to check balances for'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC1155 contract'}, 'ownerAddresses': {'type': 'array', 'items': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'An Ethereum address'}, 'description': 'Array of addresses to check balances for'}}, 'additionalProperties': False}}, {'name': 'getAllNetworks', 'description': "Get information about all available blockchain networks. Use this to identify network names, chain IDs, and RPC URLs that can be used with other Ethereum tools. When using other tools with a 'provider' parameter, you can specify any of these network names.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'getNetwork', 'description': "Get detailed information about a specific blockchain network. This provides the network's chain ID, native token, and RPC URL that can be used with other Ethereum tools. This network name can be used as the 'provider' parameter in other tools.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': "The name of the network to get details for (case-insensitive, e.g., 'ethereum', 'polygon', 'arbitrum')"}}, 'additionalProperties': False}}, {'name': 'listPrompts', 'description': 'List all available prompts in the system', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'getEnsResolutionGuidance', 'description': 'Get guidance for resolving ENS names across networks and performing operations', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ensName', 'targetNetwork', 'operation'], 'properties': {'ensName': {'type': 'string', 'description': "The ENS name to resolve (e.g., 'vitalik.eth')"}, 'operation': {'enum': ['balance', 'txCount', 'code'], 'type': 'string', 'description': "The operation to perform: 'balance' for ETH balance, 'txCount' for transaction count, 'code' for contract code"}, 'targetNetwork': {'type': 'string', 'description': "The target network to perform operations on (e.g., 'MEGA Testnet', 'Optimism')"}}, 'additionalProperties': False}}] |
@crazyrabbitLTC/mcp-ethersjs-server | Ethers Wallet | Provide Ethereum wallet functionality to your applications. Create, manage, and interact with wallets and contracts seamlessly using the Model Context Protocol. | 2025-04-04T11:41:04.509Z | 0 | https://smithery.ai/server/@crazyrabbitLTC/mcp-ethersjs-server | true | null | {
"scanPassed": true
} | [{'name': 'getSupportedNetworks', 'description': 'Get a list of all supported networks and their configurations. For more detailed information about networks, use the getAllNetworks and getNetwork tools.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'getBlockNumber', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getGasPrice', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getFeeData', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'generateWallet', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'saveToEnv': {'type': 'boolean', 'description': "Optional. If true, the private key will be saved to the server's environment variables for future use. Default is false."}}, 'additionalProperties': False}}, {'name': 'loadWallet', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey'], 'properties': {'saveToEnv': {'type': 'boolean', 'description': "Optional. If true, the private key will be saved to the server's environment variables for this session. Default is true."}, 'privateKey': {'type': 'string', 'description': "The private key of the wallet to load. Should start with '0x'."}}, 'additionalProperties': False}}, {'name': 'checkWalletExists', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getWalletBalance', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to query'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'formatEther', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['wei'], 'properties': {'wei': {'type': 'string', 'description': 'The wei value to format'}}, 'additionalProperties': False}}, {'name': 'parseEther', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ether'], 'properties': {'ether': {'type': 'string', 'description': 'The ether value to parse'}}, 'additionalProperties': False}}, {'name': 'formatUnits', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['value', 'unit'], 'properties': {'unit': {'type': ['string', 'number'], 'description': "The number of decimals or unit name (e.g., 'gwei', 18)"}, 'value': {'type': 'string', 'description': 'The value to format'}}, 'additionalProperties': False}}, {'name': 'getWalletTransactionCount', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to query'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getBlockDetails', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['blockTag'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'blockTag': {'type': ['string', 'number'], 'description': "The block number or the string 'latest'"}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getTransactionDetails', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'The transaction hash to lookup'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'getContractCode', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': "The contract's address"}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'contractCall', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'abi', 'method'], 'properties': {'abi': {'type': 'string', 'description': 'The ABI of the contract function to call, in JSON format'}, 'args': {'type': 'array', 'description': 'Optional. The arguments to pass to the contract function'}, 'method': {'type': 'string', 'description': 'The name of the method to call'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'contractAddress': {'type': 'string', 'description': 'The address of the contract to call'}}, 'additionalProperties': False}}, {'name': 'signMessage', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['message'], 'properties': {'message': {'type': 'string', 'description': 'The message to sign'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'ethSign', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['data'], 'properties': {'data': {'type': 'string', 'description': 'The data to sign. Will be converted to hex if not already in hex format.'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'resolveName', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'The ENS name to resolve'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'lookupAddress', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to resolve'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'sendTransaction', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['to', 'value'], 'properties': {'to': {'type': 'string', 'description': 'The Ethereum address to send to'}, 'data': {'type': 'string', 'description': 'Optional. The hex data to include in the transaction'}, 'value': {'type': 'string', 'description': 'The amount to send in ether'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'mockMode': {'type': 'boolean', 'default': False, 'description': 'Optional. If true, just simulates the transaction without sending it. Default is false.'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}}, 'additionalProperties': False}}, {'name': 'sendTransactionWithOptions', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['to', 'value'], 'properties': {'to': {'type': 'string', 'description': 'The Ethereum address to send to'}, 'data': {'type': 'string', 'description': 'Optional. The hex data to include in the transaction'}, 'nonce': {'type': 'number', 'description': 'Optional. The nonce to use for the transaction'}, 'value': {'type': 'string', 'description': 'The amount to send in ether'}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'gasLimit': {'type': 'string', 'description': 'Optional. The gas limit for the transaction'}, 'mockMode': {'type': 'boolean', 'default': False, 'description': 'Optional. If true, just simulates the transaction without sending it. Default is false.'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'maxFeePerGas': {'type': 'string', 'description': 'Optional. The maximum fee per gas (in gwei)'}, 'maxPriorityFeePerGas': {'type': 'string', 'description': 'Optional. The maximum priority fee per gas (in gwei)'}}, 'additionalProperties': False}}, {'name': 'getERC20TokenInfo', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}}, 'additionalProperties': False}}, {'name': 'erc20_getTokenInfo', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}}, 'additionalProperties': False}}, {'name': 'getERC20Balance', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'ownerAddress': {'type': 'string', 'description': 'The Ethereum address whose balance to check'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}}, 'additionalProperties': False}}, {'name': 'erc20_balanceOf', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'ownerAddress': {'type': 'string', 'description': 'The Ethereum address whose balance to check'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}}, 'additionalProperties': False}}, {'name': 'getERC20Allowance', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress', 'spenderAddress'], 'properties': {'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'ownerAddress': {'type': 'string', 'description': 'The Ethereum address that owns the tokens'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}, 'spenderAddress': {'type': 'string', 'description': 'The Ethereum address that is approved to spend tokens'}}, 'additionalProperties': False}}, {'name': 'transferERC20', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'recipientAddress', 'amount'], 'properties': {'amount': {'type': 'string', 'description': "The amount of tokens to transfer (can be decimal, e.g. '1.5')"}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'gasLimit': {'type': 'string'}, 'gasPrice': {'type': 'string'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}, 'recipientAddress': {'type': 'string', 'description': 'The Ethereum address to receive the tokens'}}, 'additionalProperties': False}}, {'name': 'approveERC20', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'spenderAddress', 'amount'], 'properties': {'amount': {'type': 'string', 'description': "The amount of tokens to transfer (can be decimal, e.g. '1.5')"}, 'chainId': {'type': 'number', 'description': "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used."}, 'gasLimit': {'type': 'string'}, 'gasPrice': {'type': 'string'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'description': 'The address of the ERC20 token contract'}, 'spenderAddress': {'type': 'string', 'description': 'The Ethereum address to approve for spending tokens'}}, 'additionalProperties': False}}, {'name': 'getNFTInfo', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'getNFTOwner', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': ['string', 'number'], 'description': 'The ID of the token to check'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'erc721_balanceOf', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'ownerAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address to check balance for'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'getNFTTokenURI', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': ['string', 'number'], 'description': 'The ID of the token to get the URI for'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'erc721_tokenURI', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': ['string', 'number'], 'description': 'The ID of the token to get the URI for'}, 'provider': {'type': 'string', 'description': 'Optional. The provider to use. If not provided, the default provider is used.'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC721 contract'}}, 'additionalProperties': False}}, {'name': 'getNFTMetadata', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number'}, 'tokenId': {'type': ['string', 'number']}, 'provider': {'type': 'string'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}}, 'additionalProperties': False}}, {'name': 'transferNFT', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId', 'to'], 'properties': {'to': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}, 'chainId': {'type': 'number'}, 'tokenId': {'type': ['string', 'number']}, 'provider': {'type': 'string'}, 'gasOptions': {'type': 'object', 'properties': {'nonce': {'type': 'number'}, 'value': {'type': 'string'}, 'gasLimit': {'type': 'number'}, 'gasPrice': {'type': 'number'}, 'maxFeePerGas': {'type': 'number'}, 'maxPriorityFeePerGas': {'type': 'number'}}, 'additionalProperties': False}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}}, 'additionalProperties': False}}, {'name': 'approveNFT', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'tokenId', 'approved'], 'properties': {'chainId': {'type': 'number'}, 'tokenId': {'type': ['string', 'number']}, 'approved': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}, 'provider': {'type': 'string'}, 'gasOptions': {'type': 'object', 'properties': {'nonce': {'type': 'number'}, 'value': {'type': 'string'}, 'gasLimit': {'type': 'number'}, 'gasPrice': {'type': 'number'}, 'maxFeePerGas': {'type': 'number'}, 'maxPriorityFeePerGas': {'type': 'number'}}, 'additionalProperties': False}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}}, 'additionalProperties': False}}, {'name': 'setNFTApprovalForAll', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'operator', 'approved'], 'properties': {'chainId': {'type': 'number'}, 'approved': {'type': 'boolean'}, 'operator': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}, 'provider': {'type': 'string'}, 'gasOptions': {'type': 'object', 'properties': {'nonce': {'type': 'number'}, 'value': {'type': 'string'}, 'gasLimit': {'type': 'number'}, 'gasPrice': {'type': 'number'}, 'maxFeePerGas': {'type': 'number'}, 'maxPriorityFeePerGas': {'type': 'number'}}, 'additionalProperties': False}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$'}}, 'additionalProperties': False}}, {'name': 'erc1155_balanceOf', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': 'string', 'description': 'The ID of the token to query'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'ownerAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address to check balance for'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC1155 contract'}}, 'additionalProperties': False}}, {'name': 'erc1155_uri', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'tokenId'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'tokenId': {'type': 'string', 'description': 'The ID of the token to query'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC1155 contract'}}, 'additionalProperties': False}}, {'name': 'erc1155_balanceOfBatch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddresses', 'tokenIds'], 'properties': {'chainId': {'type': 'number', 'description': 'Optional. The chain ID to use.'}, 'provider': {'type': 'string', 'description': 'Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.'}, 'tokenIds': {'type': 'array', 'items': {'type': 'string', 'description': 'The ID of the token to query'}, 'description': 'Array of token IDs to check balances for'}, 'tokenAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'The address of the ERC1155 contract'}, 'ownerAddresses': {'type': 'array', 'items': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': 'An Ethereum address'}, 'description': 'Array of addresses to check balances for'}}, 'additionalProperties': False}}, {'name': 'getAllNetworks', 'description': "Get information about all available blockchain networks. Use this to identify network names, chain IDs, and RPC URLs that can be used with other Ethereum tools. When using other tools with a 'provider' parameter, you can specify any of these network names.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'getNetwork', 'description': "Get detailed information about a specific blockchain network. This provides the network's chain ID, native token, and RPC URL that can be used with other Ethereum tools. This network name can be used as the 'provider' parameter in other tools.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': "The name of the network to get details for (case-insensitive, e.g., 'ethereum', 'polygon', 'arbitrum')"}}, 'additionalProperties': False}}, {'name': 'listPrompts', 'description': 'List all available prompts in the system', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'getEnsResolutionGuidance', 'description': 'Get guidance for resolving ENS names across networks and performing operations', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ensName', 'targetNetwork', 'operation'], 'properties': {'ensName': {'type': 'string', 'description': "The ENS name to resolve (e.g., 'vitalik.eth')"}, 'operation': {'enum': ['balance', 'txCount', 'code'], 'type': 'string', 'description': "The operation to perform: 'balance' for ETH balance, 'txCount' for transaction count, 'code' for contract code"}, 'targetNetwork': {'type': 'string', 'description': "The target network to perform operations on (e.g., 'MEGA Testnet', 'Optimism')"}}, 'additionalProperties': False}}] |
@joleyline/mcp-memory-libsql | Persistent Memory System | Leverage high-performance vector search and efficient knowledge storage to enhance your applications. Manage entities and relations seamlessly with secure token-based authentication for remote databases. Experience advanced semantic search capabilities powered by libSQL. | 2025-03-11T09:01:19.053Z | 0 | https://smithery.ai/server/@joleyline/mcp-memory-libsql | true | null | null | [{'name': 'create_entities', 'description': 'Create new entities with observations and optional embeddings', 'inputSchema': {'type': 'object', 'required': ['entities'], 'properties': {'entities': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'entityType', 'observations'], 'properties': {'name': {'type': 'string'}, 'embedding': {'type': 'array', 'items': {'type': 'number'}, 'description': 'Optional vector embedding for similarity search'}, 'relations': {'type': 'array', 'items': {'type': 'object', 'required': ['target', 'relationType'], 'properties': {'target': {'type': 'string'}, 'relationType': {'type': 'string'}}}, 'description': 'Optional relations to create with this entity'}, 'entityType': {'type': 'string'}, 'observations': {'type': 'array', 'items': {'type': 'string'}}}}}}}}, {'name': 'search_nodes', 'description': 'Search for entities and their relations using text or vector similarity', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'oneOf': [{'type': 'string', 'description': 'Text search query'}, {'type': 'array', 'items': {'type': 'number'}, 'description': 'Vector for similarity search'}]}, 'includeEmbeddings': {'type': 'boolean', 'description': 'Whether to include embeddings in the returned entities (default: false)'}}}}, {'name': 'read_graph', 'description': 'Get recent entities and their relations', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'includeEmbeddings': {'type': 'boolean', 'description': 'Whether to include embeddings in the returned entities (default: false)'}}}}, {'name': 'create_relations', 'description': 'Create relations between entities', 'inputSchema': {'type': 'object', 'required': ['relations'], 'properties': {'relations': {'type': 'array', 'items': {'type': 'object', 'required': ['source', 'target', 'type'], 'properties': {'type': {'type': 'string'}, 'source': {'type': 'string'}, 'target': {'type': 'string'}}}}}}}, {'name': 'delete_entity', 'description': 'Delete an entity and all its associated data (observations and relations)', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the entity to delete'}}}}, {'name': 'delete_relation', 'description': 'Delete a specific relation between entities', 'inputSchema': {'type': 'object', 'required': ['source', 'target', 'type'], 'properties': {'type': {'type': 'string', 'description': 'Type of relation'}, 'source': {'type': 'string', 'description': 'Source entity name'}, 'target': {'type': 'string', 'description': 'Target entity name'}}}}] |
@joleyline/mcp-memory-libsql | Persistent Memory System | Leverage high-performance vector search and efficient knowledge storage to enhance your applications. Manage entities and relations seamlessly with secure token-based authentication for remote databases. Experience advanced semantic search capabilities powered by libSQL. | 2025-03-11T09:01:19.053Z | 0 | https://smithery.ai/server/@joleyline/mcp-memory-libsql | true | null | null | [{'name': 'create_entities', 'description': 'Create new entities with observations and optional embeddings', 'inputSchema': {'type': 'object', 'required': ['entities'], 'properties': {'entities': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'entityType', 'observations'], 'properties': {'name': {'type': 'string'}, 'embedding': {'type': 'array', 'items': {'type': 'number'}, 'description': 'Optional vector embedding for similarity search'}, 'relations': {'type': 'array', 'items': {'type': 'object', 'required': ['target', 'relationType'], 'properties': {'target': {'type': 'string'}, 'relationType': {'type': 'string'}}}, 'description': 'Optional relations to create with this entity'}, 'entityType': {'type': 'string'}, 'observations': {'type': 'array', 'items': {'type': 'string'}}}}}}}}, {'name': 'search_nodes', 'description': 'Search for entities and their relations using text or vector similarity', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'oneOf': [{'type': 'string', 'description': 'Text search query'}, {'type': 'array', 'items': {'type': 'number'}, 'description': 'Vector for similarity search'}]}, 'includeEmbeddings': {'type': 'boolean', 'description': 'Whether to include embeddings in the returned entities (default: false)'}}}}, {'name': 'read_graph', 'description': 'Get recent entities and their relations', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'includeEmbeddings': {'type': 'boolean', 'description': 'Whether to include embeddings in the returned entities (default: false)'}}}}, {'name': 'create_relations', 'description': 'Create relations between entities', 'inputSchema': {'type': 'object', 'required': ['relations'], 'properties': {'relations': {'type': 'array', 'items': {'type': 'object', 'required': ['source', 'target', 'type'], 'properties': {'type': {'type': 'string'}, 'source': {'type': 'string'}, 'target': {'type': 'string'}}}}}}}, {'name': 'delete_entity', 'description': 'Delete an entity and all its associated data (observations and relations)', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the entity to delete'}}}}, {'name': 'delete_relation', 'description': 'Delete a specific relation between entities', 'inputSchema': {'type': 'object', 'required': ['source', 'target', 'type'], 'properties': {'type': {'type': 'string', 'description': 'Type of relation'}, 'source': {'type': 'string', 'description': 'Source entity name'}, 'target': {'type': 'string', 'description': 'Target entity name'}}}}] |
@kwen1510/nltk-map | NLTK Model Context Protocol Server | Integrate NLTK with external data and tools seamlessly. Enhance your natural language processing capabilities by leveraging real-world data and actions through a standardized interface. | 2025-03-08T07:04:58.768Z | 0 | https://smithery.ai/server/@kwen1510/nltk-map | true | null | {
"scanPassed": true
} | [{'name': 'get_longest_word', 'description': "Reads words from 'corpora.txt', filters them using the letters in `letters_array`, excludes those in `used_words`, and returns the longest valid word.", 'inputSchema': {'type': 'object', 'required': ['used_words', 'letters_array'], 'properties': {'used_words': {'type': 'array', 'items': {'type': 'string'}, 'description': "List of words already used (these won't be returned)"}, 'letters_array': {'type': 'array', 'items': {'type': 'string'}, 'description': "List of allowed letters (e.g. ['a', 'p', 'l', 'e'])"}}}}] |
@kwen1510/nltk-map | NLTK Model Context Protocol Server | Integrate NLTK with external data and tools seamlessly. Enhance your natural language processing capabilities by leveraging real-world data and actions through a standardized interface. | 2025-03-08T07:04:58.768Z | 0 | https://smithery.ai/server/@kwen1510/nltk-map | true | null | {
"scanPassed": true
} | [{'name': 'get_longest_word', 'description': "Reads words from 'corpora.txt', filters them using the letters in `letters_array`, excludes those in `used_words`, and returns the longest valid word.", 'inputSchema': {'type': 'object', 'required': ['used_words', 'letters_array'], 'properties': {'used_words': {'type': 'array', 'items': {'type': 'string'}, 'description': "List of words already used (these won't be returned)"}, 'letters_array': {'type': 'array', 'items': {'type': 'string'}, 'description': "List of allowed letters (e.g. ['a', 'p', 'l', 'e'])"}}}}] |
marginalia-mcp-server | Marginalia | Access the Marginalia Search API for non-commercial content search. | 2025-01-05T12:45:59.267Z | 0 | https://smithery.ai/server/marginalia-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'search-marginalia', 'description': 'Search the web using Marginalia Search', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'count': {'type': 'number', 'maximum': 100, 'minimum': 1, 'description': 'Number of results to return'}, 'index': {'type': 'number', 'minimum': 0, 'description': 'Search index (corresponds to dropdown in main GUI)'}, 'query': {'type': 'string', 'description': 'Search query'}}}}] |
marginalia-mcp-server | Marginalia | Access the Marginalia Search API for non-commercial content search. | 2025-01-05T12:45:59.267Z | 0 | https://smithery.ai/server/marginalia-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'search-marginalia', 'description': 'Search the web using Marginalia Search', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'count': {'type': 'number', 'maximum': 100, 'minimum': 1, 'description': 'Number of results to return'}, 'index': {'type': 'number', 'minimum': 0, 'description': 'Search index (corresponds to dropdown in main GUI)'}, 'query': {'type': 'string', 'description': 'Search query'}}}}] |
@adarshem/mcp-server-learn | Weather Server | Provide real-time weather alerts and forecasts for US locations using official National Weather Service data. Enable applications to retrieve accurate weather information dynamically through simple tool calls. Enhance your projects with up-to-date weather context seamlessly integrated via MCP. | 2025-04-28T02:41:35.223Z | 0 | https://smithery.ai/server/@adarshem/mcp-server-learn | true | null | {
"scanPassed": true
} | [{'name': 'get-alerts', 'description': 'Get weather alerts for a state', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['state'], 'properties': {'state': {'type': 'string', 'maxLength': 2, 'minLength': 2, 'description': 'Two-letter state code (e.g. CA, NY)'}}, 'additionalProperties': False}}, {'name': 'get-forecast', 'description': 'Get weather forecast for a location', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['latitude', 'longitude'], 'properties': {'latitude': {'type': 'number', 'maximum': 90, 'minimum': -90, 'description': 'Latitude of the location'}, 'longitude': {'type': 'number', 'maximum': 180, 'minimum': -180, 'description': 'Longitude of the location'}}, 'additionalProperties': False}}] |
@adarshem/mcp-server-learn | Weather Server | Provide real-time weather alerts and forecasts for US locations using official National Weather Service data. Enable applications to retrieve accurate weather information dynamically through simple tool calls. Enhance your projects with up-to-date weather context seamlessly integrated via MCP. | 2025-04-28T02:41:35.223Z | 0 | https://smithery.ai/server/@adarshem/mcp-server-learn | true | null | {
"scanPassed": true
} | [{'name': 'get-alerts', 'description': 'Get weather alerts for a state', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['state'], 'properties': {'state': {'type': 'string', 'maxLength': 2, 'minLength': 2, 'description': 'Two-letter state code (e.g. CA, NY)'}}, 'additionalProperties': False}}, {'name': 'get-forecast', 'description': 'Get weather forecast for a location', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['latitude', 'longitude'], 'properties': {'latitude': {'type': 'number', 'maximum': 90, 'minimum': -90, 'description': 'Latitude of the location'}, 'longitude': {'type': 'number', 'maximum': 180, 'minimum': -180, 'description': 'Longitude of the location'}}, 'additionalProperties': False}}] |
@GongRzhe/Langflow-DOC-QA-SERVER | Document Q&A Server | Query documents effortlessly using a powerful Q&A system. Leverage Langflow to interact with your documents and get precise answers quickly. Simplify your document management and enhance your productivity with this intuitive interface. | 2025-03-14T17:00:49.318Z | 0 | https://smithery.ai/server/@GongRzhe/Langflow-DOC-QA-SERVER | true | null | {
"scanPassed": true
} | [{'name': 'query_docs', 'description': 'Query the document Q&A system with a prompt', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The query prompt to search for in the documents'}}}}] |
@GongRzhe/Langflow-DOC-QA-SERVER | Document Q&A Server | Query documents effortlessly using a powerful Q&A system. Leverage Langflow to interact with your documents and get precise answers quickly. Simplify your document management and enhance your productivity with this intuitive interface. | 2025-03-14T17:00:49.318Z | 0 | https://smithery.ai/server/@GongRzhe/Langflow-DOC-QA-SERVER | true | null | {
"scanPassed": true
} | [{'name': 'query_docs', 'description': 'Query the document Q&A system with a prompt', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The query prompt to search for in the documents'}}}}] |
@jhj0517/mcp-python-tutorial | Python MCP Tutorial Server | Set up a local MCP server to interact with a simple database and mock data. Easily create and manage resources like users and posts while leveraging reusable prompts for efficient LLM interactions. Get started quickly with a straightforward installation and configuration process. | 2025-03-28T21:01:04.993Z | 0 | https://smithery.ai/server/@jhj0517/mcp-python-tutorial | true | null | {
"scanPassed": true
} | [{'name': 'create_user', 'description': 'Create a new user with the given username and email', 'inputSchema': {'type': 'object', 'title': 'create_userArguments', 'required': ['username', 'email'], 'properties': {'email': {'type': 'string', 'title': 'Email'}, 'username': {'type': 'string', 'title': 'Username'}}}}, {'name': 'create_post', 'description': 'Create a new post with the given title, content, and user ID', 'inputSchema': {'type': 'object', 'title': 'create_postArguments', 'required': ['title', 'content', 'user_id'], 'properties': {'title': {'type': 'string', 'title': 'Title'}, 'content': {'type': 'string', 'title': 'Content'}, 'user_id': {'type': 'integer', 'title': 'User Id'}}}}, {'name': 'search_posts', 'description': 'Search posts by title or content', 'inputSchema': {'type': 'object', 'title': 'search_postsArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}] |
@jhj0517/mcp-python-tutorial | Python MCP Tutorial Server | Set up a local MCP server to interact with a simple database and mock data. Easily create and manage resources like users and posts while leveraging reusable prompts for efficient LLM interactions. Get started quickly with a straightforward installation and configuration process. | 2025-03-28T21:01:04.993Z | 0 | https://smithery.ai/server/@jhj0517/mcp-python-tutorial | true | null | {
"scanPassed": true
} | [{'name': 'create_user', 'description': 'Create a new user with the given username and email', 'inputSchema': {'type': 'object', 'title': 'create_userArguments', 'required': ['username', 'email'], 'properties': {'email': {'type': 'string', 'title': 'Email'}, 'username': {'type': 'string', 'title': 'Username'}}}}, {'name': 'create_post', 'description': 'Create a new post with the given title, content, and user ID', 'inputSchema': {'type': 'object', 'title': 'create_postArguments', 'required': ['title', 'content', 'user_id'], 'properties': {'title': {'type': 'string', 'title': 'Title'}, 'content': {'type': 'string', 'title': 'Content'}, 'user_id': {'type': 'integer', 'title': 'User Id'}}}}, {'name': 'search_posts', 'description': 'Search posts by title or content', 'inputSchema': {'type': 'object', 'title': 'search_postsArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}] |
@kukapay/whattimeisit-mcp | WhatTimeIsIt | Get the current time based on your IP address in ISO 8601 format. Easily integrate time-checking capabilities into your applications with this lightweight server. Perfect for developers needing accurate time data without complex setups. | 2025-03-17T05:00:56.280Z | 0 | https://smithery.ai/server/@kukapay/whattimeisit-mcp | true | null | {
"scanPassed": true
} | [{'name': 'what_time_is_it', 'description': "Returns the current time string based on the client's IP using World Time API.", 'inputSchema': {'type': 'object', 'title': 'what_time_is_itArguments', 'properties': {}}}] |
@kukapay/whattimeisit-mcp | WhatTimeIsIt | Get the current time based on your IP address in ISO 8601 format. Easily integrate time-checking capabilities into your applications with this lightweight server. Perfect for developers needing accurate time data without complex setups. | 2025-03-17T05:00:56.280Z | 0 | https://smithery.ai/server/@kukapay/whattimeisit-mcp | true | null | {
"scanPassed": true
} | [{'name': 'what_time_is_it', 'description': "Returns the current time string based on the client's IP using World Time API.", 'inputSchema': {'type': 'object', 'title': 'what_time_is_itArguments', 'properties': {}}}] |
@DivyanshKushwaha/GitHub-MCP-Server-Claude | GitHub MCP Server | Interact with GitHub seamlessly by fetching user details, repository information, and authenticated user data. Leverage the power of the MCP framework to enhance your GitHub experience with modular command processing. Simplify your API interactions and streamline your workflow with this efficient tool. | 2025-04-03T09:01:21.847Z | 0 | https://smithery.ai/server/@DivyanshKushwaha/GitHub-MCP-Server-Claude | true | null | {
"scanPassed": true
} | [{'name': 'get_user_info', 'description': '\n Fetches information about a GitHub user.\n\n Args:\n username: The username of the GitHub user.\n\n Returns:\n A dictionary containing user details.\n ', 'inputSchema': {'type': 'object', 'title': 'get_user_infoArguments', 'required': ['username'], 'properties': {'username': {'type': 'string', 'title': 'Username'}}}}, {'name': 'get_repo_info', 'description': '\n Fetches information about a GitHub repository.\n\n Args:\n owner: The username of the repository owner.\n repo: The name of the repository.\n\n Returns:\n A dictionary containing repository details.\n ', 'inputSchema': {'type': 'object', 'title': 'get_repo_infoArguments', 'required': ['owner', 'repo'], 'properties': {'repo': {'type': 'string', 'title': 'Repo'}, 'owner': {'type': 'string', 'title': 'Owner'}}}}, {'name': 'get_authenticated_user', 'description': "\n Fetches information about the authenticated GitHub user.\n\n Returns:\n A dictionary containing the authenticated user's details.\n ", 'inputSchema': {'type': 'object', 'title': 'get_authenticated_userArguments', 'properties': {}}}] |
@DivyanshKushwaha/GitHub-MCP-Server-Claude | GitHub MCP Server | Interact with GitHub seamlessly by fetching user details, repository information, and authenticated user data. Leverage the power of the MCP framework to enhance your GitHub experience with modular command processing. Simplify your API interactions and streamline your workflow with this efficient tool. | 2025-04-03T09:01:21.847Z | 0 | https://smithery.ai/server/@DivyanshKushwaha/GitHub-MCP-Server-Claude | true | null | {
"scanPassed": true
} | [{'name': 'get_user_info', 'description': '\n Fetches information about a GitHub user.\n\n Args:\n username: The username of the GitHub user.\n\n Returns:\n A dictionary containing user details.\n ', 'inputSchema': {'type': 'object', 'title': 'get_user_infoArguments', 'required': ['username'], 'properties': {'username': {'type': 'string', 'title': 'Username'}}}}, {'name': 'get_repo_info', 'description': '\n Fetches information about a GitHub repository.\n\n Args:\n owner: The username of the repository owner.\n repo: The name of the repository.\n\n Returns:\n A dictionary containing repository details.\n ', 'inputSchema': {'type': 'object', 'title': 'get_repo_infoArguments', 'required': ['owner', 'repo'], 'properties': {'repo': {'type': 'string', 'title': 'Repo'}, 'owner': {'type': 'string', 'title': 'Owner'}}}}, {'name': 'get_authenticated_user', 'description': "\n Fetches information about the authenticated GitHub user.\n\n Returns:\n A dictionary containing the authenticated user's details.\n ", 'inputSchema': {'type': 'object', 'title': 'get_authenticated_userArguments', 'properties': {}}}] |
@evansims/openfga-mcp | OpenFGA MCP Server | Enable Large Language Models to read, search, and manipulate OpenFGA stores. Unlock authorization for agentic AI and fine-grained vibe coding for enhanced user interactions. | 2025-04-06T10:01:04.464Z | 0 | https://smithery.ai/server/@evansims/openfga-mcp | true | null | {
"scanPassed": true
} | [{'name': 'check', 'description': 'Check if a user is authorized to access an object.\n\n Args:\n user: User ID\n relation: Relation\n object: Object ID\n\n Returns:\n A formatted string containing the result of the authorization check.\n ', 'inputSchema': {'type': 'object', 'title': 'checkArguments', 'required': ['user', 'relation', 'object'], 'properties': {'user': {'type': 'string', 'title': 'User'}, 'object': {'type': 'string', 'title': 'Object'}, 'relation': {'type': 'string', 'title': 'Relation'}}}}, {'name': 'list_objects', 'description': 'Get all objects of the given type that the user has a relation with.\n\n Args:\n user: User ID\n relation: Relation\n type: Type\n\n Returns:\n A formatted string containing the result of the authorization check.\n ', 'inputSchema': {'type': 'object', 'title': 'list_objectsArguments', 'required': ['user', 'relation', 'type'], 'properties': {'type': {'type': 'string', 'title': 'Type'}, 'user': {'type': 'string', 'title': 'User'}, 'relation': {'type': 'string', 'title': 'Relation'}}}}, {'name': 'list_relations', 'description': 'Get all relations for which the user has a relationship with the object.\n\n Args:\n user: User ID\n relations: Comma-separated list of relations\n object: Object\n\n Returns:\n A list of relations for which the specifieduser has a relationship with the object.\n ', 'inputSchema': {'type': 'object', 'title': 'list_relationsArguments', 'required': ['user', 'relations', 'object'], 'properties': {'user': {'type': 'string', 'title': 'User'}, 'object': {'type': 'string', 'title': 'Object'}, 'relations': {'type': 'string', 'title': 'Relations'}}}}, {'name': 'list_users', 'description': 'Get all users that have a given relationship with a given object.\n\n Args:\n object: Object\n type: Object Type\n relation: Relation\n\n Returns:\n A list of users that have the given relationship with the given object.\n ', 'inputSchema': {'type': 'object', 'title': 'list_usersArguments', 'required': ['object', 'type', 'relation'], 'properties': {'type': {'type': 'string', 'title': 'Type'}, 'object': {'type': 'string', 'title': 'Object'}, 'relation': {'type': 'string', 'title': 'Relation'}}}}] |
@evansims/openfga-mcp | OpenFGA MCP Server | Enable Large Language Models to read, search, and manipulate OpenFGA stores. Unlock authorization for agentic AI and fine-grained vibe coding for enhanced user interactions. | 2025-04-06T10:01:04.464Z | 0 | https://smithery.ai/server/@evansims/openfga-mcp | true | null | {
"scanPassed": true
} | [{'name': 'check', 'description': 'Check if a user is authorized to access an object.\n\n Args:\n user: User ID\n relation: Relation\n object: Object ID\n\n Returns:\n A formatted string containing the result of the authorization check.\n ', 'inputSchema': {'type': 'object', 'title': 'checkArguments', 'required': ['user', 'relation', 'object'], 'properties': {'user': {'type': 'string', 'title': 'User'}, 'object': {'type': 'string', 'title': 'Object'}, 'relation': {'type': 'string', 'title': 'Relation'}}}}, {'name': 'list_objects', 'description': 'Get all objects of the given type that the user has a relation with.\n\n Args:\n user: User ID\n relation: Relation\n type: Type\n\n Returns:\n A formatted string containing the result of the authorization check.\n ', 'inputSchema': {'type': 'object', 'title': 'list_objectsArguments', 'required': ['user', 'relation', 'type'], 'properties': {'type': {'type': 'string', 'title': 'Type'}, 'user': {'type': 'string', 'title': 'User'}, 'relation': {'type': 'string', 'title': 'Relation'}}}}, {'name': 'list_relations', 'description': 'Get all relations for which the user has a relationship with the object.\n\n Args:\n user: User ID\n relations: Comma-separated list of relations\n object: Object\n\n Returns:\n A list of relations for which the specifieduser has a relationship with the object.\n ', 'inputSchema': {'type': 'object', 'title': 'list_relationsArguments', 'required': ['user', 'relations', 'object'], 'properties': {'user': {'type': 'string', 'title': 'User'}, 'object': {'type': 'string', 'title': 'Object'}, 'relations': {'type': 'string', 'title': 'Relations'}}}}, {'name': 'list_users', 'description': 'Get all users that have a given relationship with a given object.\n\n Args:\n object: Object\n type: Object Type\n relation: Relation\n\n Returns:\n A list of users that have the given relationship with the given object.\n ', 'inputSchema': {'type': 'object', 'title': 'list_usersArguments', 'required': ['object', 'type', 'relation'], 'properties': {'type': {'type': 'string', 'title': 'Type'}, 'object': {'type': 'string', 'title': 'Object'}, 'relation': {'type': 'string', 'title': 'Relation'}}}}] |
@AnuragRai017/python-docs-server-MCP-Server | Python Documentation Server | Fetch Python documentation effortlessly using the Brave Search API. Get relevant documentation links based on your queries to enhance your coding experience. Simplify your search for Python resources with this dedicated server. | 2025-03-14T07:00:32.056Z | 0 | https://smithery.ai/server/@AnuragRai017/python-docs-server-MCP-Server | true | null | {
"scanPassed": true
} | [{'name': 'get_python_docs', 'description': 'Get Python documentation for a given query', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The search query for Python documentation'}}}}] |
@AnuragRai017/python-docs-server-MCP-Server | Python Documentation Server | Fetch Python documentation effortlessly using the Brave Search API. Get relevant documentation links based on your queries to enhance your coding experience. Simplify your search for Python resources with this dedicated server. | 2025-03-14T07:00:32.056Z | 0 | https://smithery.ai/server/@AnuragRai017/python-docs-server-MCP-Server | true | null | {
"scanPassed": true
} | [{'name': 'get_python_docs', 'description': 'Get Python documentation for a given query', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The search query for Python documentation'}}}}] |
@waldzellai/analogical-reasoning | Analogical Reasoning Server | Enable models to perform structured analogical thinking by explicitly mapping and evaluating relationships between source and target domains. Enhance problem-solving, explanation, and creative ideation through systematic analogy construction, inference generation, and evaluation. Visualize analogical mappings to improve understanding and transfer of knowledge across domains. | 2025-05-01T16:57:40.758Z | 0 | https://smithery.ai/server/@waldzellai/analogical-reasoning | true | null | {
"scanPassed": true
} | [{'name': 'analogicalReasoning', 'description': 'A detailed tool for analogical thinking between source and target domains.\nThis tool helps models structure analogies systematically to improve understanding and reasoning.\nIt facilitates explicit mapping between domains, inference generation, and analogy evaluation.\n\nWhen to use this tool:\n- Understanding new concepts through analogies to familiar domains\n- Problem-solving by transferring insights between domains\n- Creative thinking by establishing connections between different fields\n- Explaining complex concepts through structured comparisons\n- Evaluating analogies for their strengths and limitations\n\nKey features:\n- Explicit domain structure representation\n- Systematic mapping between domains\n- Inference generation and evaluation\n- Visual representation of analogical mappings\n- Tracking of analogy strengths and limitations', 'inputSchema': {'type': 'object', 'required': ['sourceDomain', 'targetDomain', 'analogyId', 'purpose', 'confidence', 'iteration', 'nextOperationNeeded'], 'properties': {'purpose': {'enum': ['explanation', 'prediction', 'problem-solving', 'creative-generation'], 'type': 'string', 'description': 'The purpose of the analogy'}, 'mappings': {'type': 'array', 'items': {'type': 'object', 'required': ['sourceElement', 'targetElement', 'mappingStrength', 'justification'], 'properties': {'limitations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Limitations of this specific mapping'}, 'justification': {'type': 'string', 'description': 'Justification for the mapping'}, 'sourceElement': {'type': 'string', 'description': 'ID of the source domain element'}, 'targetElement': {'type': 'string', 'description': 'ID of the target domain element'}, 'mappingStrength': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Strength of the mapping (0.0-1.0)'}}}, 'description': 'Mappings between source and target domain elements'}, 'analogyId': {'type': 'string', 'description': 'Unique identifier for this analogy'}, 'iteration': {'type': 'number', 'minimum': 0, 'description': 'Current iteration of the analogy'}, 'strengths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Strengths of the analogy'}, 'confidence': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Confidence in the overall analogy (0.0-1.0)'}, 'inferences': {'type': 'array', 'items': {'type': 'object', 'required': ['statement', 'confidence', 'basedOnMappings'], 'properties': {'statement': {'type': 'string', 'description': 'The inference statement'}, 'confidence': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Confidence in the inference (0.0-1.0)'}, 'basedOnMappings': {'type': 'array', 'items': {'type': 'string'}, 'description': 'IDs of mappings supporting this inference'}}}, 'description': 'Inferences drawn from the analogy'}, 'limitations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Limitations of the analogy'}, 'sourceDomain': {'type': 'object', 'required': ['name', 'elements'], 'properties': {'name': {'type': 'string', 'description': 'The name of the source domain'}, 'elements': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'type', 'description'], 'properties': {'id': {'type': 'string', 'description': 'Unique identifier for the element'}, 'name': {'type': 'string', 'description': 'Name of the element'}, 'type': {'enum': ['entity', 'attribute', 'relation', 'process'], 'type': 'string', 'description': 'Type of element'}, 'description': {'type': 'string', 'description': 'Description of the element'}}}, 'description': 'Elements in the source domain'}}, 'description': 'The familiar domain used as the basis for the analogy'}, 'targetDomain': {'type': 'object', 'required': ['name', 'elements'], 'properties': {'name': {'type': 'string', 'description': 'The name of the target domain'}, 'elements': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'type', 'description'], 'properties': {'id': {'type': 'string', 'description': 'Unique identifier for the element'}, 'name': {'type': 'string', 'description': 'Name of the element'}, 'type': {'enum': ['entity', 'attribute', 'relation', 'process'], 'type': 'string', 'description': 'Type of element'}, 'description': {'type': 'string', 'description': 'Description of the element'}}}, 'description': 'Elements in the target domain'}}, 'description': 'The domain being understood through the analogy'}, 'nextOperationNeeded': {'type': 'boolean', 'description': 'Whether another operation is needed'}, 'suggestedOperations': {'type': 'array', 'items': {'enum': ['add-mapping', 'revise-mapping', 'draw-inference', 'evaluate-limitation', 'try-new-source'], 'type': 'string'}, 'description': 'Suggested next operations'}}}}] |
@waldzellai/analogical-reasoning | Analogical Reasoning Server | Enable models to perform structured analogical thinking by explicitly mapping and evaluating relationships between source and target domains. Enhance problem-solving, explanation, and creative ideation through systematic analogy construction, inference generation, and evaluation. Visualize analogical mappings to improve understanding and transfer of knowledge across domains. | 2025-05-01T16:57:40.758Z | 0 | https://smithery.ai/server/@waldzellai/analogical-reasoning | true | null | {
"scanPassed": true
} | [{'name': 'analogicalReasoning', 'description': 'A detailed tool for analogical thinking between source and target domains.\nThis tool helps models structure analogies systematically to improve understanding and reasoning.\nIt facilitates explicit mapping between domains, inference generation, and analogy evaluation.\n\nWhen to use this tool:\n- Understanding new concepts through analogies to familiar domains\n- Problem-solving by transferring insights between domains\n- Creative thinking by establishing connections between different fields\n- Explaining complex concepts through structured comparisons\n- Evaluating analogies for their strengths and limitations\n\nKey features:\n- Explicit domain structure representation\n- Systematic mapping between domains\n- Inference generation and evaluation\n- Visual representation of analogical mappings\n- Tracking of analogy strengths and limitations', 'inputSchema': {'type': 'object', 'required': ['sourceDomain', 'targetDomain', 'analogyId', 'purpose', 'confidence', 'iteration', 'nextOperationNeeded'], 'properties': {'purpose': {'enum': ['explanation', 'prediction', 'problem-solving', 'creative-generation'], 'type': 'string', 'description': 'The purpose of the analogy'}, 'mappings': {'type': 'array', 'items': {'type': 'object', 'required': ['sourceElement', 'targetElement', 'mappingStrength', 'justification'], 'properties': {'limitations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Limitations of this specific mapping'}, 'justification': {'type': 'string', 'description': 'Justification for the mapping'}, 'sourceElement': {'type': 'string', 'description': 'ID of the source domain element'}, 'targetElement': {'type': 'string', 'description': 'ID of the target domain element'}, 'mappingStrength': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Strength of the mapping (0.0-1.0)'}}}, 'description': 'Mappings between source and target domain elements'}, 'analogyId': {'type': 'string', 'description': 'Unique identifier for this analogy'}, 'iteration': {'type': 'number', 'minimum': 0, 'description': 'Current iteration of the analogy'}, 'strengths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Strengths of the analogy'}, 'confidence': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Confidence in the overall analogy (0.0-1.0)'}, 'inferences': {'type': 'array', 'items': {'type': 'object', 'required': ['statement', 'confidence', 'basedOnMappings'], 'properties': {'statement': {'type': 'string', 'description': 'The inference statement'}, 'confidence': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Confidence in the inference (0.0-1.0)'}, 'basedOnMappings': {'type': 'array', 'items': {'type': 'string'}, 'description': 'IDs of mappings supporting this inference'}}}, 'description': 'Inferences drawn from the analogy'}, 'limitations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Limitations of the analogy'}, 'sourceDomain': {'type': 'object', 'required': ['name', 'elements'], 'properties': {'name': {'type': 'string', 'description': 'The name of the source domain'}, 'elements': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'type', 'description'], 'properties': {'id': {'type': 'string', 'description': 'Unique identifier for the element'}, 'name': {'type': 'string', 'description': 'Name of the element'}, 'type': {'enum': ['entity', 'attribute', 'relation', 'process'], 'type': 'string', 'description': 'Type of element'}, 'description': {'type': 'string', 'description': 'Description of the element'}}}, 'description': 'Elements in the source domain'}}, 'description': 'The familiar domain used as the basis for the analogy'}, 'targetDomain': {'type': 'object', 'required': ['name', 'elements'], 'properties': {'name': {'type': 'string', 'description': 'The name of the target domain'}, 'elements': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'type', 'description'], 'properties': {'id': {'type': 'string', 'description': 'Unique identifier for the element'}, 'name': {'type': 'string', 'description': 'Name of the element'}, 'type': {'enum': ['entity', 'attribute', 'relation', 'process'], 'type': 'string', 'description': 'Type of element'}, 'description': {'type': 'string', 'description': 'Description of the element'}}}, 'description': 'Elements in the target domain'}}, 'description': 'The domain being understood through the analogy'}, 'nextOperationNeeded': {'type': 'boolean', 'description': 'Whether another operation is needed'}, 'suggestedOperations': {'type': 'array', 'items': {'enum': ['add-mapping', 'revise-mapping', 'draw-inference', 'evaluate-limitation', 'try-new-source'], 'type': 'string'}, 'description': 'Suggested next operations'}}}}] |
@PovedaAqui/suzieq-mcp | SuzieQ MCP Server | Interact with your SuzieQ network observability instance seamlessly. Query detailed network state tables and retrieve aggregated statistics directly from your SuzieQ API. Enhance your network management capabilities with powerful tools for real-time insights. | 2025-04-05T01:18:07.368Z | 0 | https://smithery.ai/server/@PovedaAqui/suzieq-mcp | true | null | {
"scanPassed": true
} | [{'name': 'run_suzieq_show', 'description': '\n Runs a SuzieQ \'show\' query via its REST API.\n\n Args:\n table: The name of the SuzieQ table to query (e.g., \'device\', \'bgp\', \'interface\', \'route\').\n filters: An optional dictionary of filter parameters for the SuzieQ query\n (e.g., {"hostname": "leaf01", "vrf": "default", "state": "Established"}).\n Keys should match SuzieQ filter names. Values can be strings or lists of strings.\n If no filters are needed, this can be None, null, or an empty dictionary.\n\n Returns:\n A JSON string representing the result from the SuzieQ API, or a JSON string with an error message.\n ', 'inputSchema': {'type': 'object', 'title': 'run_suzieq_showArguments', 'required': ['table'], 'properties': {'table': {'type': 'string', 'title': 'Table'}, 'filters': {'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}], 'title': 'Filters', 'default': None}}}}, {'name': 'run_suzieq_summarize', 'description': '\n Runs a SuzieQ \'summarize\' query via its REST API.\n\n Args:\n table: The name of the SuzieQ table to summarize (e.g., \'device\', \'bgp\', \'interface\', \'route\').\n filters: An optional dictionary of filter parameters for the SuzieQ query\n (e.g., {"hostname": "leaf01", "vrf": "default"}).\n Keys should match SuzieQ filter names. Values can be strings or lists of strings.\n If no filters are needed, this can be None, null, or an empty dictionary.\n\n Returns:\n A JSON string representing the summarized result from the SuzieQ API,\n or a JSON string with an error message.\n ', 'inputSchema': {'type': 'object', 'title': 'run_suzieq_summarizeArguments', 'required': ['table'], 'properties': {'table': {'type': 'string', 'title': 'Table'}, 'filters': {'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}], 'title': 'Filters', 'default': None}}}}] |
@PovedaAqui/suzieq-mcp | SuzieQ MCP Server | Interact with your SuzieQ network observability instance seamlessly. Query detailed network state tables and retrieve aggregated statistics directly from your SuzieQ API. Enhance your network management capabilities with powerful tools for real-time insights. | 2025-04-05T01:18:07.368Z | 0 | https://smithery.ai/server/@PovedaAqui/suzieq-mcp | true | null | {
"scanPassed": true
} | [{'name': 'run_suzieq_show', 'description': '\n Runs a SuzieQ \'show\' query via its REST API.\n\n Args:\n table: The name of the SuzieQ table to query (e.g., \'device\', \'bgp\', \'interface\', \'route\').\n filters: An optional dictionary of filter parameters for the SuzieQ query\n (e.g., {"hostname": "leaf01", "vrf": "default", "state": "Established"}).\n Keys should match SuzieQ filter names. Values can be strings or lists of strings.\n If no filters are needed, this can be None, null, or an empty dictionary.\n\n Returns:\n A JSON string representing the result from the SuzieQ API, or a JSON string with an error message.\n ', 'inputSchema': {'type': 'object', 'title': 'run_suzieq_showArguments', 'required': ['table'], 'properties': {'table': {'type': 'string', 'title': 'Table'}, 'filters': {'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}], 'title': 'Filters', 'default': None}}}}, {'name': 'run_suzieq_summarize', 'description': '\n Runs a SuzieQ \'summarize\' query via its REST API.\n\n Args:\n table: The name of the SuzieQ table to summarize (e.g., \'device\', \'bgp\', \'interface\', \'route\').\n filters: An optional dictionary of filter parameters for the SuzieQ query\n (e.g., {"hostname": "leaf01", "vrf": "default"}).\n Keys should match SuzieQ filter names. Values can be strings or lists of strings.\n If no filters are needed, this can be None, null, or an empty dictionary.\n\n Returns:\n A JSON string representing the summarized result from the SuzieQ API,\n or a JSON string with an error message.\n ', 'inputSchema': {'type': 'object', 'title': 'run_suzieq_summarizeArguments', 'required': ['table'], 'properties': {'table': {'type': 'string', 'title': 'Table'}, 'filters': {'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}], 'title': 'Filters', 'default': None}}}}] |
@rmarescu/gumroad-mcp | Gumroad Server | Enable AI clients to interact seamlessly with your Gumroad account by accessing product, sales, offer code, and user data through a standardized protocol. Automate and analyze your Gumroad business operations with simple natural language commands. Quickly set up and integrate with MCP-compatible clients like Claude Desktop for enhanced productivity. | 2025-04-19T18:21:08.237Z | 0 | https://smithery.ai/server/@rmarescu/gumroad-mcp | true | null | null | [{'name': 'gumroad_get_user', 'description': "Retrieves the authenticated user's data. Available with any scope.", 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'gumroad_get_product', 'description': 'Retrieves a single product by its ID', 'inputSchema': {'type': 'object', 'required': ['product_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product to retrieve'}}}}, {'name': 'gumroad_get_products', 'description': 'Retrieves all of the products', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'gumroad_get_sales', 'description': 'Retrieves all of the successful sales', 'inputSchema': {'type': 'object', 'properties': {'after': {'type': 'string', 'pattern': '^\\d{4}-\\d{2}-\\d{2}$', 'description': 'Only return sales after this date (YYYY-MM-DD)'}, 'email': {'type': 'string', 'description': 'Filter sales by this email'}, 'before': {'type': 'string', 'pattern': '^\\d{4}-\\d{2}-\\d{2}$', 'description': 'Only return sales before this date (YYYY-MM-DD)'}, 'order_id': {'type': 'string', 'description': 'Filter sales by this Order ID'}, 'page_key': {'type': 'string', 'description': 'A key representing a page of results'}, 'product_id': {'type': 'string', 'description': 'Filter sales by this product'}}}}, {'name': 'gumroad_disable_product', 'description': 'Disables a product by its ID', 'inputSchema': {'type': 'object', 'required': ['product_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product to disable'}}}}, {'name': 'gumroad_enable_product', 'description': 'Enables a product by its ID', 'inputSchema': {'type': 'object', 'required': ['product_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product to enable'}}}}, {'name': 'gumroad_get_offer_codes', 'description': 'Retrieves all offer codes for a product', 'inputSchema': {'type': 'object', 'required': ['product_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The product ID to get offer codes for'}}}}, {'name': 'gumroad_get_offer_code', 'description': 'Retrieves a single offer code by its ID for a specific product', 'inputSchema': {'type': 'object', 'required': ['product_id', 'offer_code_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The product ID the offer code belongs to'}, 'offer_code_id': {'type': 'string', 'description': 'The ID of the offer code to retrieve'}}}}, {'name': 'gumroad_create_offer_code', 'description': 'Creates a new offer code for a product', 'inputSchema': {'type': 'object', 'required': ['product_id', 'name', 'amount_off'], 'properties': {'name': {'type': 'string', 'description': 'The name/code of the offer (coupon code used at checkout)'}, 'universal': {'type': 'boolean', 'description': 'Whether this offer applies to all products. Default: false'}, 'amount_off': {'type': 'number', 'description': 'The amount to discount'}, 'offer_type': {'enum': ['cents', 'percent'], 'type': 'string', 'description': 'The type of offer (cents or percent). Default: cents'}, 'product_id': {'type': 'string', 'description': 'The ID of the product this offer applies to'}, 'max_purchase_count': {'type': 'number', 'description': 'Maximum number of times this offer can be used'}}}}, {'name': 'gumroad_update_offer_code', 'description': 'Updates the max purchase count of an existing offer code for a product', 'inputSchema': {'type': 'object', 'required': ['product_id', 'offer_code_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product this offer applies to'}, 'offer_code_id': {'type': 'string', 'description': 'The ID of the offer code to update'}, 'max_purchase_count': {'type': 'number', 'description': 'Maximum number of times this offer can be used'}}}}, {'name': 'gumroad_delete_offer_code', 'description': 'Deletes an offer code for a product', 'inputSchema': {'type': 'object', 'required': ['product_id', 'offer_code_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product this offer applies to'}, 'offer_code_id': {'type': 'string', 'description': 'The ID of the offer code to delete'}}}}] |
@rmarescu/gumroad-mcp | Gumroad Server | Enable AI clients to interact seamlessly with your Gumroad account by accessing product, sales, offer code, and user data through a standardized protocol. Automate and analyze your Gumroad business operations with simple natural language commands. Quickly set up and integrate with MCP-compatible clients like Claude Desktop for enhanced productivity. | 2025-04-19T18:21:08.237Z | 0 | https://smithery.ai/server/@rmarescu/gumroad-mcp | true | null | null | [{'name': 'gumroad_get_user', 'description': "Retrieves the authenticated user's data. Available with any scope.", 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'gumroad_get_product', 'description': 'Retrieves a single product by its ID', 'inputSchema': {'type': 'object', 'required': ['product_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product to retrieve'}}}}, {'name': 'gumroad_get_products', 'description': 'Retrieves all of the products', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'gumroad_get_sales', 'description': 'Retrieves all of the successful sales', 'inputSchema': {'type': 'object', 'properties': {'after': {'type': 'string', 'pattern': '^\\d{4}-\\d{2}-\\d{2}$', 'description': 'Only return sales after this date (YYYY-MM-DD)'}, 'email': {'type': 'string', 'description': 'Filter sales by this email'}, 'before': {'type': 'string', 'pattern': '^\\d{4}-\\d{2}-\\d{2}$', 'description': 'Only return sales before this date (YYYY-MM-DD)'}, 'order_id': {'type': 'string', 'description': 'Filter sales by this Order ID'}, 'page_key': {'type': 'string', 'description': 'A key representing a page of results'}, 'product_id': {'type': 'string', 'description': 'Filter sales by this product'}}}}, {'name': 'gumroad_disable_product', 'description': 'Disables a product by its ID', 'inputSchema': {'type': 'object', 'required': ['product_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product to disable'}}}}, {'name': 'gumroad_enable_product', 'description': 'Enables a product by its ID', 'inputSchema': {'type': 'object', 'required': ['product_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product to enable'}}}}, {'name': 'gumroad_get_offer_codes', 'description': 'Retrieves all offer codes for a product', 'inputSchema': {'type': 'object', 'required': ['product_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The product ID to get offer codes for'}}}}, {'name': 'gumroad_get_offer_code', 'description': 'Retrieves a single offer code by its ID for a specific product', 'inputSchema': {'type': 'object', 'required': ['product_id', 'offer_code_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The product ID the offer code belongs to'}, 'offer_code_id': {'type': 'string', 'description': 'The ID of the offer code to retrieve'}}}}, {'name': 'gumroad_create_offer_code', 'description': 'Creates a new offer code for a product', 'inputSchema': {'type': 'object', 'required': ['product_id', 'name', 'amount_off'], 'properties': {'name': {'type': 'string', 'description': 'The name/code of the offer (coupon code used at checkout)'}, 'universal': {'type': 'boolean', 'description': 'Whether this offer applies to all products. Default: false'}, 'amount_off': {'type': 'number', 'description': 'The amount to discount'}, 'offer_type': {'enum': ['cents', 'percent'], 'type': 'string', 'description': 'The type of offer (cents or percent). Default: cents'}, 'product_id': {'type': 'string', 'description': 'The ID of the product this offer applies to'}, 'max_purchase_count': {'type': 'number', 'description': 'Maximum number of times this offer can be used'}}}}, {'name': 'gumroad_update_offer_code', 'description': 'Updates the max purchase count of an existing offer code for a product', 'inputSchema': {'type': 'object', 'required': ['product_id', 'offer_code_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product this offer applies to'}, 'offer_code_id': {'type': 'string', 'description': 'The ID of the offer code to update'}, 'max_purchase_count': {'type': 'number', 'description': 'Maximum number of times this offer can be used'}}}}, {'name': 'gumroad_delete_offer_code', 'description': 'Deletes an offer code for a product', 'inputSchema': {'type': 'object', 'required': ['product_id', 'offer_code_id'], 'properties': {'product_id': {'type': 'string', 'description': 'The ID of the product this offer applies to'}, 'offer_code_id': {'type': 'string', 'description': 'The ID of the offer code to delete'}}}}] |
@Kong/mcp-konnect | Kong Konnect MCP Server | Enable AI assistants to interact with Kong Konnect APIs for querying and analyzing API Gateway configurations, traffic, and analytics. Streamline your API management and gain insights through natural language conversations with your AI assistant. | 2025-04-03T01:00:44.620Z | 0 | https://smithery.ai/server/@Kong/mcp-konnect | true | null | {
"scanPassed": true
} | [{'name': 'query_api_requests', 'description': '\nQuery and analyze Kong API Gateway requests with customizable filters. \nBefore calling this it\'s necessary to have a controlPlaneID and a serviceID or routeID. \nThese can be obtained using the list-control-planes, list-services, and list-routes tools.\n\nINPUT:\n - timeRange: String - Time range for data retrieval (15M, 1H, 6H, 12H, 24H, 7D)\n - statusCodes: Number[] (optional) - Filter by specific HTTP status codes\n - excludeStatusCodes: Number[] (optional) - Exclude specific HTTP status codes\n - httpMethods: String[] (optional) - Filter by HTTP methods (e.g., GET, POST)\n - consumerIds: String[] (optional) - Filter by consumer IDs\n - serviceIds: String[] (optional) - Filter by service IDs. The format of this field must be "<controlPlaneID>:<serviceID>". \n - routeIds: String[] (optional) - Filter by route IDs. The format of this field must be "<controlPlaneID:routeID>"\n - maxResults: Number - Maximum number of results to return (1-1000)\n\nOUTPUT:\n - metadata: Object - Contains totalRequests, timeRange, and applied filters\n - requests: Array - List of request objects with details including:\n - requestId: String - Unique request identifier\n - timestamp: String - When the request occurred\n - httpMethod: String - HTTP method used (GET, POST, etc.)\n - uri: String - Request URI path\n - statusCode: Number - HTTP status code of the response\n - consumerId: String - ID of the consumer making the request\n - serviceId: String - ID of the service handling the request\n - routeId: String - ID of the matched route\n - latency: Object - Response time metrics\n - clientIp: String - IP address of the client\n - and many more detailed fields...\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'routeIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by route IDs (from list-routes tool)'}, 'timeRange': {'enum': ['15M', '1H', '6H', '12H', '24H', '7D'], 'type': 'string', 'default': '1H', 'description': 'Time range for data retrieval (15M = 15 minutes, 1H = 1 hour, etc.)'}, 'maxResults': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of items to return per page'}, 'serviceIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by service IDs'}, 'consumerIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by consumer IDs'}, 'httpMethods': {'type': 'array', 'items': {'type': 'string'}, 'description': "Filter by HTTP methods (e.g. ['GET', 'POST', 'DELETE'])"}, 'statusCodes': {'type': 'array', 'items': {'type': 'integer', 'maximum': 599, 'minimum': 100}, 'description': 'Filter by specific HTTP status codes (e.g. [200, 201, 404])'}, 'excludeStatusCodes': {'type': 'array', 'items': {'type': 'integer', 'maximum': 599, 'minimum': 100}, 'description': 'Exclude specific HTTP status codes (e.g. [400, 401, 500])'}}, 'additionalProperties': False}}, {'name': 'get_consumer_requests', 'description': '\nRetrieve and analyze API requests made by a specific consumer.\n\nINPUT:\n - consumerId: String - ID of the consumer to analyze. The format of this field must be "controlPlaneID:consumerId".\n - timeRange: String - Time range for data retrieval (15M, 1H, 6H, 12H, 24H, 7D)\n - successOnly: Boolean - Filter to only show successful (2xx) requests (default: false)\n - failureOnly: Boolean - Filter to only show failed (non-2xx) requests (default: false)\n - maxResults: Number - Maximum number of results to return (1-1000)\n\nOUTPUT:\n - metadata: Object - Contains consumerId, totalRequests, timeRange, and filters\n - statistics: Object - Usage statistics including:\n - averageLatencyMs: Number - Average response time in milliseconds\n - successRate: Number - Percentage of successful requests\n - statusCodeDistribution: Array - Breakdown of requests by status code\n - serviceDistribution: Array - Breakdown of requests by service\n - requests: Array - List of requests with details for each request\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['consumerId'], 'properties': {'timeRange': {'enum': ['15M', '1H', '6H', '12H', '24H', '7D'], 'type': 'string', 'default': '1H', 'description': 'Time range for data retrieval (15M = 15 minutes, 1H = 1 hour, etc.)'}, 'consumerId': {'type': 'string', 'description': 'Consumer ID to filter by (obtainable from analyze-failed-requests or query-api-requests tools)'}, 'maxResults': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of items to return per page'}, 'failureOnly': {'type': 'boolean', 'default': False, 'description': 'Show only failed (non-2xx) requests'}, 'successOnly': {'type': 'boolean', 'default': False, 'description': 'Show only successful (2xx) requests'}}, 'additionalProperties': False}}, {'name': 'list_services', 'description': '\nList all services associated with a control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane\n - size: Number - Number of services to return (1-1000, default: 100)\n - offset: String (optional) - Pagination offset token from previous response\n\nOUTPUT:\n - metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount\n - services: Array - List of services with details for each including:\n - serviceId: String - Unique identifier for the service\n - name: String - Display name of the service\n - host: String - Target host for the service\n - port: Number - Target port for the service\n - protocol: String - Protocol used (http, https, grpc, etc.)\n - path: String - Path prefix for the service\n - retries: Number - Number of retries on failure\n - connectTimeout: Number - Connection timeout in milliseconds\n - writeTimeout: Number - Write timeout in milliseconds\n - readTimeout: Number - Read timeout in milliseconds\n - tags: Array - Tags associated with the service\n - enabled: Boolean - Whether the service is enabled\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for further analysis\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'size': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of services to return'}, 'offset': {'type': 'string', 'description': 'Offset token for pagination (from previous response)'}, 'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_routes', 'description': '\nList all routes associated with a control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane\n - size: Number - Number of routes to return (1-1000, default: 100)\n - offset: String (optional) - Pagination offset token from previous response\n\nOUTPUT:\n - metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount\n - routes: Array - List of routes with details for each including:\n - routeId: String - Unique identifier for the route\n - name: String - Display name of the route\n - protocols: Array - Protocols this route accepts (http, https, grpc, etc.)\n - methods: Array - HTTP methods this route accepts\n - hosts: Array - Hostnames this route matches\n - paths: Array - URL paths this route matches\n - stripPath: Boolean - Whether to strip the matched path prefix\n - preserveHost: Boolean - Whether to preserve the host header\n - serviceId: String - ID of the service this route forwards to\n - enabled: Boolean - Whether the route is enabled\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for further analysis\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'size': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of routes to return'}, 'offset': {'type': 'string', 'description': 'Offset token for pagination (from previous response)'}, 'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_consumers', 'description': '\nList all consumers associated with a control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane\n - size: Number - Number of consumers to return (1-1000, default: 100)\n - offset: String (optional) - Pagination offset token from previous response\n\nOUTPUT:\n - metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount\n - consumers: Array - List of consumers with details for each including:\n - consumerId: String - Unique identifier for the consumer\n - username: String - Username for this consumer\n - customId: String - Custom identifier for this consumer\n - tags: Array - Tags associated with the consumer\n - enabled: Boolean - Whether the consumer is enabled\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for consumer analysis\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'size': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of consumers to return'}, 'offset': {'type': 'string', 'description': 'Offset token for pagination (from previous response)'}, 'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_plugins', 'description': '\nList all plugins associated with a control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane\n - size: Number - Number of plugins to return (1-1000, default: 100)\n - offset: String (optional) - Pagination offset token from previous response\n\nOUTPUT:\n - metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount\n - plugins: Array - List of plugins with details for each including:\n - pluginId: String - Unique identifier for the plugin\n - name: String - Name of the plugin (e.g., rate-limiting, cors, etc.)\n - enabled: Boolean - Whether the plugin is enabled\n - config: Object - Plugin-specific configuration\n - protocols: Array - Protocols this plugin applies to\n - tags: Array - Tags associated with the plugin\n - scoping: Object - Defines plugin scope including:\n - consumerId: String - Consumer this plugin applies to (if any)\n - serviceId: String - Service this plugin applies to (if any)\n - routeId: String - Route this plugin applies to (if any)\n - global: Boolean - Whether this is a global plugin\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for plugin configuration\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'size': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of plugins to return'}, 'offset': {'type': 'string', 'description': 'Offset token for pagination (from previous response)'}, 'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_control_planes', 'description': "\nList all control planes in your organization.\n\nINPUT:\n - pageSize: Number - Number of control planes per page (1-1000, default: 10)\n - pageNumber: Number (optional) - Page number to retrieve\n - filterName: String (optional) - Filter control planes by name\n - filterClusterType: String (optional) - Filter by cluster type (kubernetes, docker, etc.)\n - filterCloudGateway: Boolean (optional) - Filter by cloud gateway capability\n - labels: String (optional) - Filter by labels (format: 'key:value,existCheck')\n - sort: String (optional) - Sort field and direction (e.g. 'name,created_at desc')\n\nOUTPUT:\n - metadata: Object - Contains pageSize, pageNumber, totalPages, totalCount, filters, sort\n - controlPlanes: Array - List of control planes with details for each including:\n - controlPlaneId: String - Unique identifier for the control plane\n - name: String - Display name of the control plane\n - description: String - Description of the control plane\n - type: String - Type of the control plane\n - clusterType: String - Underlying cluster type\n - controlPlaneEndpoint: String - URL endpoint for the control plane\n - telemetryEndpoint: String - URL endpoint for telemetry\n - hasCloudGateway: Boolean - Whether cloud gateway is enabled\n - labels: Object - Labels assigned to this control plane\n - metadata: Object - Creation and update timestamps\n - usage: Object - Information about how to use these results\n", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'sort': {'type': 'string', 'description': "Sort field and direction (e.g. 'name,created_at desc')"}, 'labels': {'type': 'string', 'description': "Filter by labels (format: 'key:value,existCheck')"}, 'pageSize': {'type': 'integer', 'default': 10, 'maximum': 1000, 'minimum': 1, 'description': 'Number of control planes per page'}, 'filterName': {'type': 'string', 'description': 'Filter control planes by name (contains)'}, 'pageNumber': {'type': 'integer', 'minimum': 1, 'description': 'Page number to retrieve'}, 'filterClusterType': {'type': 'string', 'description': "Filter by cluster type (e.g., 'kubernetes', 'docker')"}, 'filterCloudGateway': {'type': 'boolean', 'description': 'Filter by cloud gateway capability'}}, 'additionalProperties': False}}, {'name': 'get_control_plane', 'description': '\nGet detailed information about a specific control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane to retrieve\n\nOUTPUT:\n - controlPlaneDetails: Object - Detailed information including:\n - controlPlaneId: String - Unique identifier for the control plane\n - name: String - Display name of the control plane\n - description: String - Description of the control plane\n - type: String - Type of the control plane\n - clusterType: String - Underlying cluster type\n - controlPlaneEndpoint: String - URL endpoint for the control plane\n - telemetryEndpoint: String - URL endpoint for telemetry\n - hasCloudGateway: Boolean - Whether cloud gateway is enabled\n - labels: Object - Labels assigned to this control plane\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for further analysis\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_control_plane_group_memberships', 'description': '\nList all control planes that are members of a specific control plane group.\n\nINPUT:\n - groupId: String - ID of the control plane group (control plane that acts as the group)\n - pageSize: Number - Number of members to return per page (1-1000, default: 10)\n - pageAfter: String (optional) - Cursor for pagination after a specific item\n\nOUTPUT:\n - metadata: Object - Contains groupId, pageSize, pageAfter, nextPageAfter, totalCount\n - members: Array - List of member control planes with details for each including:\n - controlPlaneId: String - Unique identifier for the control plane\n - name: String - Display name of the control plane\n - description: String - Description of the control plane\n - type: String - Type of the control plane\n - clusterType: String - Underlying cluster type\n - membershipStatus: Object - Group membership status including:\n - status: String - Current status (OK, CONFLICT, etc.)\n - message: String - Status message\n - conflicts: Array - List of configuration conflicts if any\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for group management\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['groupId'], 'properties': {'groupId': {'type': 'string', 'description': 'Control plane group ID (the ID of the control plane that acts as the group)'}, 'pageSize': {'type': 'integer', 'default': 10, 'maximum': 1000, 'minimum': 1, 'description': 'Number of members to return per page'}, 'pageAfter': {'type': 'string', 'description': 'Cursor for pagination after a specific item'}}, 'additionalProperties': False}}, {'name': 'check_control_plane_group_membership', 'description': '\nCheck if a control plane is a member of any group.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane to check\n\nOUTPUT:\n - controlPlaneId: String - ID of the control plane that was checked\n - groupMembership: Object - Membership information including:\n - isMember: Boolean - Whether the control plane is a member of any group\n - groupId: String - ID of the group this control plane belongs to (if any)\n - groupName: String - Name of the group this control plane belongs to\n - status: String - Membership status (OK, CONFLICT, etc.)\n - message: String - Status message\n - conflicts: Array - List of configuration conflicts if any\n - relatedTools: Array - List of related tools for group management\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'controlPlaneId': {'type': 'string', 'description': 'Control plane ID to check (can be obtained from list-control-planes tool)'}}, 'additionalProperties': False}}] |
@Kong/mcp-konnect | Kong Konnect MCP Server | Enable AI assistants to interact with Kong Konnect APIs for querying and analyzing API Gateway configurations, traffic, and analytics. Streamline your API management and gain insights through natural language conversations with your AI assistant. | 2025-04-03T01:00:44.620Z | 0 | https://smithery.ai/server/@Kong/mcp-konnect | true | null | {
"scanPassed": true
} | [{'name': 'query_api_requests', 'description': '\nQuery and analyze Kong API Gateway requests with customizable filters. \nBefore calling this it\'s necessary to have a controlPlaneID and a serviceID or routeID. \nThese can be obtained using the list-control-planes, list-services, and list-routes tools.\n\nINPUT:\n - timeRange: String - Time range for data retrieval (15M, 1H, 6H, 12H, 24H, 7D)\n - statusCodes: Number[] (optional) - Filter by specific HTTP status codes\n - excludeStatusCodes: Number[] (optional) - Exclude specific HTTP status codes\n - httpMethods: String[] (optional) - Filter by HTTP methods (e.g., GET, POST)\n - consumerIds: String[] (optional) - Filter by consumer IDs\n - serviceIds: String[] (optional) - Filter by service IDs. The format of this field must be "<controlPlaneID>:<serviceID>". \n - routeIds: String[] (optional) - Filter by route IDs. The format of this field must be "<controlPlaneID:routeID>"\n - maxResults: Number - Maximum number of results to return (1-1000)\n\nOUTPUT:\n - metadata: Object - Contains totalRequests, timeRange, and applied filters\n - requests: Array - List of request objects with details including:\n - requestId: String - Unique request identifier\n - timestamp: String - When the request occurred\n - httpMethod: String - HTTP method used (GET, POST, etc.)\n - uri: String - Request URI path\n - statusCode: Number - HTTP status code of the response\n - consumerId: String - ID of the consumer making the request\n - serviceId: String - ID of the service handling the request\n - routeId: String - ID of the matched route\n - latency: Object - Response time metrics\n - clientIp: String - IP address of the client\n - and many more detailed fields...\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'routeIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by route IDs (from list-routes tool)'}, 'timeRange': {'enum': ['15M', '1H', '6H', '12H', '24H', '7D'], 'type': 'string', 'default': '1H', 'description': 'Time range for data retrieval (15M = 15 minutes, 1H = 1 hour, etc.)'}, 'maxResults': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of items to return per page'}, 'serviceIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by service IDs'}, 'consumerIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by consumer IDs'}, 'httpMethods': {'type': 'array', 'items': {'type': 'string'}, 'description': "Filter by HTTP methods (e.g. ['GET', 'POST', 'DELETE'])"}, 'statusCodes': {'type': 'array', 'items': {'type': 'integer', 'maximum': 599, 'minimum': 100}, 'description': 'Filter by specific HTTP status codes (e.g. [200, 201, 404])'}, 'excludeStatusCodes': {'type': 'array', 'items': {'type': 'integer', 'maximum': 599, 'minimum': 100}, 'description': 'Exclude specific HTTP status codes (e.g. [400, 401, 500])'}}, 'additionalProperties': False}}, {'name': 'get_consumer_requests', 'description': '\nRetrieve and analyze API requests made by a specific consumer.\n\nINPUT:\n - consumerId: String - ID of the consumer to analyze. The format of this field must be "controlPlaneID:consumerId".\n - timeRange: String - Time range for data retrieval (15M, 1H, 6H, 12H, 24H, 7D)\n - successOnly: Boolean - Filter to only show successful (2xx) requests (default: false)\n - failureOnly: Boolean - Filter to only show failed (non-2xx) requests (default: false)\n - maxResults: Number - Maximum number of results to return (1-1000)\n\nOUTPUT:\n - metadata: Object - Contains consumerId, totalRequests, timeRange, and filters\n - statistics: Object - Usage statistics including:\n - averageLatencyMs: Number - Average response time in milliseconds\n - successRate: Number - Percentage of successful requests\n - statusCodeDistribution: Array - Breakdown of requests by status code\n - serviceDistribution: Array - Breakdown of requests by service\n - requests: Array - List of requests with details for each request\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['consumerId'], 'properties': {'timeRange': {'enum': ['15M', '1H', '6H', '12H', '24H', '7D'], 'type': 'string', 'default': '1H', 'description': 'Time range for data retrieval (15M = 15 minutes, 1H = 1 hour, etc.)'}, 'consumerId': {'type': 'string', 'description': 'Consumer ID to filter by (obtainable from analyze-failed-requests or query-api-requests tools)'}, 'maxResults': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of items to return per page'}, 'failureOnly': {'type': 'boolean', 'default': False, 'description': 'Show only failed (non-2xx) requests'}, 'successOnly': {'type': 'boolean', 'default': False, 'description': 'Show only successful (2xx) requests'}}, 'additionalProperties': False}}, {'name': 'list_services', 'description': '\nList all services associated with a control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane\n - size: Number - Number of services to return (1-1000, default: 100)\n - offset: String (optional) - Pagination offset token from previous response\n\nOUTPUT:\n - metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount\n - services: Array - List of services with details for each including:\n - serviceId: String - Unique identifier for the service\n - name: String - Display name of the service\n - host: String - Target host for the service\n - port: Number - Target port for the service\n - protocol: String - Protocol used (http, https, grpc, etc.)\n - path: String - Path prefix for the service\n - retries: Number - Number of retries on failure\n - connectTimeout: Number - Connection timeout in milliseconds\n - writeTimeout: Number - Write timeout in milliseconds\n - readTimeout: Number - Read timeout in milliseconds\n - tags: Array - Tags associated with the service\n - enabled: Boolean - Whether the service is enabled\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for further analysis\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'size': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of services to return'}, 'offset': {'type': 'string', 'description': 'Offset token for pagination (from previous response)'}, 'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_routes', 'description': '\nList all routes associated with a control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane\n - size: Number - Number of routes to return (1-1000, default: 100)\n - offset: String (optional) - Pagination offset token from previous response\n\nOUTPUT:\n - metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount\n - routes: Array - List of routes with details for each including:\n - routeId: String - Unique identifier for the route\n - name: String - Display name of the route\n - protocols: Array - Protocols this route accepts (http, https, grpc, etc.)\n - methods: Array - HTTP methods this route accepts\n - hosts: Array - Hostnames this route matches\n - paths: Array - URL paths this route matches\n - stripPath: Boolean - Whether to strip the matched path prefix\n - preserveHost: Boolean - Whether to preserve the host header\n - serviceId: String - ID of the service this route forwards to\n - enabled: Boolean - Whether the route is enabled\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for further analysis\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'size': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of routes to return'}, 'offset': {'type': 'string', 'description': 'Offset token for pagination (from previous response)'}, 'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_consumers', 'description': '\nList all consumers associated with a control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane\n - size: Number - Number of consumers to return (1-1000, default: 100)\n - offset: String (optional) - Pagination offset token from previous response\n\nOUTPUT:\n - metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount\n - consumers: Array - List of consumers with details for each including:\n - consumerId: String - Unique identifier for the consumer\n - username: String - Username for this consumer\n - customId: String - Custom identifier for this consumer\n - tags: Array - Tags associated with the consumer\n - enabled: Boolean - Whether the consumer is enabled\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for consumer analysis\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'size': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of consumers to return'}, 'offset': {'type': 'string', 'description': 'Offset token for pagination (from previous response)'}, 'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_plugins', 'description': '\nList all plugins associated with a control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane\n - size: Number - Number of plugins to return (1-1000, default: 100)\n - offset: String (optional) - Pagination offset token from previous response\n\nOUTPUT:\n - metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount\n - plugins: Array - List of plugins with details for each including:\n - pluginId: String - Unique identifier for the plugin\n - name: String - Name of the plugin (e.g., rate-limiting, cors, etc.)\n - enabled: Boolean - Whether the plugin is enabled\n - config: Object - Plugin-specific configuration\n - protocols: Array - Protocols this plugin applies to\n - tags: Array - Tags associated with the plugin\n - scoping: Object - Defines plugin scope including:\n - consumerId: String - Consumer this plugin applies to (if any)\n - serviceId: String - Service this plugin applies to (if any)\n - routeId: String - Route this plugin applies to (if any)\n - global: Boolean - Whether this is a global plugin\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for plugin configuration\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'size': {'type': 'integer', 'default': 100, 'maximum': 1000, 'minimum': 1, 'description': 'Number of plugins to return'}, 'offset': {'type': 'string', 'description': 'Offset token for pagination (from previous response)'}, 'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_control_planes', 'description': "\nList all control planes in your organization.\n\nINPUT:\n - pageSize: Number - Number of control planes per page (1-1000, default: 10)\n - pageNumber: Number (optional) - Page number to retrieve\n - filterName: String (optional) - Filter control planes by name\n - filterClusterType: String (optional) - Filter by cluster type (kubernetes, docker, etc.)\n - filterCloudGateway: Boolean (optional) - Filter by cloud gateway capability\n - labels: String (optional) - Filter by labels (format: 'key:value,existCheck')\n - sort: String (optional) - Sort field and direction (e.g. 'name,created_at desc')\n\nOUTPUT:\n - metadata: Object - Contains pageSize, pageNumber, totalPages, totalCount, filters, sort\n - controlPlanes: Array - List of control planes with details for each including:\n - controlPlaneId: String - Unique identifier for the control plane\n - name: String - Display name of the control plane\n - description: String - Description of the control plane\n - type: String - Type of the control plane\n - clusterType: String - Underlying cluster type\n - controlPlaneEndpoint: String - URL endpoint for the control plane\n - telemetryEndpoint: String - URL endpoint for telemetry\n - hasCloudGateway: Boolean - Whether cloud gateway is enabled\n - labels: Object - Labels assigned to this control plane\n - metadata: Object - Creation and update timestamps\n - usage: Object - Information about how to use these results\n", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'sort': {'type': 'string', 'description': "Sort field and direction (e.g. 'name,created_at desc')"}, 'labels': {'type': 'string', 'description': "Filter by labels (format: 'key:value,existCheck')"}, 'pageSize': {'type': 'integer', 'default': 10, 'maximum': 1000, 'minimum': 1, 'description': 'Number of control planes per page'}, 'filterName': {'type': 'string', 'description': 'Filter control planes by name (contains)'}, 'pageNumber': {'type': 'integer', 'minimum': 1, 'description': 'Page number to retrieve'}, 'filterClusterType': {'type': 'string', 'description': "Filter by cluster type (e.g., 'kubernetes', 'docker')"}, 'filterCloudGateway': {'type': 'boolean', 'description': 'Filter by cloud gateway capability'}}, 'additionalProperties': False}}, {'name': 'get_control_plane', 'description': '\nGet detailed information about a specific control plane.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane to retrieve\n\nOUTPUT:\n - controlPlaneDetails: Object - Detailed information including:\n - controlPlaneId: String - Unique identifier for the control plane\n - name: String - Display name of the control plane\n - description: String - Description of the control plane\n - type: String - Type of the control plane\n - clusterType: String - Underlying cluster type\n - controlPlaneEndpoint: String - URL endpoint for the control plane\n - telemetryEndpoint: String - URL endpoint for telemetry\n - hasCloudGateway: Boolean - Whether cloud gateway is enabled\n - labels: Object - Labels assigned to this control plane\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for further analysis\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'controlPlaneId': {'type': 'string', 'description': 'Control Plane ID (obtainable from list-control-planes tool)'}}, 'additionalProperties': False}}, {'name': 'list_control_plane_group_memberships', 'description': '\nList all control planes that are members of a specific control plane group.\n\nINPUT:\n - groupId: String - ID of the control plane group (control plane that acts as the group)\n - pageSize: Number - Number of members to return per page (1-1000, default: 10)\n - pageAfter: String (optional) - Cursor for pagination after a specific item\n\nOUTPUT:\n - metadata: Object - Contains groupId, pageSize, pageAfter, nextPageAfter, totalCount\n - members: Array - List of member control planes with details for each including:\n - controlPlaneId: String - Unique identifier for the control plane\n - name: String - Display name of the control plane\n - description: String - Description of the control plane\n - type: String - Type of the control plane\n - clusterType: String - Underlying cluster type\n - membershipStatus: Object - Group membership status including:\n - status: String - Current status (OK, CONFLICT, etc.)\n - message: String - Status message\n - conflicts: Array - List of configuration conflicts if any\n - metadata: Object - Creation and update timestamps\n - relatedTools: Array - List of related tools for group management\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['groupId'], 'properties': {'groupId': {'type': 'string', 'description': 'Control plane group ID (the ID of the control plane that acts as the group)'}, 'pageSize': {'type': 'integer', 'default': 10, 'maximum': 1000, 'minimum': 1, 'description': 'Number of members to return per page'}, 'pageAfter': {'type': 'string', 'description': 'Cursor for pagination after a specific item'}}, 'additionalProperties': False}}, {'name': 'check_control_plane_group_membership', 'description': '\nCheck if a control plane is a member of any group.\n\nINPUT:\n - controlPlaneId: String - ID of the control plane to check\n\nOUTPUT:\n - controlPlaneId: String - ID of the control plane that was checked\n - groupMembership: Object - Membership information including:\n - isMember: Boolean - Whether the control plane is a member of any group\n - groupId: String - ID of the group this control plane belongs to (if any)\n - groupName: String - Name of the group this control plane belongs to\n - status: String - Membership status (OK, CONFLICT, etc.)\n - message: String - Status message\n - conflicts: Array - List of configuration conflicts if any\n - relatedTools: Array - List of related tools for group management\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['controlPlaneId'], 'properties': {'controlPlaneId': {'type': 'string', 'description': 'Control plane ID to check (can be obtained from list-control-planes tool)'}}, 'additionalProperties': False}}] |
@jeanibarz/knowledge-base-mcp-server | Knowledge Base Server | Retrieve and list content from various knowledge bases effortlessly. Enhance your applications with semantic search capabilities to find relevant information quickly. Utilize a structured approach to manage and access knowledge efficiently. | 2025-03-12T03:01:02.888Z | 0 | https://smithery.ai/server/@jeanibarz/knowledge-base-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'list_knowledge_bases', 'description': 'Lists the available knowledge bases.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'retrieve_knowledge', 'description': 'Retrieves similar chunks from the knowledge base based on a query. Optionally, if a knowledge base is specified, only that one is searched; otherwise, all available knowledge bases are considered. By default, at most 10 documents are returned with a score below a threshold of 2. A different threshold can optionally be provided.', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The query text to use for semantic search.'}, 'threshold': {'type': 'number', 'description': 'Optional. The maximum similarity score to return.'}, 'knowledge_base_name': {'type': 'string', 'description': "Optional. Name of the knowledge base to query (e.g., 'company', 'it_support', 'onboarding'). If omitted, the search is performed across all available knowledge bases."}}}}] |
@jeanibarz/knowledge-base-mcp-server | Knowledge Base Server | Retrieve and list content from various knowledge bases effortlessly. Enhance your applications with semantic search capabilities to find relevant information quickly. Utilize a structured approach to manage and access knowledge efficiently. | 2025-03-12T03:01:02.888Z | 0 | https://smithery.ai/server/@jeanibarz/knowledge-base-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'list_knowledge_bases', 'description': 'Lists the available knowledge bases.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'retrieve_knowledge', 'description': 'Retrieves similar chunks from the knowledge base based on a query. Optionally, if a knowledge base is specified, only that one is searched; otherwise, all available knowledge bases are considered. By default, at most 10 documents are returned with a score below a threshold of 2. A different threshold can optionally be provided.', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The query text to use for semantic search.'}, 'threshold': {'type': 'number', 'description': 'Optional. The maximum similarity score to return.'}, 'knowledge_base_name': {'type': 'string', 'description': "Optional. Name of the knowledge base to query (e.g., 'company', 'it_support', 'onboarding'). If omitted, the search is performed across all available knowledge bases."}}}}] |
@aashari/boilerplate-mcp-server | Boilerplate MCP Server | Build AI-connected tools effortlessly. This server boilerplate simplifies integration with Claude and other AI systems, enabling seamless access to external data and tools. Start developing your own MCP server with built-in IP lookup and CLI support. | 2025-03-23T03:16:46.921Z | 0 | https://smithery.ai/server/@aashari/boilerplate-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'get-ip-details', 'description': 'Get details about a specific IP address or the current device (if no IP address is provided)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'ipAddress': {'type': 'string'}}, 'additionalProperties': False}}] |
@aashari/boilerplate-mcp-server | Boilerplate MCP Server | Build AI-connected tools effortlessly. This server boilerplate simplifies integration with Claude and other AI systems, enabling seamless access to external data and tools. Start developing your own MCP server with built-in IP lookup and CLI support. | 2025-03-23T03:16:46.921Z | 0 | https://smithery.ai/server/@aashari/boilerplate-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'get-ip-details', 'description': 'Get details about a specific IP address or the current device (if no IP address is provided)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'ipAddress': {'type': 'string'}}, 'additionalProperties': False}}] |
@ckz/flux-schnell-mcp | Flux Schnell | Generate stunning images from text prompts using the Replicate API. Leverage the power of AI to create unique visuals tailored to your specifications. Simply provide a detailed description and let the server handle the rest. | 2025-04-03T00:01:18.598Z | 7 | https://smithery.ai/server/@ckz/flux-schnell-mcp | true | null | {
"scanPassed": true
} | [{'name': 'generate_image', 'description': 'Generate an image using the Flux Schnell model', 'inputSchema': {'type': 'object', 'required': ['prompt'], 'properties': {'prompt': {'type': 'string', 'description': 'Text prompt describing the image to generate'}}}}] |
@barlanyado/test123 | MCP Server Test | this tool allow you to format your text using markdown. | 2025-03-04T11:44:45.587Z | 0 | https://smithery.ai/server/@barlanyado/test123 | true | null | {
"scanPassed": true
} | [{'name': 'format_markdown', 'description': '\n Format plain text into markdown by adding common markdown syntax.\n \n Args:\n text: The plain text to format\n \n Returns:\n The formatted markdown text\n ', 'inputSchema': {'type': 'object', 'title': 'format_markdownArguments', 'required': ['text'], 'properties': {'text': {'type': 'string', 'title': 'Text'}}}}] |
@HenryHaoson/Yuque-MCP-Server | Yuque MCP Server | Integrate with the Yuque API to manage documents and user information seamlessly. Create, read, update, and delete documents while accessing analytics and statistics for your knowledge base. Enhance your AI models with powerful tools to interact with Yuque data effortlessly. | 2025-03-22T23:00:34.493Z | 0 | https://smithery.ai/server/@HenryHaoson/Yuque-MCP-Server | true | null | null | [{'name': 'get_current_user', 'description': '获取当前认证用户的信息,包括用户ID、用户名、头像等语雀账号基本信息', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_user_docs', 'description': '获取当前用户的所有知识库文档列表,包括私人和协作文档', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_user_repos', 'description': '获取指定用户的知识库列表,知识库是语雀中组织文档的集合', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'login': {'type': 'string', 'description': '用户的登录名或唯一标识'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_repo_docs', 'description': '获取特定知识库中的所有文档列表,包括文档标题、更新时间等信息', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace'], 'properties': {'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_doc', 'description': '获取语雀中特定文档的详细内容,包括正文、修改历史和权限信息(支持分块处理大型文档)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'slug'], 'properties': {'slug': {'type': 'string', 'description': '文档的唯一标识或短链接名称'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'chunk_size': {'type': 'number', 'description': '分块大小(字符数),默认为100000'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}, 'chunk_index': {'type': 'number', 'description': '要获取的文档块索引,不提供则返回第一块或全部(如果内容较小)'}}, 'additionalProperties': False}}, {'name': 'create_doc', 'description': '在指定知识库中创建新的语雀文档,支持多种格式内容', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'title', 'slug', 'body'], 'properties': {'body': {'type': 'string', 'description': '文档内容,支持Markdown格式'}, 'slug': {'type': 'string', 'description': '文档的短链接名称,用于URL路径'}, 'title': {'type': 'string', 'description': '文档标题'}, 'format': {'type': 'string', 'description': '内容格式,可选值:markdown、html、lake,默认为 markdown'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}, 'public_level': {'type': 'number', 'description': '公开性,可选值:0(私密)、1(公开)、2(企业内公开),默认为 1'}}, 'additionalProperties': False}}, {'name': 'update_doc', 'description': '更新语雀中已存在的文档,可以修改标题、内容或权限设置', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'id'], 'properties': {'id': {'type': 'number', 'description': '要更新的文档ID'}, 'body': {'type': 'string', 'description': '文档的新内容,支持Markdown格式'}, 'slug': {'type': 'string', 'description': '文档的新短链接名称'}, 'title': {'type': 'string', 'description': '文档的新标题'}, 'format': {'type': 'string', 'description': '内容格式,可选值:markdown、html、lake'}, 'public': {'type': 'number', 'description': '文档的公开状态,0(私密)、1(公开)、2(企业内公开)'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'delete_doc', 'description': '从语雀知识库中删除指定文档,此操作不可撤销', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'id'], 'properties': {'id': {'type': 'number', 'description': '要删除的文档ID'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'search', 'description': '在语雀平台中搜索文档或知识库内容,支持范围和作者筛选', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query', 'type'], 'properties': {'page': {'type': 'number', 'description': '页码,默认为1'}, 'type': {'enum': ['doc', 'repo'], 'type': 'string', 'description': '要搜索的内容类型:doc(文档) 或 repo(知识库)'}, 'query': {'type': 'string', 'description': '搜索关键词'}, 'scope': {'type': 'string', 'description': '搜索范围,不填默认搜索当前用户/团队'}, 'creator': {'type': 'string', 'description': '仅搜索指定作者的内容'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_group_statistics', 'description': '获取团队的汇总统计数据,包括成员人数、文档数量、阅读量和互动数据等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'login': {'type': 'string', 'description': '团队的登录名或唯一标识'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_group_member_statistics', 'description': '获取团队成员的统计数据,包括各成员的编辑次数、阅读量、点赞量等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'name': {'type': 'string', 'description': '成员名称,用于过滤特定成员'}, 'page': {'type': 'number', 'description': '页码,默认为1'}, 'limit': {'type': 'number', 'description': '每页数量,默认为10,最大为20'}, 'login': {'type': 'string', 'description': '团队的登录名或唯一标识'}, 'range': {'type': 'number', 'description': '时间范围(0: 全部, 30: 近30天, 365: 近一年)'}, 'sortField': {'type': 'string', 'description': '排序字段,可选值:write_doc_count、write_count、read_count、like_count'}, 'sortOrder': {'enum': ['desc', 'asc'], 'type': 'string', 'description': '排序方向,可选值:desc(降序)、asc(升序),默认为desc'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_group_book_statistics', 'description': '获取团队知识库的统计数据,包括各知识库的文档数、字数、阅读量等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'name': {'type': 'string', 'description': '知识库名称,用于过滤特定知识库'}, 'page': {'type': 'number', 'description': '页码,默认为1'}, 'limit': {'type': 'number', 'description': '每页数量,默认为10,最大为20'}, 'login': {'type': 'string', 'description': '团队的登录名或唯一标识'}, 'range': {'type': 'number', 'description': '时间范围(0: 全部, 30: 近30天, 365: 近一年)'}, 'sortField': {'type': 'string', 'description': '排序字段,可选值:content_updated_at_ms、word_count、post_count、read_count、like_count、watch_count、comment_count'}, 'sortOrder': {'enum': ['desc', 'asc'], 'type': 'string', 'description': '排序方向,可选值:desc(降序)、asc(升序),默认为desc'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_group_doc_statistics', 'description': '获取团队文档的统计数据,包括各文档的字数、阅读量、评论量等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'name': {'type': 'string', 'description': '文档名称,用于过滤特定文档'}, 'page': {'type': 'number', 'description': '页码,默认为1'}, 'limit': {'type': 'number', 'description': '每页数量,默认为10,最大为20'}, 'login': {'type': 'string', 'description': '团队的登录名或唯一标识'}, 'range': {'type': 'number', 'description': '时间范围(0: 全部, 30: 近30天, 365: 近一年)'}, 'bookId': {'type': 'number', 'description': '知识库ID,用于过滤特定知识库的文档'}, 'sortField': {'type': 'string', 'description': '排序字段,可选值:content_updated_at、word_count、read_count、like_count、comment_count、created_at'}, 'sortOrder': {'enum': ['desc', 'asc'], 'type': 'string', 'description': '排序方向,可选值:desc(降序)、asc(升序),默认为desc'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_doc_chunks_info', 'description': '获取文档的分块元信息,包括总块数、每块的字符数等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'slug'], 'properties': {'slug': {'type': 'string', 'description': '文档的唯一标识或短链接名称'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'chunk_size': {'type': 'number', 'description': '分块大小(字符数),默认为100000'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}] |
@HenryHaoson/Yuque-MCP-Server | Yuque MCP Server | Integrate with the Yuque API to manage documents and user information seamlessly. Create, read, update, and delete documents while accessing analytics and statistics for your knowledge base. Enhance your AI models with powerful tools to interact with Yuque data effortlessly. | 2025-03-22T23:00:34.493Z | 0 | https://smithery.ai/server/@HenryHaoson/Yuque-MCP-Server | true | null | null | [{'name': 'get_current_user', 'description': '获取当前认证用户的信息,包括用户ID、用户名、头像等语雀账号基本信息', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_user_docs', 'description': '获取当前用户的所有知识库文档列表,包括私人和协作文档', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_user_repos', 'description': '获取指定用户的知识库列表,知识库是语雀中组织文档的集合', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'login': {'type': 'string', 'description': '用户的登录名或唯一标识'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_repo_docs', 'description': '获取特定知识库中的所有文档列表,包括文档标题、更新时间等信息', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace'], 'properties': {'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_doc', 'description': '获取语雀中特定文档的详细内容,包括正文、修改历史和权限信息(支持分块处理大型文档)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'slug'], 'properties': {'slug': {'type': 'string', 'description': '文档的唯一标识或短链接名称'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'chunk_size': {'type': 'number', 'description': '分块大小(字符数),默认为100000'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}, 'chunk_index': {'type': 'number', 'description': '要获取的文档块索引,不提供则返回第一块或全部(如果内容较小)'}}, 'additionalProperties': False}}, {'name': 'create_doc', 'description': '在指定知识库中创建新的语雀文档,支持多种格式内容', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'title', 'slug', 'body'], 'properties': {'body': {'type': 'string', 'description': '文档内容,支持Markdown格式'}, 'slug': {'type': 'string', 'description': '文档的短链接名称,用于URL路径'}, 'title': {'type': 'string', 'description': '文档标题'}, 'format': {'type': 'string', 'description': '内容格式,可选值:markdown、html、lake,默认为 markdown'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}, 'public_level': {'type': 'number', 'description': '公开性,可选值:0(私密)、1(公开)、2(企业内公开),默认为 1'}}, 'additionalProperties': False}}, {'name': 'update_doc', 'description': '更新语雀中已存在的文档,可以修改标题、内容或权限设置', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'id'], 'properties': {'id': {'type': 'number', 'description': '要更新的文档ID'}, 'body': {'type': 'string', 'description': '文档的新内容,支持Markdown格式'}, 'slug': {'type': 'string', 'description': '文档的新短链接名称'}, 'title': {'type': 'string', 'description': '文档的新标题'}, 'format': {'type': 'string', 'description': '内容格式,可选值:markdown、html、lake'}, 'public': {'type': 'number', 'description': '文档的公开状态,0(私密)、1(公开)、2(企业内公开)'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'delete_doc', 'description': '从语雀知识库中删除指定文档,此操作不可撤销', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'id'], 'properties': {'id': {'type': 'number', 'description': '要删除的文档ID'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'search', 'description': '在语雀平台中搜索文档或知识库内容,支持范围和作者筛选', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query', 'type'], 'properties': {'page': {'type': 'number', 'description': '页码,默认为1'}, 'type': {'enum': ['doc', 'repo'], 'type': 'string', 'description': '要搜索的内容类型:doc(文档) 或 repo(知识库)'}, 'query': {'type': 'string', 'description': '搜索关键词'}, 'scope': {'type': 'string', 'description': '搜索范围,不填默认搜索当前用户/团队'}, 'creator': {'type': 'string', 'description': '仅搜索指定作者的内容'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_group_statistics', 'description': '获取团队的汇总统计数据,包括成员人数、文档数量、阅读量和互动数据等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'login': {'type': 'string', 'description': '团队的登录名或唯一标识'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_group_member_statistics', 'description': '获取团队成员的统计数据,包括各成员的编辑次数、阅读量、点赞量等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'name': {'type': 'string', 'description': '成员名称,用于过滤特定成员'}, 'page': {'type': 'number', 'description': '页码,默认为1'}, 'limit': {'type': 'number', 'description': '每页数量,默认为10,最大为20'}, 'login': {'type': 'string', 'description': '团队的登录名或唯一标识'}, 'range': {'type': 'number', 'description': '时间范围(0: 全部, 30: 近30天, 365: 近一年)'}, 'sortField': {'type': 'string', 'description': '排序字段,可选值:write_doc_count、write_count、read_count、like_count'}, 'sortOrder': {'enum': ['desc', 'asc'], 'type': 'string', 'description': '排序方向,可选值:desc(降序)、asc(升序),默认为desc'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_group_book_statistics', 'description': '获取团队知识库的统计数据,包括各知识库的文档数、字数、阅读量等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'name': {'type': 'string', 'description': '知识库名称,用于过滤特定知识库'}, 'page': {'type': 'number', 'description': '页码,默认为1'}, 'limit': {'type': 'number', 'description': '每页数量,默认为10,最大为20'}, 'login': {'type': 'string', 'description': '团队的登录名或唯一标识'}, 'range': {'type': 'number', 'description': '时间范围(0: 全部, 30: 近30天, 365: 近一年)'}, 'sortField': {'type': 'string', 'description': '排序字段,可选值:content_updated_at_ms、word_count、post_count、read_count、like_count、watch_count、comment_count'}, 'sortOrder': {'enum': ['desc', 'asc'], 'type': 'string', 'description': '排序方向,可选值:desc(降序)、asc(升序),默认为desc'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_group_doc_statistics', 'description': '获取团队文档的统计数据,包括各文档的字数、阅读量、评论量等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['login'], 'properties': {'name': {'type': 'string', 'description': '文档名称,用于过滤特定文档'}, 'page': {'type': 'number', 'description': '页码,默认为1'}, 'limit': {'type': 'number', 'description': '每页数量,默认为10,最大为20'}, 'login': {'type': 'string', 'description': '团队的登录名或唯一标识'}, 'range': {'type': 'number', 'description': '时间范围(0: 全部, 30: 近30天, 365: 近一年)'}, 'bookId': {'type': 'number', 'description': '知识库ID,用于过滤特定知识库的文档'}, 'sortField': {'type': 'string', 'description': '排序字段,可选值:content_updated_at、word_count、read_count、like_count、comment_count、created_at'}, 'sortOrder': {'enum': ['desc', 'asc'], 'type': 'string', 'description': '排序方向,可选值:desc(降序)、asc(升序),默认为desc'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}, {'name': 'get_doc_chunks_info', 'description': '获取文档的分块元信息,包括总块数、每块的字符数等', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespace', 'slug'], 'properties': {'slug': {'type': 'string', 'description': '文档的唯一标识或短链接名称'}, 'namespace': {'type': 'string', 'description': '知识库的命名空间,格式为 user/repo'}, 'chunk_size': {'type': 'number', 'description': '分块大小(字符数),默认为100000'}, 'accessToken': {'type': 'string', 'description': '用于认证 API 请求的令牌'}}, 'additionalProperties': False}}] |
@ngoiyaeric/mapbox-mcp-server | Mapbox MCP Server | Integrate Mapbox's powerful navigation and search capabilities into your applications. Access directions, travel matrices, and geocoding services seamlessly. Enhance your projects with real-time mapping functionalities using this server. | 2025-04-08T07:34:04.534Z | 0 | https://smithery.ai/server/@ngoiyaeric/mapbox-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'mapbox_directions', 'description': 'Get navigation route between two points', 'inputSchema': {'type': 'object', 'required': ['coordinates'], 'properties': {'profile': {'enum': ['driving-traffic', 'driving', 'walking', 'cycling'], 'type': 'string', 'default': 'driving-traffic', 'description': 'Navigation mode'}, 'coordinates': {'type': 'array', 'items': {'type': 'object', 'required': ['longitude', 'latitude'], 'properties': {'latitude': {'type': 'number', 'maximum': 90, 'minimum': -90, 'description': 'Latitude'}, 'longitude': {'type': 'number', 'maximum': 180, 'minimum': -180, 'description': 'Longitude'}}}, 'description': 'Array of coordinates'}}}}, {'name': 'mapbox_directions_by_places', 'description': 'Get navigation route between multiple places using their names', 'inputSchema': {'type': 'object', 'required': ['places'], 'properties': {'places': {'type': 'array', 'items': {'type': 'string'}, 'minItems': 2, 'description': 'Array of place names to route between'}, 'profile': {'enum': ['driving-traffic', 'driving', 'walking', 'cycling'], 'type': 'string', 'default': 'driving', 'description': 'Navigation mode'}, 'language': {'type': 'string', 'pattern': '^[a-z]{2}$', 'description': 'Language for geocoding results'}}}}, {'name': 'mapbox_matrix', 'description': 'Calculate travel time and distance matrices between coordinates', 'inputSchema': {'type': 'object', 'required': ['coordinates'], 'properties': {'profile': {'enum': ['driving', 'walking', 'cycling'], 'type': 'string', 'default': 'driving', 'description': 'Navigation mode'}, 'sources': {'type': 'array', 'items': {'type': 'number', 'minimum': 0}, 'description': 'Indices of source coordinates'}, 'bearings': {'type': 'array', 'items': {'type': 'object', 'required': ['angle', 'deviation'], 'properties': {'angle': {'type': 'number', 'maximum': 360, 'minimum': 0, 'description': 'Angle in degrees from true north'}, 'deviation': {'type': 'number', 'maximum': 180, 'minimum': 0, 'description': 'Allowed deviation in degrees'}}}, 'description': 'Bearings for coordinates'}, 'depart_at': {'type': 'string', 'pattern': '^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$', 'description': 'Departure time in ISO 8601 format'}, 'approaches': {'type': 'array', 'items': {'enum': ['unrestricted', 'curb'], 'type': 'string'}, 'description': 'Approaches to coordinates'}, 'annotations': {'enum': ['duration', 'distance', 'duration,distance'], 'type': 'string', 'default': 'duration,distance', 'description': 'Type of matrix to return'}, 'coordinates': {'type': 'array', 'items': {'type': 'object', 'required': ['longitude', 'latitude'], 'properties': {'latitude': {'type': 'number', 'maximum': 90, 'minimum': -90, 'description': 'Latitude'}, 'longitude': {'type': 'number', 'maximum': 180, 'minimum': -180, 'description': 'Longitude'}}}, 'maxItems': 25, 'minItems': 2, 'description': 'Array of coordinates'}, 'destinations': {'type': 'array', 'items': {'type': 'number', 'minimum': 0}, 'description': 'Indices of destination coordinates'}, 'fallback_speed': {'type': 'number', 'minimum': 0, 'description': 'Speed for direct path calculation when no route exists'}}}}, {'name': 'mapbox_matrix_by_places', 'description': 'Calculate travel time and distance matrices between places using their names', 'inputSchema': {'type': 'object', 'required': ['places'], 'properties': {'places': {'type': 'array', 'items': {'type': 'string'}, 'maxItems': 25, 'minItems': 2, 'description': 'Array of place names'}, 'profile': {'enum': ['driving', 'walking', 'cycling'], 'type': 'string', 'default': 'driving', 'description': 'Navigation mode'}, 'sources': {'type': 'array', 'items': {'type': 'number', 'minimum': 0}, 'description': 'Indices of source places'}, 'language': {'type': 'string', 'pattern': '^[a-z]{2}$', 'description': 'Language for geocoding results'}, 'depart_at': {'type': 'string', 'pattern': '^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$', 'description': 'Departure time in ISO 8601 format'}, 'annotations': {'enum': ['duration', 'distance', 'duration,distance'], 'type': 'string', 'default': 'duration,distance', 'description': 'Type of matrix to return'}, 'destinations': {'type': 'array', 'items': {'type': 'number', 'minimum': 0}, 'description': 'Indices of destination places'}, 'fallback_speed': {'type': 'number', 'minimum': 0, 'description': 'Speed for direct path calculation when no route exists'}}}}, {'name': 'mapbox_geocoding', 'description': 'Search for places and convert addresses into coordinates', 'inputSchema': {'type': 'object', 'required': ['searchText'], 'properties': {'limit': {'type': 'number', 'default': 5, 'maximum': 10, 'minimum': 1, 'description': 'Limit the number of results'}, 'types': {'type': 'array', 'items': {'enum': ['country', 'region', 'postcode', 'district', 'place', 'locality', 'neighborhood', 'address', 'poi'], 'type': 'string'}, 'description': 'Filter results by feature types'}, 'language': {'type': 'string', 'pattern': '^[a-z]{2}$', 'description': 'Language of the search results'}, 'fuzzyMatch': {'type': 'boolean', 'default': True, 'description': 'Enable/disable fuzzy matching'}, 'searchText': {'type': 'string', 'description': 'The search text to geocode'}}}}] |
@TheSethRose/mcp-server-starter | MCP Server Starter | Build a robust server to enable AI agents to interact with various tools. | 2025-02-11T22:02:10.921Z | 49 | https://smithery.ai/server/@TheSethRose/mcp-server-starter | true | null | {
"scanPassed": true
} | [{'name': 'calculate', 'description': 'Perform basic arithmetic operations', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['a', 'b', 'operation'], 'properties': {'a': {'type': 'number', 'maximum': 9007199254740991, 'minimum': -9007199254740991, 'description': 'First number for calculation'}, 'b': {'type': 'number', 'maximum': 9007199254740991, 'minimum': -9007199254740991, 'description': 'Second number for calculation'}, 'operation': {'enum': ['add', 'subtract', 'multiply', 'divide'], 'type': 'string', 'description': 'The arithmetic operation to perform'}}, 'additionalProperties': False}}, {'name': 'fetch_user', 'description': 'Fetch user details from JSONPlaceholder API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['userId'], 'properties': {'userId': {'type': 'integer', 'description': 'ID of the user to fetch (must be a positive integer)', 'exclusiveMinimum': 0}}, 'additionalProperties': False}}] |
@TheSethRose/mcp-server-starter | MCP Server Starter | Build a robust server to enable AI agents to interact with various tools. | 2025-02-11T22:02:10.921Z | 49 | https://smithery.ai/server/@TheSethRose/mcp-server-starter | true | null | {
"scanPassed": true
} | [{'name': 'calculate', 'description': 'Perform basic arithmetic operations', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['a', 'b', 'operation'], 'properties': {'a': {'type': 'number', 'maximum': 9007199254740991, 'minimum': -9007199254740991, 'description': 'First number for calculation'}, 'b': {'type': 'number', 'maximum': 9007199254740991, 'minimum': -9007199254740991, 'description': 'Second number for calculation'}, 'operation': {'enum': ['add', 'subtract', 'multiply', 'divide'], 'type': 'string', 'description': 'The arithmetic operation to perform'}}, 'additionalProperties': False}}, {'name': 'fetch_user', 'description': 'Fetch user details from JSONPlaceholder API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['userId'], 'properties': {'userId': {'type': 'integer', 'description': 'ID of the user to fetch (must be a positive integer)', 'exclusiveMinimum': 0}}, 'additionalProperties': False}}] |
@flipt-io/mcp-server-flipt | Flipt MCP Server | Enable AI assistants to manage feature flags effortlessly. Interact with namespaces, flags, segments, and rules to enhance your application's feature management capabilities. Simplify flag evaluations and toggling with a seamless integration into your AI workflows. | 2025-03-31T23:00:28.876Z | 0 | https://smithery.ai/server/@flipt-io/mcp-server-flipt | true | null | null | [{'name': 'list_namespaces', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'create_namespace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key', 'name'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'description': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'update_namespace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key', 'name'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'description': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'delete_namespace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key'], 'properties': {'key': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'list_flags', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey'], 'properties': {'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'get_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey'], 'properties': {'flagKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key', 'name', 'type'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'type': {'enum': ['VARIANT_FLAG_TYPE', 'BOOLEAN_FLAG_TYPE'], 'type': 'string'}, 'enabled': {'type': 'boolean'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'update_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key', 'name'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'enabled': {'type': 'boolean'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'toggle_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'enabled'], 'properties': {'enabled': {'type': 'boolean'}, 'flagKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'list_segments', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey'], 'properties': {'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'get_segment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'segmentKey'], 'properties': {'segmentKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_segment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key', 'name', 'matchType'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'matchType': {'enum': ['ALL_MATCH_TYPE', 'ANY_MATCH_TYPE'], 'type': 'string'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'update_segment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key', 'name', 'matchType'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'matchType': {'enum': ['ALL_MATCH_TYPE', 'ANY_MATCH_TYPE'], 'type': 'string'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_segment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'evaluate_boolean_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'entityId'], 'properties': {'context': {'type': 'object', 'additionalProperties': {'type': 'string'}}, 'flagKey': {'type': 'string', 'minLength': 1}, 'entityId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'evaluate_variant_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'entityId'], 'properties': {'context': {'type': 'object', 'additionalProperties': {'type': 'string'}}, 'flagKey': {'type': 'string', 'minLength': 1}, 'entityId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'evaluate_batch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['requests'], 'properties': {'requests': {'type': 'array', 'items': {'type': 'object', 'required': ['namespaceKey', 'flagKey', 'entityId'], 'properties': {'context': {'type': 'object', 'additionalProperties': {'type': 'string'}}, 'flagKey': {'type': 'string', 'minLength': 1}, 'entityId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, {'name': 'create_constraint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'segmentKey', 'type', 'property', 'operator'], 'properties': {'type': {'enum': ['STRING_COMPARISON_TYPE', 'NUMBER_COMPARISON_TYPE', 'BOOLEAN_COMPARISON_TYPE', 'DATETIME_COMPARISON_TYPE', 'ENTITY_ID_COMPARISON_TYPE'], 'type': 'string'}, 'value': {'type': 'string'}, 'operator': {'type': 'string', 'minLength': 1}, 'property': {'type': 'string', 'minLength': 1}, 'segmentKey': {'type': 'string', 'minLength': 1}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_constraint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'segmentKey', 'constraintId'], 'properties': {'segmentKey': {'type': 'string', 'minLength': 1}, 'constraintId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_variant', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'key'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string'}, 'flagKey': {'type': 'string', 'minLength': 1}, 'attachment': {'type': 'string'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_variant', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'variantId'], 'properties': {'flagKey': {'type': 'string', 'minLength': 1}, 'variantId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_rule', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'segmentKey'], 'properties': {'rank': {'type': 'integer'}, 'flagKey': {'type': 'string', 'minLength': 1}, 'segmentKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}, 'segmentOperator': {'enum': ['OR_SEGMENT_OPERATOR', 'AND_SEGMENT_OPERATOR'], 'type': 'string'}}, 'additionalProperties': False}}, {'name': 'delete_rule', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'ruleId'], 'properties': {'ruleId': {'type': 'string', 'minLength': 1}, 'flagKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_distribution', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'ruleId', 'variantId', 'rollout'], 'properties': {'ruleId': {'type': 'string', 'minLength': 1}, 'flagKey': {'type': 'string', 'minLength': 1}, 'rollout': {'type': 'number', 'maximum': 100, 'minimum': 0}, 'variantId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_distribution', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'ruleId', 'distributionId'], 'properties': {'ruleId': {'type': 'string', 'minLength': 1}, 'flagKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}, 'distributionId': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_rollout', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'rank'], 'properties': {'rank': {'type': 'integer', 'minimum': 1}, 'flagKey': {'type': 'string', 'minLength': 1}, 'segment': {'type': 'object', 'required': ['segmentKey'], 'properties': {'value': {'type': 'boolean'}, 'segmentKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}, 'threshold': {'type': 'object', 'required': ['percentage', 'value'], 'properties': {'value': {'type': 'boolean'}, 'percentage': {'type': 'number', 'maximum': 100, 'minimum': 0}}, 'additionalProperties': False}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_rollout', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'rolloutId'], 'properties': {'flagKey': {'type': 'string', 'minLength': 1}, 'rolloutId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}] |
@flipt-io/mcp-server-flipt | Flipt MCP Server | Enable AI assistants to manage feature flags effortlessly. Interact with namespaces, flags, segments, and rules to enhance your application's feature management capabilities. Simplify flag evaluations and toggling with a seamless integration into your AI workflows. | 2025-03-31T23:00:28.876Z | 0 | https://smithery.ai/server/@flipt-io/mcp-server-flipt | true | null | null | [{'name': 'list_namespaces', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'create_namespace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key', 'name'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'description': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'update_namespace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key', 'name'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'description': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'delete_namespace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key'], 'properties': {'key': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'list_flags', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey'], 'properties': {'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'get_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey'], 'properties': {'flagKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key', 'name', 'type'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'type': {'enum': ['VARIANT_FLAG_TYPE', 'BOOLEAN_FLAG_TYPE'], 'type': 'string'}, 'enabled': {'type': 'boolean'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'update_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key', 'name'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'enabled': {'type': 'boolean'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'toggle_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'enabled'], 'properties': {'enabled': {'type': 'boolean'}, 'flagKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'list_segments', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey'], 'properties': {'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'get_segment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'segmentKey'], 'properties': {'segmentKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_segment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key', 'name', 'matchType'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'matchType': {'enum': ['ALL_MATCH_TYPE', 'ANY_MATCH_TYPE'], 'type': 'string'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'update_segment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key', 'name', 'matchType'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string', 'minLength': 1}, 'matchType': {'enum': ['ALL_MATCH_TYPE', 'ANY_MATCH_TYPE'], 'type': 'string'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_segment', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'key'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'evaluate_boolean_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'entityId'], 'properties': {'context': {'type': 'object', 'additionalProperties': {'type': 'string'}}, 'flagKey': {'type': 'string', 'minLength': 1}, 'entityId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'evaluate_variant_flag', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'entityId'], 'properties': {'context': {'type': 'object', 'additionalProperties': {'type': 'string'}}, 'flagKey': {'type': 'string', 'minLength': 1}, 'entityId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'evaluate_batch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['requests'], 'properties': {'requests': {'type': 'array', 'items': {'type': 'object', 'required': ['namespaceKey', 'flagKey', 'entityId'], 'properties': {'context': {'type': 'object', 'additionalProperties': {'type': 'string'}}, 'flagKey': {'type': 'string', 'minLength': 1}, 'entityId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, {'name': 'create_constraint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'segmentKey', 'type', 'property', 'operator'], 'properties': {'type': {'enum': ['STRING_COMPARISON_TYPE', 'NUMBER_COMPARISON_TYPE', 'BOOLEAN_COMPARISON_TYPE', 'DATETIME_COMPARISON_TYPE', 'ENTITY_ID_COMPARISON_TYPE'], 'type': 'string'}, 'value': {'type': 'string'}, 'operator': {'type': 'string', 'minLength': 1}, 'property': {'type': 'string', 'minLength': 1}, 'segmentKey': {'type': 'string', 'minLength': 1}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_constraint', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'segmentKey', 'constraintId'], 'properties': {'segmentKey': {'type': 'string', 'minLength': 1}, 'constraintId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_variant', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'key'], 'properties': {'key': {'type': 'string', 'minLength': 1}, 'name': {'type': 'string'}, 'flagKey': {'type': 'string', 'minLength': 1}, 'attachment': {'type': 'string'}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_variant', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'variantId'], 'properties': {'flagKey': {'type': 'string', 'minLength': 1}, 'variantId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_rule', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'segmentKey'], 'properties': {'rank': {'type': 'integer'}, 'flagKey': {'type': 'string', 'minLength': 1}, 'segmentKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}, 'segmentOperator': {'enum': ['OR_SEGMENT_OPERATOR', 'AND_SEGMENT_OPERATOR'], 'type': 'string'}}, 'additionalProperties': False}}, {'name': 'delete_rule', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'ruleId'], 'properties': {'ruleId': {'type': 'string', 'minLength': 1}, 'flagKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_distribution', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'ruleId', 'variantId', 'rollout'], 'properties': {'ruleId': {'type': 'string', 'minLength': 1}, 'flagKey': {'type': 'string', 'minLength': 1}, 'rollout': {'type': 'number', 'maximum': 100, 'minimum': 0}, 'variantId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_distribution', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'ruleId', 'distributionId'], 'properties': {'ruleId': {'type': 'string', 'minLength': 1}, 'flagKey': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}, 'distributionId': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'create_rollout', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'rank'], 'properties': {'rank': {'type': 'integer', 'minimum': 1}, 'flagKey': {'type': 'string', 'minLength': 1}, 'segment': {'type': 'object', 'required': ['segmentKey'], 'properties': {'value': {'type': 'boolean'}, 'segmentKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}, 'threshold': {'type': 'object', 'required': ['percentage', 'value'], 'properties': {'value': {'type': 'boolean'}, 'percentage': {'type': 'number', 'maximum': 100, 'minimum': 0}}, 'additionalProperties': False}, 'description': {'type': 'string'}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}, {'name': 'delete_rollout', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['namespaceKey', 'flagKey', 'rolloutId'], 'properties': {'flagKey': {'type': 'string', 'minLength': 1}, 'rolloutId': {'type': 'string', 'minLength': 1}, 'namespaceKey': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}}] |
@jpablomm/mcp-canvas-hackathon | Canvas Learning Management System Server | Provide seamless access to Canvas LMS data and operations through a local interface. Manage courses, assignments, submissions, users, and announcements efficiently. Enable integration with Claude Desktop for interactive Canvas API usage. | 2025-05-02T19:30:30.817Z | 0 | https://smithery.ai/server/@jpablomm/mcp-canvas-hackathon | true | null | {
"scanPassed": true
} | [{'name': 'list_courses', 'description': '', 'inputSchema': {'type': 'object', 'title': 'list_coursesArguments', 'properties': {'include_all': {'type': 'boolean', 'title': 'Include All', 'default': False}, 'include_concluded': {'type': 'boolean', 'title': 'Include Concluded', 'default': False}}}}, {'name': 'get_course_details', 'description': 'Get detailed information about a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'get_course_detailsArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_assignments', 'description': 'List assignments for a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_assignmentsArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'get_assignment_details', 'description': 'Get detailed information about a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n ', 'inputSchema': {'type': 'object', 'title': 'get_assignment_detailsArguments', 'required': ['course_identifier', 'assignment_id'], 'properties': {'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'assign_peer_review', 'description': 'Manually assign a peer review to a student for a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n reviewer_id: The Canvas user ID of the student who will do the review\n reviewee_id: The Canvas user ID of the student whose submission will be reviewed\n ', 'inputSchema': {'type': 'object', 'title': 'assign_peer_reviewArguments', 'required': ['course_identifier', 'assignment_id', 'reviewer_id', 'reviewee_id'], 'properties': {'reviewee_id': {'type': 'string', 'title': 'Reviewee Id'}, 'reviewer_id': {'type': 'string', 'title': 'Reviewer Id'}, 'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_peer_reviews', 'description': 'List all peer review assignments for a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_peer_reviewsArguments', 'required': ['course_identifier', 'assignment_id'], 'properties': {'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_submissions', 'description': 'List submissions for a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_submissionsArguments', 'required': ['course_identifier', 'assignment_id'], 'properties': {'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_users', 'description': 'List users enrolled in a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_usersArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_announcements', 'description': 'List announcements for a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_announcementsArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_groups', 'description': 'List all groups and their members for a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_groupsArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'get_student_analytics', 'description': 'Get detailed analytics about student activity, participation, and progress in a course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n current_only: Whether to include only assignments due on or before today\n include_participation: Whether to include participation data (discussions, submissions)\n include_assignment_stats: Whether to include assignment completion statistics\n include_access_stats: Whether to include course access statistics\n ', 'inputSchema': {'type': 'object', 'title': 'get_student_analyticsArguments', 'required': ['course_identifier'], 'properties': {'current_only': {'type': 'boolean', 'title': 'Current Only', 'default': True}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}, 'include_access_stats': {'type': 'boolean', 'title': 'Include Access Stats', 'default': True}, 'include_participation': {'type': 'boolean', 'title': 'Include Participation', 'default': True}, 'include_assignment_stats': {'type': 'boolean', 'title': 'Include Assignment Stats', 'default': True}}}}, {'name': 'get_assignment_analytics', 'description': 'Get detailed analytics about student performance on a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n ', 'inputSchema': {'type': 'object', 'title': 'get_assignment_analyticsArguments', 'required': ['course_identifier', 'assignment_id'], 'properties': {'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}] |
@jpablomm/mcp-canvas-hackathon | Canvas Learning Management System Server | Provide seamless access to Canvas LMS data and operations through a local interface. Manage courses, assignments, submissions, users, and announcements efficiently. Enable integration with Claude Desktop for interactive Canvas API usage. | 2025-05-02T19:30:30.817Z | 0 | https://smithery.ai/server/@jpablomm/mcp-canvas-hackathon | true | null | {
"scanPassed": true
} | [{'name': 'list_courses', 'description': '', 'inputSchema': {'type': 'object', 'title': 'list_coursesArguments', 'properties': {'include_all': {'type': 'boolean', 'title': 'Include All', 'default': False}, 'include_concluded': {'type': 'boolean', 'title': 'Include Concluded', 'default': False}}}}, {'name': 'get_course_details', 'description': 'Get detailed information about a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'get_course_detailsArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_assignments', 'description': 'List assignments for a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_assignmentsArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'get_assignment_details', 'description': 'Get detailed information about a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n ', 'inputSchema': {'type': 'object', 'title': 'get_assignment_detailsArguments', 'required': ['course_identifier', 'assignment_id'], 'properties': {'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'assign_peer_review', 'description': 'Manually assign a peer review to a student for a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n reviewer_id: The Canvas user ID of the student who will do the review\n reviewee_id: The Canvas user ID of the student whose submission will be reviewed\n ', 'inputSchema': {'type': 'object', 'title': 'assign_peer_reviewArguments', 'required': ['course_identifier', 'assignment_id', 'reviewer_id', 'reviewee_id'], 'properties': {'reviewee_id': {'type': 'string', 'title': 'Reviewee Id'}, 'reviewer_id': {'type': 'string', 'title': 'Reviewer Id'}, 'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_peer_reviews', 'description': 'List all peer review assignments for a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_peer_reviewsArguments', 'required': ['course_identifier', 'assignment_id'], 'properties': {'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_submissions', 'description': 'List submissions for a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_submissionsArguments', 'required': ['course_identifier', 'assignment_id'], 'properties': {'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_users', 'description': 'List users enrolled in a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_usersArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_announcements', 'description': 'List announcements for a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_announcementsArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'list_groups', 'description': 'List all groups and their members for a specific course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n ', 'inputSchema': {'type': 'object', 'title': 'list_groupsArguments', 'required': ['course_identifier'], 'properties': {'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}, {'name': 'get_student_analytics', 'description': 'Get detailed analytics about student activity, participation, and progress in a course.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n current_only: Whether to include only assignments due on or before today\n include_participation: Whether to include participation data (discussions, submissions)\n include_assignment_stats: Whether to include assignment completion statistics\n include_access_stats: Whether to include course access statistics\n ', 'inputSchema': {'type': 'object', 'title': 'get_student_analyticsArguments', 'required': ['course_identifier'], 'properties': {'current_only': {'type': 'boolean', 'title': 'Current Only', 'default': True}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}, 'include_access_stats': {'type': 'boolean', 'title': 'Include Access Stats', 'default': True}, 'include_participation': {'type': 'boolean', 'title': 'Include Participation', 'default': True}, 'include_assignment_stats': {'type': 'boolean', 'title': 'Include Assignment Stats', 'default': True}}}}, {'name': 'get_assignment_analytics', 'description': 'Get detailed analytics about student performance on a specific assignment.\n\n Args:\n course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID\n assignment_id: The Canvas assignment ID\n ', 'inputSchema': {'type': 'object', 'title': 'get_assignment_analyticsArguments', 'required': ['course_identifier', 'assignment_id'], 'properties': {'assignment_id': {'type': 'string', 'title': 'Assignment Id'}, 'course_identifier': {'type': 'string', 'title': 'Course Identifier'}}}}] |
@jlgrimes/ptcg-mcp | Pokemon TCG Card Search | Search and display Pokemon Trading Card Game cards effortlessly. Ask questions about card attributes and receive detailed information along with high-resolution images. Enhance your gameplay with quick access to card legality and statistics. | 2025-04-10T02:00:27.079Z | 0 | https://smithery.ai/server/@jlgrimes/ptcg-mcp | true | null | {
"scanPassed": true
} | [{'name': 'pokemon-card-search', 'description': 'Searches for Pokemon cards', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'hp': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The HP (Hit Points) of the Pokemon card. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher). If no HP is explicitly mentioned, omit this field entirely.'}, 'set': {'type': 'object', 'required': ['name', 'series'], 'properties': {'name': {'type': 'string'}, 'series': {'type': 'string'}}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The set information for this card. Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "set.id:sm1" to find cards from a specific set. If no set information is explicitly mentioned, omit this field entirely.', 'additionalProperties': False}, 'name': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. IMPORTANT: For hyphenated names like "chien-pao", you MUST preserve the hyphen exactly as it appears. For example, "chien-pao ex" should have name "chien-pao" (with the hyphen) and subtypes ["EX"]. Never remove or modify hyphens in the name. Use * for wildcard matching (e.g., "char*" to match all cards starting with "char", or "char*der" to match cards starting with "char" and ending with "der"). Use ! for exact matching (e.g., "!value" to match only exact value). IMPORTANT: If no name is explicitly provided in the query, do not include a name field at all.'}, 'page': {'type': 'number', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The page number for pagination. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher). If no page is explicitly mentioned, omit this field entirely.'}, 'types': {'type': 'array', 'items': {'type': 'string'}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The types of the Pokemon card (e.g., ["Grass", "Psychic"]). Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). If no types are explicitly mentioned, omit this field entirely.'}, 'attacks': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'cost', 'damage', 'text'], 'properties': {'cost': {'type': 'array', 'items': {'type': 'string'}}, 'name': {'type': 'string'}, 'text': {'type': 'string'}, 'damage': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The attacks available to this Pokemon card. Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "attacks.name:Spelunk" to find cards with a specific attack name. If no attack information is explicitly mentioned, omit this field entirely.'}, 'pageSize': {'type': 'number', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The number of cards per page. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher). If no page size is explicitly mentioned, omit this field entirely.'}, 'subtypes': {'type': 'array', 'items': {'enum': ['BREAK', 'Baby', 'Basic', 'EX', 'GX', 'Goldenrod Game Corner', 'Item', 'LEGEND', 'Level-Up', 'MEGA', 'Pokémon Tool', 'Pokémon Tool F', 'Rapid Strike', 'Restored', "Rocket's Secret Machine", 'Single Strike', 'Special', 'Stadium', 'Stage 1', 'Stage 2', 'Supporter', 'TAG TEAM', 'Technical Machine', 'V', 'VMAX', 'VSTAR', 'Tera'], 'type': 'string'}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. For example, "chien pao ex" should have name "chien pao" and subtypes ["EX"]. If multiple subtypes are present like "basic pikachu ex", use ["Basic", "EX"]. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). If no subtypes are explicitly mentioned in the query, omit this field entirely.'}, 'evolvesTo': {'type': 'array', 'items': {'type': 'string'}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The Pokemon this card evolves into. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). If no evolution information is explicitly mentioned, omit this field entirely.'}, 'legalities': {'type': 'object', 'properties': {'expanded': {'enum': ['legal', 'banned'], 'type': 'string'}, 'standard': {'enum': ['legal', 'banned'], 'type': 'string'}, 'unlimited': {'enum': ['legal', 'banned'], 'type': 'string'}}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. The legalities for a given card. For each legality passed in, the value is "legal" without quotes. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "legalities.standard:banned" to find cards banned in Standard. If no legalities are explicitly mentioned, omit this field entirely.', 'additionalProperties': False}, 'weaknesses': {'type': 'array', 'items': {'type': 'object', 'required': ['type', 'value'], 'properties': {'type': {'type': 'string'}, 'value': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The weaknesses of this Pokemon card. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "weaknesses.type:Water" to find cards weak to Water. If no weakness information is explicitly mentioned, omit this field entirely.'}, 'regulationMark': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The regulation mark (also known as "block") of the card (e.g., "F", "G", "H"). This indicates which regulation block the card belongs to. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). If no regulation mark is explicitly mentioned, omit this field entirely.'}, 'convertedRetreatCost': {'type': 'number', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. The converted retreat cost for a given Pokemon card. If no converted retreat cost is explicitly mentioned, omit this field. If the user explicitly specifies "free retreat", set this to 0. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher).'}, 'nationalPokedexNumbers': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The National Pokedex numbers of the Pokemon. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher). If no Pokedex numbers are explicitly mentioned, omit this field entirely.'}}, 'additionalProperties': False}}, {'name': 'pokemon-card-price', 'description': 'Look up the current market price for a Pokemon card', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'set': {'type': 'object', 'required': ['name', 'series'], 'properties': {'name': {'type': 'string'}, 'series': {'type': 'string'}}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The set information for this card. Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "set.id:sm1" to find cards from a specific set. If no set information is explicitly mentioned, omit this field entirely.', 'additionalProperties': False}, 'name': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. IMPORTANT: For hyphenated names like "chien-pao", you MUST preserve the hyphen exactly as it appears. For example, "chien-pao ex" should have name "chien-pao" (with the hyphen) and subtypes ["EX"]. Never remove or modify hyphens in the name. Use * for wildcard matching (e.g., "char*" to match all cards starting with "char", or "char*der" to match cards starting with "char" and ending with "der"). Use ! for exact matching (e.g., "!value" to match only exact value). IMPORTANT: If no name is explicitly provided in the query, do not include a name field at all.'}}, 'additionalProperties': False}}] |
@jlgrimes/ptcg-mcp | Pokemon TCG Card Search | Search and display Pokemon Trading Card Game cards effortlessly. Ask questions about card attributes and receive detailed information along with high-resolution images. Enhance your gameplay with quick access to card legality and statistics. | 2025-04-10T02:00:27.079Z | 0 | https://smithery.ai/server/@jlgrimes/ptcg-mcp | true | null | {
"scanPassed": true
} | [{'name': 'pokemon-card-search', 'description': 'Searches for Pokemon cards', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'hp': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The HP (Hit Points) of the Pokemon card. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher). If no HP is explicitly mentioned, omit this field entirely.'}, 'set': {'type': 'object', 'required': ['name', 'series'], 'properties': {'name': {'type': 'string'}, 'series': {'type': 'string'}}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The set information for this card. Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "set.id:sm1" to find cards from a specific set. If no set information is explicitly mentioned, omit this field entirely.', 'additionalProperties': False}, 'name': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. IMPORTANT: For hyphenated names like "chien-pao", you MUST preserve the hyphen exactly as it appears. For example, "chien-pao ex" should have name "chien-pao" (with the hyphen) and subtypes ["EX"]. Never remove or modify hyphens in the name. Use * for wildcard matching (e.g., "char*" to match all cards starting with "char", or "char*der" to match cards starting with "char" and ending with "der"). Use ! for exact matching (e.g., "!value" to match only exact value). IMPORTANT: If no name is explicitly provided in the query, do not include a name field at all.'}, 'page': {'type': 'number', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The page number for pagination. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher). If no page is explicitly mentioned, omit this field entirely.'}, 'types': {'type': 'array', 'items': {'type': 'string'}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The types of the Pokemon card (e.g., ["Grass", "Psychic"]). Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). If no types are explicitly mentioned, omit this field entirely.'}, 'attacks': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'cost', 'damage', 'text'], 'properties': {'cost': {'type': 'array', 'items': {'type': 'string'}}, 'name': {'type': 'string'}, 'text': {'type': 'string'}, 'damage': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The attacks available to this Pokemon card. Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "attacks.name:Spelunk" to find cards with a specific attack name. If no attack information is explicitly mentioned, omit this field entirely.'}, 'pageSize': {'type': 'number', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The number of cards per page. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher). If no page size is explicitly mentioned, omit this field entirely.'}, 'subtypes': {'type': 'array', 'items': {'enum': ['BREAK', 'Baby', 'Basic', 'EX', 'GX', 'Goldenrod Game Corner', 'Item', 'LEGEND', 'Level-Up', 'MEGA', 'Pokémon Tool', 'Pokémon Tool F', 'Rapid Strike', 'Restored', "Rocket's Secret Machine", 'Single Strike', 'Special', 'Stadium', 'Stage 1', 'Stage 2', 'Supporter', 'TAG TEAM', 'Technical Machine', 'V', 'VMAX', 'VSTAR', 'Tera'], 'type': 'string'}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. For example, "chien pao ex" should have name "chien pao" and subtypes ["EX"]. If multiple subtypes are present like "basic pikachu ex", use ["Basic", "EX"]. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). If no subtypes are explicitly mentioned in the query, omit this field entirely.'}, 'evolvesTo': {'type': 'array', 'items': {'type': 'string'}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The Pokemon this card evolves into. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). If no evolution information is explicitly mentioned, omit this field entirely.'}, 'legalities': {'type': 'object', 'properties': {'expanded': {'enum': ['legal', 'banned'], 'type': 'string'}, 'standard': {'enum': ['legal', 'banned'], 'type': 'string'}, 'unlimited': {'enum': ['legal', 'banned'], 'type': 'string'}}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. The legalities for a given card. For each legality passed in, the value is "legal" without quotes. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "legalities.standard:banned" to find cards banned in Standard. If no legalities are explicitly mentioned, omit this field entirely.', 'additionalProperties': False}, 'weaknesses': {'type': 'array', 'items': {'type': 'object', 'required': ['type', 'value'], 'properties': {'type': {'type': 'string'}, 'value': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The weaknesses of this Pokemon card. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "weaknesses.type:Water" to find cards weak to Water. If no weakness information is explicitly mentioned, omit this field entirely.'}, 'regulationMark': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The regulation mark (also known as "block") of the card (e.g., "F", "G", "H"). This indicates which regulation block the card belongs to. Use negative values with a "-" prefix to exclude values (e.g., ["-value"] to exclude value). Use ! for exact matching (e.g., "!value" to match only exact value). If no regulation mark is explicitly mentioned, omit this field entirely.'}, 'convertedRetreatCost': {'type': 'number', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. The converted retreat cost for a given Pokemon card. If no converted retreat cost is explicitly mentioned, omit this field. If the user explicitly specifies "free retreat", set this to 0. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher).'}, 'nationalPokedexNumbers': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The National Pokedex numbers of the Pokemon. Use ! for exact matching (e.g., "!value" to match only exact value). Use [ and ] for inclusive ranges (e.g., [1 TO 3] for values 1-3). Use { and } for exclusive ranges (e.g., {1 TO 3} for values more than 1 and less than 3). Use * for unbounded ranges (e.g., [* TO 100] for values up to 100, or [100 TO *] for values 100 or higher). If no Pokedex numbers are explicitly mentioned, omit this field entirely.'}}, 'additionalProperties': False}}, {'name': 'pokemon-card-price', 'description': 'Look up the current market price for a Pokemon card', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'set': {'type': 'object', 'required': ['name', 'series'], 'properties': {'name': {'type': 'string'}, 'series': {'type': 'string'}}, 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The set information for this card. Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "set.id:sm1" to find cards from a specific set. If no set information is explicitly mentioned, omit this field entirely.', 'additionalProperties': False}, 'name': {'type': 'string', 'description': 'CRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. IMPORTANT: For hyphenated names like "chien-pao", you MUST preserve the hyphen exactly as it appears. For example, "chien-pao ex" should have name "chien-pao" (with the hyphen) and subtypes ["EX"]. Never remove or modify hyphens in the name. Use * for wildcard matching (e.g., "char*" to match all cards starting with "char", or "char*der" to match cards starting with "char" and ending with "der"). Use ! for exact matching (e.g., "!value" to match only exact value). IMPORTANT: If no name is explicitly provided in the query, do not include a name field at all.'}}, 'additionalProperties': False}}] |
@B-Step62/mcp-server-mlflow | MLflow Prompt Registry Server | Access and manage prompt templates seamlessly from MLflow. Load and utilize prompt templates in Claude Desktop for efficient task automation and workflow management. | 2025-04-01T22:01:18.208Z | 0 | https://smithery.ai/server/@B-Step62/mcp-server-mlflow | true | null | {
"scanPassed": true
} | [{'name': 'list-prompts', 'description': 'List prompts that are stored in MLflow', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'cursor': {'type': 'string', 'description': 'Cursor to paginate through prompts'}, 'filter': {'type': 'string', 'description': 'Filter to search for prompts'}}, 'additionalProperties': False}}, {'name': 'get-prompt', 'description': 'Get a prompt that is stored in MLflow', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the prompt to retrieve, use list-prompts to get a list of prompts'}, 'arguments': {'type': 'object', 'description': 'Arguments with prompt variables to pass to the prompt template, json object, e.g. {"<name>":"<value>"}', 'additionalProperties': {'type': 'string'}}}, 'additionalProperties': False}}] |
@jun85664396/pump-fun-data-mcp | Pump.fun Data Fetch Tool | Fetch and integrate data seamlessly for your applications using the Model Context Protocol. Enhance your projects with real-time data access and manipulation capabilities. Simplify your data interactions and improve efficiency with this powerful tool. | 2025-03-26T17:15:49.265Z | 0 | https://smithery.ai/server/@jun85664396/pump-fun-data-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_featured_coins', 'description': 'Get a list of featured coins', 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'default': 24, 'description': 'The number of coins to return (default: 24)'}, 'offset': {'type': 'number', 'default': 0, 'description': 'The offset to start from (default: 0)'}, 'includeNsfw': {'type': 'boolean', 'default': True, 'description': 'Include NSFW coins (default: true)'}}}}, {'name': 'get_coins', 'description': 'Get a list of coins', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'sort': {'type': 'string', 'default': 'market_cap', 'description': 'The field to sort by (market_cap, last_trade_timestamp, created_timestamp, last_reply)'}, 'limit': {'type': 'number', 'default': 24, 'description': 'The number of coins to return (default: 24)'}, 'order': {'type': 'string', 'default': 'DESC', 'description': 'The order to sort by (ASC, DESC)'}, 'offset': {'type': 'number', 'default': 0, 'description': 'The offset to start from (default: 0)'}, 'includeNsfw': {'type': 'boolean', 'default': True, 'description': 'Include NSFW coins (default: true)'}}}}, {'name': 'get_coin_info', 'description': 'Get information about a coin', 'inputSchema': {'type': 'object', 'required': ['mintId'], 'properties': {'mintId': {'type': 'string', 'description': 'The mint id of the coin(coin address)'}}}}] |
@GeLi2001/datadog-mcp-server | Datadog MCP Server | Interact with the Datadog API to monitor your systems effectively. Access monitor data, retrieve dashboards, query metrics, and manage incidents seamlessly. Enhance your observability with comprehensive error handling and advanced log searching capabilities. | 2025-04-03T23:00:45.297Z | 0 | https://smithery.ai/server/@GeLi2001/datadog-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'get-monitors', 'description': "Fetch monitors from Datadog with optional filtering. Use groupStates to filter by monitor status (e.g., 'alert', 'warn', 'no data'), tags or monitorTags to filter by tag criteria, and limit to control result size.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'tags': {'type': 'string'}, 'limit': {'type': 'number', 'default': 100}, 'groupStates': {'type': 'array', 'items': {'type': 'string'}}, 'monitorTags': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-monitor', 'description': 'Get detailed information about a specific Datadog monitor by its ID. Use this to retrieve the complete configuration, status, and other details of a single monitor.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['monitorId'], 'properties': {'monitorId': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'get-dashboards', 'description': 'Retrieve a list of all dashboards from Datadog. Useful for discovering available dashboards and their IDs for further exploration.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'default': 100}, 'filterConfigured': {'type': 'boolean'}}, 'additionalProperties': False}}, {'name': 'get-dashboard', 'description': 'Get the complete definition of a specific Datadog dashboard by its ID. Returns all widgets, layout, and configuration details.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['dashboardId'], 'properties': {'dashboardId': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-metrics', 'description': 'List available metrics from Datadog. Optionally use the q parameter to search for specific metrics matching a pattern. Helpful for discovering metrics to use in monitors or dashboards.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'q': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-metric-metadata', 'description': "Retrieve detailed metadata about a specific metric, including its type, description, unit, and other attributes. Use this to understand a metric's meaning and proper usage.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['metricName'], 'properties': {'metricName': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-events', 'description': 'Search for events in Datadog within a specified time range. Events include deployments, alerts, comments, and other activities. Useful for correlating system behaviors with specific events.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['start', 'end'], 'properties': {'end': {'type': 'number'}, 'tags': {'type': 'string'}, 'limit': {'type': 'number', 'default': 100}, 'start': {'type': 'number'}, 'sources': {'type': 'string'}, 'priority': {'enum': ['normal', 'low'], 'type': 'string'}, 'unaggregated': {'type': 'boolean'}, 'excludeAggregation': {'type': 'boolean'}}, 'additionalProperties': False}}, {'name': 'get-incidents', 'description': "List incidents from Datadog's incident management system. Can filter by active/archived status and use query strings to find specific incidents. Helpful for reviewing current or past incidents.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'default': 100}, 'query': {'type': 'string'}, 'pageSize': {'type': 'number'}, 'pageOffset': {'type': 'number'}, 'includeArchived': {'type': 'boolean'}}, 'additionalProperties': False}}, {'name': 'search-logs', 'description': "Search logs in Datadog with advanced filtering options. Use filter.query for search terms (e.g., 'service:web-app status:error'), from/to for time ranges (e.g., 'now-15m', 'now'), and sort to order results. Essential for investigating application issues.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'object', 'properties': {'limit': {'type': 'number'}, 'cursor': {'type': 'string'}}, 'additionalProperties': False}, 'sort': {'type': 'string'}, 'limit': {'type': 'number', 'default': 100}, 'filter': {'type': 'object', 'properties': {'to': {'type': 'string'}, 'from': {'type': 'string'}, 'query': {'type': 'string'}, 'indexes': {'type': 'array', 'items': {'type': 'string'}}}, 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'aggregate-logs', 'description': 'Perform analytical queries and aggregations on log data. Essential for calculating metrics (count, avg, sum, etc.), grouping data by fields, and creating statistical summaries from logs. Use this when you need to analyze patterns or extract metrics from log data.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'filter': {'type': 'object', 'properties': {'to': {'type': 'string'}, 'from': {'type': 'string'}, 'query': {'type': 'string'}, 'indexes': {'type': 'array', 'items': {'type': 'string'}}}, 'additionalProperties': False}, 'compute': {'type': 'array', 'items': {'type': 'object', 'required': ['aggregation'], 'properties': {'type': {'type': 'string'}, 'metric': {'type': 'string'}, 'aggregation': {'type': 'string'}}, 'additionalProperties': False}}, 'groupBy': {'type': 'array', 'items': {'type': 'object', 'required': ['facet'], 'properties': {'sort': {'type': 'object', 'required': ['aggregation', 'order'], 'properties': {'order': {'type': 'string'}, 'aggregation': {'type': 'string'}}, 'additionalProperties': False}, 'facet': {'type': 'string'}, 'limit': {'type': 'number'}}, 'additionalProperties': False}}, 'options': {'type': 'object', 'properties': {'timezone': {'type': 'string'}}, 'additionalProperties': False}}, 'additionalProperties': False}}] |
@GeLi2001/datadog-mcp-server | Datadog MCP Server | Interact with the Datadog API to monitor your systems effectively. Access monitor data, retrieve dashboards, query metrics, and manage incidents seamlessly. Enhance your observability with comprehensive error handling and advanced log searching capabilities. | 2025-04-03T23:00:45.297Z | 0 | https://smithery.ai/server/@GeLi2001/datadog-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'get-monitors', 'description': "Fetch monitors from Datadog with optional filtering. Use groupStates to filter by monitor status (e.g., 'alert', 'warn', 'no data'), tags or monitorTags to filter by tag criteria, and limit to control result size.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'tags': {'type': 'string'}, 'limit': {'type': 'number', 'default': 100}, 'groupStates': {'type': 'array', 'items': {'type': 'string'}}, 'monitorTags': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-monitor', 'description': 'Get detailed information about a specific Datadog monitor by its ID. Use this to retrieve the complete configuration, status, and other details of a single monitor.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['monitorId'], 'properties': {'monitorId': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'get-dashboards', 'description': 'Retrieve a list of all dashboards from Datadog. Useful for discovering available dashboards and their IDs for further exploration.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'default': 100}, 'filterConfigured': {'type': 'boolean'}}, 'additionalProperties': False}}, {'name': 'get-dashboard', 'description': 'Get the complete definition of a specific Datadog dashboard by its ID. Returns all widgets, layout, and configuration details.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['dashboardId'], 'properties': {'dashboardId': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-metrics', 'description': 'List available metrics from Datadog. Optionally use the q parameter to search for specific metrics matching a pattern. Helpful for discovering metrics to use in monitors or dashboards.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'q': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-metric-metadata', 'description': "Retrieve detailed metadata about a specific metric, including its type, description, unit, and other attributes. Use this to understand a metric's meaning and proper usage.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['metricName'], 'properties': {'metricName': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-events', 'description': 'Search for events in Datadog within a specified time range. Events include deployments, alerts, comments, and other activities. Useful for correlating system behaviors with specific events.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['start', 'end'], 'properties': {'end': {'type': 'number'}, 'tags': {'type': 'string'}, 'limit': {'type': 'number', 'default': 100}, 'start': {'type': 'number'}, 'sources': {'type': 'string'}, 'priority': {'enum': ['normal', 'low'], 'type': 'string'}, 'unaggregated': {'type': 'boolean'}, 'excludeAggregation': {'type': 'boolean'}}, 'additionalProperties': False}}, {'name': 'get-incidents', 'description': "List incidents from Datadog's incident management system. Can filter by active/archived status and use query strings to find specific incidents. Helpful for reviewing current or past incidents.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'default': 100}, 'query': {'type': 'string'}, 'pageSize': {'type': 'number'}, 'pageOffset': {'type': 'number'}, 'includeArchived': {'type': 'boolean'}}, 'additionalProperties': False}}, {'name': 'search-logs', 'description': "Search logs in Datadog with advanced filtering options. Use filter.query for search terms (e.g., 'service:web-app status:error'), from/to for time ranges (e.g., 'now-15m', 'now'), and sort to order results. Essential for investigating application issues.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'object', 'properties': {'limit': {'type': 'number'}, 'cursor': {'type': 'string'}}, 'additionalProperties': False}, 'sort': {'type': 'string'}, 'limit': {'type': 'number', 'default': 100}, 'filter': {'type': 'object', 'properties': {'to': {'type': 'string'}, 'from': {'type': 'string'}, 'query': {'type': 'string'}, 'indexes': {'type': 'array', 'items': {'type': 'string'}}}, 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'aggregate-logs', 'description': 'Perform analytical queries and aggregations on log data. Essential for calculating metrics (count, avg, sum, etc.), grouping data by fields, and creating statistical summaries from logs. Use this when you need to analyze patterns or extract metrics from log data.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'filter': {'type': 'object', 'properties': {'to': {'type': 'string'}, 'from': {'type': 'string'}, 'query': {'type': 'string'}, 'indexes': {'type': 'array', 'items': {'type': 'string'}}}, 'additionalProperties': False}, 'compute': {'type': 'array', 'items': {'type': 'object', 'required': ['aggregation'], 'properties': {'type': {'type': 'string'}, 'metric': {'type': 'string'}, 'aggregation': {'type': 'string'}}, 'additionalProperties': False}}, 'groupBy': {'type': 'array', 'items': {'type': 'object', 'required': ['facet'], 'properties': {'sort': {'type': 'object', 'required': ['aggregation', 'order'], 'properties': {'order': {'type': 'string'}, 'aggregation': {'type': 'string'}}, 'additionalProperties': False}, 'facet': {'type': 'string'}, 'limit': {'type': 'number'}}, 'additionalProperties': False}}, 'options': {'type': 'object', 'properties': {'timezone': {'type': 'string'}}, 'additionalProperties': False}}, 'additionalProperties': False}}] |
@mskim8717/dooray-mcp | Dooray Schedule Manager | Manage your schedules efficiently by integrating with Dooray API. Add events with automatic start and end times, including location and description support. Simplify your calendar management through seamless MCP server integration. | 2025-04-24T07:32:31.095Z | 0 | https://smithery.ai/server/@mskim8717/dooray-mcp | true | null | {
"scanPassed": true
} | [{'name': 'add_schedule', 'description': "\n Target: dooray API를 호출하여 두레이 일정을 추가합니다.\n\n Args:\n title : 일정 제목\n start_date : 시작 날짜 (예: '2025-04-04'), 입력하지 않으면 오늘 날짜로 해줘\n start_time : 시작 시간 (예: '14:00'), 입력하지 않으면 현재 시간으로 해줘\n end_date : 종료 날짜 (예: '2025-04-05'), 입력하지 않으면 오늘 날짜로 해줘\n end_time : 종료 시간 (예: '15:00'), 입력하지 않으면 현재 시간으로 해줘\n start_iso_format : ISO 8601 형식으로 변환된 날짜/시간 문자열(예: '2025-04-04T14:00:00+09:00')\n end_iso_format : ISO 8601 형식으로 변환된 날짜/시간 문자열(예: '2025-04-04T14:00:00+09:00')\n location : 일정 장소 (선택사항)\n description : 일정 설명 (선택사항)\n\n Returns:\n str: 일정 추가 결과 메시지\n ", 'inputSchema': {'type': 'object', 'title': 'add_scheduleArguments', 'required': ['start_date', 'start_time', 'end_date', 'end_time', 'start_iso_format', 'end_iso_format', 'location'], 'properties': {'title': {'type': 'string', 'title': 'Title', 'default': '새 일정', 'description': 'The title of the schedule'}, 'end_date': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'End Date', 'description': 'The end date of the schedule'}, 'end_time': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'End Time', 'description': 'The end time of the schedule'}, 'location': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Location', 'description': 'The location of the schedule'}, 'start_date': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Start Date', 'description': 'The start date of the schedule'}, 'start_time': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Start Time', 'description': 'The start time of the schedule'}, 'description': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Description', 'default': None}, 'end_iso_format': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'End Iso Format', 'description': 'The end date time of the schedule in ISO 8601 format'}, 'start_iso_format': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Start Iso Format', 'description': 'The start date time of the schedule in ISO 8601 format'}}}}] |
@mskim8717/dooray-mcp | Dooray Schedule Manager | Manage your schedules efficiently by integrating with Dooray API. Add events with automatic start and end times, including location and description support. Simplify your calendar management through seamless MCP server integration. | 2025-04-24T07:32:31.095Z | 0 | https://smithery.ai/server/@mskim8717/dooray-mcp | true | null | {
"scanPassed": true
} | [{'name': 'add_schedule', 'description': "\n Target: dooray API를 호출하여 두레이 일정을 추가합니다.\n\n Args:\n title : 일정 제목\n start_date : 시작 날짜 (예: '2025-04-04'), 입력하지 않으면 오늘 날짜로 해줘\n start_time : 시작 시간 (예: '14:00'), 입력하지 않으면 현재 시간으로 해줘\n end_date : 종료 날짜 (예: '2025-04-05'), 입력하지 않으면 오늘 날짜로 해줘\n end_time : 종료 시간 (예: '15:00'), 입력하지 않으면 현재 시간으로 해줘\n start_iso_format : ISO 8601 형식으로 변환된 날짜/시간 문자열(예: '2025-04-04T14:00:00+09:00')\n end_iso_format : ISO 8601 형식으로 변환된 날짜/시간 문자열(예: '2025-04-04T14:00:00+09:00')\n location : 일정 장소 (선택사항)\n description : 일정 설명 (선택사항)\n\n Returns:\n str: 일정 추가 결과 메시지\n ", 'inputSchema': {'type': 'object', 'title': 'add_scheduleArguments', 'required': ['start_date', 'start_time', 'end_date', 'end_time', 'start_iso_format', 'end_iso_format', 'location'], 'properties': {'title': {'type': 'string', 'title': 'Title', 'default': '새 일정', 'description': 'The title of the schedule'}, 'end_date': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'End Date', 'description': 'The end date of the schedule'}, 'end_time': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'End Time', 'description': 'The end time of the schedule'}, 'location': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Location', 'description': 'The location of the schedule'}, 'start_date': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Start Date', 'description': 'The start date of the schedule'}, 'start_time': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Start Time', 'description': 'The start time of the schedule'}, 'description': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Description', 'default': None}, 'end_iso_format': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'End Iso Format', 'description': 'The end date time of the schedule in ISO 8601 format'}, 'start_iso_format': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Start Iso Format', 'description': 'The start date time of the schedule in ISO 8601 format'}}}}] |
@HeskeyBaozi/servers | GitHub MCP Server | Enable seamless integration with the GitHub API for file operations, repository management, and advanced search functionalities. Automate your workflows with features like automatic branch creation and comprehensive error handling. Enhance your development process by managing repositories and issues directly from your applications. | 2025-04-09T11:36:50.913Z | 0 | https://smithery.ai/server/@HeskeyBaozi/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': {'anyOf': [{'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}, {'type': 'object', 'required': ['path', 'line', 'body'], 'properties': {'body': {'type': 'string', 'description': 'Text of the review comment'}, 'line': {'type': 'number', 'description': 'The line number in the file where you want to add a review comment'}, 'path': {'type': 'string', 'description': 'The relative path to the file being commented on'}}, 'additionalProperties': False}]}, 'description': 'Comments to post as part of the review (specify either position or line, not both)'}, '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}}] |
@HeskeyBaozi/servers | GitHub MCP Server | Enable seamless integration with the GitHub API for file operations, repository management, and advanced search functionalities. Automate your workflows with features like automatic branch creation and comprehensive error handling. Enhance your development process by managing repositories and issues directly from your applications. | 2025-04-09T11:36:50.913Z | 0 | https://smithery.ai/server/@HeskeyBaozi/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': {'anyOf': [{'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}, {'type': 'object', 'required': ['path', 'line', 'body'], 'properties': {'body': {'type': 'string', 'description': 'Text of the review comment'}, 'line': {'type': 'number', 'description': 'The line number in the file where you want to add a review comment'}, 'path': {'type': 'string', 'description': 'The relative path to the file being commented on'}}, 'additionalProperties': False}]}, 'description': 'Comments to post as part of the review (specify either position or line, not both)'}, '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}}] |
@geekbot-com/geekbot-mcp | Geekbot MCP | Connect your Claude AI with Geekbot's standup, polls, and survey management tools. Effortlessly access and manage your Geekbot data within conversations, enhancing your team's productivity and collaboration. | 2025-04-01T02:01:14.344Z | 0 | https://smithery.ai/server/@geekbot-com/geekbot-mcp | true | null | {
"scanPassed": true
} | [{'name': 'fetch_reports', 'description': 'Retrieves Geekbot standup reports. Use this tool to analyze team updates or updates from specific colleagues, track progress, or compile summaries of standup activities. This tool is usually selected after the `list_standups` tool.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'after': {'type': 'string', 'description': 'Fetch reports after this date (format: YYYY-MM-DD)'}, 'before': {'type': 'string', 'description': 'Fetch reports before this date (format: YYYY-MM-DD)'}, 'user_id': {'type': 'string', 'description': 'ID of the specific user to fetch reports for. If not provided, reports for all members will be fetched.'}, 'standup_id': {'type': 'integer', 'description': 'ID of the specific standup to fetch reports for. If not provided, reports for all standups will be fetched.'}}}}, {'name': 'list_standups', 'description': 'Retrieves and displays all Geekbot standups a user has access to, including their complete configuration details such as name, channel, questions, participants, and schedule information. Use this tool to understand the structure of the team and the processes they use track progress and sync.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'list_members', 'description': 'Lists all team members participating in the standups and polls of the user. Use this tool to get information about the colleagues of the user', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}] |
@geekbot-com/geekbot-mcp | Geekbot MCP | Connect your Claude AI with Geekbot's standup, polls, and survey management tools. Effortlessly access and manage your Geekbot data within conversations, enhancing your team's productivity and collaboration. | 2025-04-01T02:01:14.344Z | 0 | https://smithery.ai/server/@geekbot-com/geekbot-mcp | true | null | {
"scanPassed": true
} | [{'name': 'fetch_reports', 'description': 'Retrieves Geekbot standup reports. Use this tool to analyze team updates or updates from specific colleagues, track progress, or compile summaries of standup activities. This tool is usually selected after the `list_standups` tool.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'after': {'type': 'string', 'description': 'Fetch reports after this date (format: YYYY-MM-DD)'}, 'before': {'type': 'string', 'description': 'Fetch reports before this date (format: YYYY-MM-DD)'}, 'user_id': {'type': 'string', 'description': 'ID of the specific user to fetch reports for. If not provided, reports for all members will be fetched.'}, 'standup_id': {'type': 'integer', 'description': 'ID of the specific standup to fetch reports for. If not provided, reports for all standups will be fetched.'}}}}, {'name': 'list_standups', 'description': 'Retrieves and displays all Geekbot standups a user has access to, including their complete configuration details such as name, channel, questions, participants, and schedule information. Use this tool to understand the structure of the team and the processes they use track progress and sync.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'list_members', 'description': 'Lists all team members participating in the standups and polls of the user. Use this tool to get information about the colleagues of the user', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}] |
mpc-tally-api-server | Tally API Server | Access DAO governance data from Tally API. | 2025-01-03T09:27:25.083Z | 0 | https://smithery.ai/server/mpc-tally-api-server | true | null | {
"scanPassed": true
} | [{'name': 'list-daos', 'description': 'List DAOs on Tally sorted by specified criteria', 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of DAOs to return (default: 20, max: 50)'}, 'sortBy': {'enum': ['id', 'name', 'explore', 'popular'], 'type': 'string', 'description': "How to sort the DAOs (default: popular). 'explore' prioritizes DAOs with live proposals"}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}}}}, {'name': 'get-dao', 'description': 'Get detailed information about a specific DAO', 'inputSchema': {'type': 'object', 'required': ['slug'], 'properties': {'slug': {'type': 'string', 'description': "The DAO's slug (e.g., 'uniswap' or 'aave')"}}}}, {'name': 'list-delegates', 'description': 'List delegates for a specific organization with their metadata', 'inputSchema': {'type': 'object', 'required': ['organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of delegates to return (default: 20, max: 50)'}, 'hasVotes': {'type': 'boolean', 'description': 'Filter for delegates with votes'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'hasDelegators': {'type': 'boolean', 'description': 'Filter for delegates with delegators'}, 'organizationSlug': {'type': 'string', 'description': "The organization's slug (e.g., 'arbitrum')"}, 'isSeekingDelegation': {'type': 'boolean', 'description': 'Filter for delegates seeking delegation'}}}}, {'name': 'get-delegators', 'description': 'Get list of delegators for a specific address', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of delegators to return (default: 20, max: 50)'}, 'sortBy': {'enum': ['id', 'votes'], 'type': 'string', 'description': 'How to sort the delegators (default: id)'}, 'address': {'type': 'string', 'description': 'The Ethereum address to get delegators for (0x format)'}, 'governorId': {'type': 'string', 'description': 'Filter by specific governor ID'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'beforeCursor': {'type': 'string', 'description': 'Cursor for previous page pagination'}, 'isDescending': {'type': 'boolean', 'description': 'Sort in descending order (default: true)'}, 'organizationSlug': {'type': 'string', 'description': "Filter by organization slug (e.g., 'uniswap'). Alternative to organizationId"}}}}, {'name': 'list-proposals', 'description': 'List proposals for a specific DAO or organization using its slug', 'inputSchema': {'type': 'object', 'required': ['slug'], 'properties': {'slug': {'type': 'string', 'description': "The slug of the DAO (e.g., 'uniswap')"}, 'limit': {'type': 'number', 'description': 'Maximum number of proposals to return (default: 50, max: 50)'}, 'isDraft': {'type': 'boolean', 'description': 'Filter for draft proposals'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination (string ID)'}, 'beforeCursor': {'type': 'string', 'description': 'Cursor for previous page pagination (string ID)'}, 'isDescending': {'type': 'boolean', 'description': 'Sort in descending order (default: true)'}, 'includeArchived': {'type': 'boolean', 'description': 'Include archived proposals'}}}}, {'name': 'get-proposal', 'description': 'Get detailed information about a specific proposal. You must provide either the Tally ID (globally unique) or both onchainId and governorId (unique within a governor).', 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['id'], 'properties': {'id': {'type': 'string', 'description': "The proposal's Tally ID (globally unique across all governors)"}, 'isLatest': {'type': 'boolean', 'description': 'Get the latest version of the proposal'}, 'includeArchived': {'type': 'boolean', 'description': 'Include archived proposals'}}}, {'required': ['onchainId', 'governorId'], 'properties': {'isLatest': {'type': 'boolean', 'description': 'Get the latest version of the proposal'}, 'onchainId': {'type': 'string', 'description': "The proposal's onchain ID (only unique within a governor)"}, 'governorId': {'type': 'string', 'description': "The governor's ID (required when using onchainId)"}, 'includeArchived': {'type': 'boolean', 'description': 'Include archived proposals'}}}]}}, {'name': 'get-address-votes', 'description': 'Get votes cast by an address for a specific organization', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of votes to return (default: 20)'}, 'address': {'type': 'string', 'description': 'The address to get votes for'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'organizationSlug': {'type': 'string', 'description': 'The organization slug to get votes from'}}}}, {'name': 'get-address-created-proposals', 'description': 'Get proposals created by an address for a specific organization', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of proposals to return (default: 20)'}, 'address': {'type': 'string', 'description': 'The Ethereum address to get created proposals for'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'beforeCursor': {'type': 'string', 'description': 'Cursor for previous page pagination'}, 'organizationSlug': {'type': 'string', 'description': 'The organization slug to get proposals from'}}}}, {'name': 'get-address-daos-proposals', 'description': 'Returns proposals from DAOs where a given address has participated (voted, proposed, etc.)', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of proposals to return (default: 20, max: 50)'}, 'address': {'type': 'string', 'description': 'The Ethereum address'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'organizationSlug': {'type': 'string', 'description': 'The organization slug to get proposals from'}}}}, {'name': 'get-address-received-delegations', 'description': 'Returns delegations received by an address', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of delegations to return (default: 20, max: 50)'}, 'sortBy': {'enum': ['votes'], 'type': 'string', 'description': 'Field to sort by'}, 'address': {'type': 'string', 'description': 'The Ethereum address to get received delegations for (0x format)'}, 'isDescending': {'type': 'boolean', 'description': 'Sort in descending order'}, 'organizationSlug': {'type': 'string', 'description': 'Filter by organization slug'}}}}, {'name': 'get-delegate-statement', 'description': "Get a delegate's statement for a specific governor or organization", 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['governorId'], 'properties': {'address': {'type': 'string', 'description': "The delegate's Ethereum address"}, 'governorId': {'type': 'string', 'description': "The governor's ID"}}}, {'required': ['organizationSlug'], 'properties': {'address': {'type': 'string', 'description': "The delegate's Ethereum address"}, 'organizationSlug': {'type': 'string', 'description': "The organization's slug (e.g., 'uniswap')"}}}], 'required': ['address']}}, {'name': 'get-address-governances', 'description': 'Returns the list of governances (DAOs) an address has delegated to', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to get governances for (0x format)'}}}}, {'name': 'get-proposal-timeline', 'description': 'Get the timeline of events for a specific proposal', 'inputSchema': {'type': 'object', 'required': ['proposalId'], 'properties': {'proposalId': {'type': 'string', 'description': 'The ID of the proposal to get the timeline for'}}}}, {'name': 'get-proposal-voters', 'description': 'Get a list of all voters who have voted on a specific proposal', 'inputSchema': {'type': 'object', 'required': ['proposalId'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of voters to return (default: 20)'}, 'sortBy': {'enum': ['id', 'amount'], 'type': 'string', 'description': "How to sort the voters ('id' sorts by date (default), 'amount' sorts by voting power)"}, 'proposalId': {'type': 'string', 'description': 'The ID of the proposal to get voters for'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'beforeCursor': {'type': 'string', 'description': 'Cursor for previous page pagination'}, 'isDescending': {'type': 'boolean', 'description': 'Sort in descending order (true shows most recent/largest first)'}}}}, {'name': 'get-address-metadata', 'description': 'Get metadata information about a specific Ethereum address', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to get metadata for (0x format)'}}}}, {'name': 'get-proposal-security-analysis', 'description': 'Get security analysis for a specific proposal, including threat analysis and simulations', 'inputSchema': {'type': 'object', 'required': ['proposalId'], 'properties': {'proposalId': {'type': 'string', 'description': 'The ID of the proposal to get security analysis for'}}}}, {'name': 'get-proposal-votes-cast', 'description': 'Get vote statistics and formatted vote counts for a specific proposal', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': "The proposal's ID"}}}}, {'name': 'get-proposal-votes-cast-list', 'description': 'Get a list of votes cast for a specific proposal, including formatted vote amounts', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': "The proposal's Tally ID (globally unique across all governors)"}}}}, {'name': 'get-governance-proposals-stats', 'description': 'Get statistics about passed and failed proposals for a specific DAO', 'inputSchema': {'type': 'object', 'required': ['slug'], 'properties': {'slug': {'type': 'string', 'description': "The DAO's slug (e.g., 'uniswap' or 'aave')"}}}}] |
mpc-tally-api-server | Tally API Server | Access DAO governance data from Tally API. | 2025-01-03T09:27:25.083Z | 0 | https://smithery.ai/server/mpc-tally-api-server | true | null | {
"scanPassed": true
} | [{'name': 'list-daos', 'description': 'List DAOs on Tally sorted by specified criteria', 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of DAOs to return (default: 20, max: 50)'}, 'sortBy': {'enum': ['id', 'name', 'explore', 'popular'], 'type': 'string', 'description': "How to sort the DAOs (default: popular). 'explore' prioritizes DAOs with live proposals"}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}}}}, {'name': 'get-dao', 'description': 'Get detailed information about a specific DAO', 'inputSchema': {'type': 'object', 'required': ['slug'], 'properties': {'slug': {'type': 'string', 'description': "The DAO's slug (e.g., 'uniswap' or 'aave')"}}}}, {'name': 'list-delegates', 'description': 'List delegates for a specific organization with their metadata', 'inputSchema': {'type': 'object', 'required': ['organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of delegates to return (default: 20, max: 50)'}, 'hasVotes': {'type': 'boolean', 'description': 'Filter for delegates with votes'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'hasDelegators': {'type': 'boolean', 'description': 'Filter for delegates with delegators'}, 'organizationSlug': {'type': 'string', 'description': "The organization's slug (e.g., 'arbitrum')"}, 'isSeekingDelegation': {'type': 'boolean', 'description': 'Filter for delegates seeking delegation'}}}}, {'name': 'get-delegators', 'description': 'Get list of delegators for a specific address', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of delegators to return (default: 20, max: 50)'}, 'sortBy': {'enum': ['id', 'votes'], 'type': 'string', 'description': 'How to sort the delegators (default: id)'}, 'address': {'type': 'string', 'description': 'The Ethereum address to get delegators for (0x format)'}, 'governorId': {'type': 'string', 'description': 'Filter by specific governor ID'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'beforeCursor': {'type': 'string', 'description': 'Cursor for previous page pagination'}, 'isDescending': {'type': 'boolean', 'description': 'Sort in descending order (default: true)'}, 'organizationSlug': {'type': 'string', 'description': "Filter by organization slug (e.g., 'uniswap'). Alternative to organizationId"}}}}, {'name': 'list-proposals', 'description': 'List proposals for a specific DAO or organization using its slug', 'inputSchema': {'type': 'object', 'required': ['slug'], 'properties': {'slug': {'type': 'string', 'description': "The slug of the DAO (e.g., 'uniswap')"}, 'limit': {'type': 'number', 'description': 'Maximum number of proposals to return (default: 50, max: 50)'}, 'isDraft': {'type': 'boolean', 'description': 'Filter for draft proposals'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination (string ID)'}, 'beforeCursor': {'type': 'string', 'description': 'Cursor for previous page pagination (string ID)'}, 'isDescending': {'type': 'boolean', 'description': 'Sort in descending order (default: true)'}, 'includeArchived': {'type': 'boolean', 'description': 'Include archived proposals'}}}}, {'name': 'get-proposal', 'description': 'Get detailed information about a specific proposal. You must provide either the Tally ID (globally unique) or both onchainId and governorId (unique within a governor).', 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['id'], 'properties': {'id': {'type': 'string', 'description': "The proposal's Tally ID (globally unique across all governors)"}, 'isLatest': {'type': 'boolean', 'description': 'Get the latest version of the proposal'}, 'includeArchived': {'type': 'boolean', 'description': 'Include archived proposals'}}}, {'required': ['onchainId', 'governorId'], 'properties': {'isLatest': {'type': 'boolean', 'description': 'Get the latest version of the proposal'}, 'onchainId': {'type': 'string', 'description': "The proposal's onchain ID (only unique within a governor)"}, 'governorId': {'type': 'string', 'description': "The governor's ID (required when using onchainId)"}, 'includeArchived': {'type': 'boolean', 'description': 'Include archived proposals'}}}]}}, {'name': 'get-address-votes', 'description': 'Get votes cast by an address for a specific organization', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of votes to return (default: 20)'}, 'address': {'type': 'string', 'description': 'The address to get votes for'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'organizationSlug': {'type': 'string', 'description': 'The organization slug to get votes from'}}}}, {'name': 'get-address-created-proposals', 'description': 'Get proposals created by an address for a specific organization', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of proposals to return (default: 20)'}, 'address': {'type': 'string', 'description': 'The Ethereum address to get created proposals for'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'beforeCursor': {'type': 'string', 'description': 'Cursor for previous page pagination'}, 'organizationSlug': {'type': 'string', 'description': 'The organization slug to get proposals from'}}}}, {'name': 'get-address-daos-proposals', 'description': 'Returns proposals from DAOs where a given address has participated (voted, proposed, etc.)', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of proposals to return (default: 20, max: 50)'}, 'address': {'type': 'string', 'description': 'The Ethereum address'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'organizationSlug': {'type': 'string', 'description': 'The organization slug to get proposals from'}}}}, {'name': 'get-address-received-delegations', 'description': 'Returns delegations received by an address', 'inputSchema': {'type': 'object', 'required': ['address', 'organizationSlug'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of delegations to return (default: 20, max: 50)'}, 'sortBy': {'enum': ['votes'], 'type': 'string', 'description': 'Field to sort by'}, 'address': {'type': 'string', 'description': 'The Ethereum address to get received delegations for (0x format)'}, 'isDescending': {'type': 'boolean', 'description': 'Sort in descending order'}, 'organizationSlug': {'type': 'string', 'description': 'Filter by organization slug'}}}}, {'name': 'get-delegate-statement', 'description': "Get a delegate's statement for a specific governor or organization", 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['governorId'], 'properties': {'address': {'type': 'string', 'description': "The delegate's Ethereum address"}, 'governorId': {'type': 'string', 'description': "The governor's ID"}}}, {'required': ['organizationSlug'], 'properties': {'address': {'type': 'string', 'description': "The delegate's Ethereum address"}, 'organizationSlug': {'type': 'string', 'description': "The organization's slug (e.g., 'uniswap')"}}}], 'required': ['address']}}, {'name': 'get-address-governances', 'description': 'Returns the list of governances (DAOs) an address has delegated to', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to get governances for (0x format)'}}}}, {'name': 'get-proposal-timeline', 'description': 'Get the timeline of events for a specific proposal', 'inputSchema': {'type': 'object', 'required': ['proposalId'], 'properties': {'proposalId': {'type': 'string', 'description': 'The ID of the proposal to get the timeline for'}}}}, {'name': 'get-proposal-voters', 'description': 'Get a list of all voters who have voted on a specific proposal', 'inputSchema': {'type': 'object', 'required': ['proposalId'], 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of voters to return (default: 20)'}, 'sortBy': {'enum': ['id', 'amount'], 'type': 'string', 'description': "How to sort the voters ('id' sorts by date (default), 'amount' sorts by voting power)"}, 'proposalId': {'type': 'string', 'description': 'The ID of the proposal to get voters for'}, 'afterCursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'beforeCursor': {'type': 'string', 'description': 'Cursor for previous page pagination'}, 'isDescending': {'type': 'boolean', 'description': 'Sort in descending order (true shows most recent/largest first)'}}}}, {'name': 'get-address-metadata', 'description': 'Get metadata information about a specific Ethereum address', 'inputSchema': {'type': 'object', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'The Ethereum address to get metadata for (0x format)'}}}}, {'name': 'get-proposal-security-analysis', 'description': 'Get security analysis for a specific proposal, including threat analysis and simulations', 'inputSchema': {'type': 'object', 'required': ['proposalId'], 'properties': {'proposalId': {'type': 'string', 'description': 'The ID of the proposal to get security analysis for'}}}}, {'name': 'get-proposal-votes-cast', 'description': 'Get vote statistics and formatted vote counts for a specific proposal', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': "The proposal's ID"}}}}, {'name': 'get-proposal-votes-cast-list', 'description': 'Get a list of votes cast for a specific proposal, including formatted vote amounts', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': "The proposal's Tally ID (globally unique across all governors)"}}}}, {'name': 'get-governance-proposals-stats', 'description': 'Get statistics about passed and failed proposals for a specific DAO', 'inputSchema': {'type': 'object', 'required': ['slug'], 'properties': {'slug': {'type': 'string', 'description': "The DAO's slug (e.g., 'uniswap' or 'aave')"}}}}] |
@kukapay/uniswap-trader-mcp | Uniswap Trader | Automate token swaps on Uniswap DEX across multiple blockchains. Get real-time price quotes, execute swaps with configurable parameters, and receive trading suggestions based on liquidity and fees. | 2025-03-27T09:01:00.085Z | 0 | https://smithery.ai/server/@kukapay/uniswap-trader-mcp | true | null | null | [{'name': 'getPrice', 'description': 'Get a price quote for a Uniswap swap, supporting multi-hop routes', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenIn', 'tokenOut'], 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (1: Ethereum, 10: Optimism, 137: Polygon, 42161: Arbitrum, 42220: Celo, 56: BNB Chain, 43114: Avalanche, 8453: Base)'}, 'tokenIn': {'type': 'string', 'description': "Input token address ('NATIVE' for native token like ETH)"}, 'amountIn': {'type': 'string', 'description': 'Exact input amount (required for exactIn trades)'}, 'tokenOut': {'type': 'string', 'description': "Output token address ('NATIVE' for native token like ETH)"}, 'amountOut': {'type': 'string', 'description': 'Exact output amount (required for exactOut trades)'}, 'tradeType': {'enum': ['exactIn', 'exactOut'], 'type': 'string', 'default': 'exactIn', 'description': 'Trade type: exactIn requires amountIn, exactOut requires amountOut'}}, 'additionalProperties': False}}, {'name': 'executeSwap', 'description': 'Execute a swap on Uniswap with optimal multi-hop routing', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenIn', 'tokenOut'], 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (1: Ethereum, 10: Optimism, 137: Polygon, 42161: Arbitrum, 42220: Celo, 56: BNB Chain, 43114: Avalanche, 8453: Base)'}, 'tokenIn': {'type': 'string', 'description': "Input token address ('NATIVE' for native token like ETH)"}, 'amountIn': {'type': 'string', 'description': 'Exact input amount (required for exactIn trades)'}, 'deadline': {'type': 'number', 'default': 20, 'description': 'Transaction deadline in minutes'}, 'tokenOut': {'type': 'string', 'description': "Output token address ('NATIVE' for native token like ETH)"}, 'amountOut': {'type': 'string', 'description': 'Exact output amount (required for exactOut trades)'}, 'tradeType': {'enum': ['exactIn', 'exactOut'], 'type': 'string', 'default': 'exactIn', 'description': 'Trade type: exactIn requires amountIn, exactOut requires amountOut'}, 'slippageTolerance': {'type': 'number', 'default': 0.5, 'description': 'Slippage tolerance in percentage'}}, 'additionalProperties': False}}] |
@kukapay/uniswap-trader-mcp | Uniswap Trader | Automate token swaps on Uniswap DEX across multiple blockchains. Get real-time price quotes, execute swaps with configurable parameters, and receive trading suggestions based on liquidity and fees. | 2025-03-27T09:01:00.085Z | 0 | https://smithery.ai/server/@kukapay/uniswap-trader-mcp | true | null | null | [{'name': 'getPrice', 'description': 'Get a price quote for a Uniswap swap, supporting multi-hop routes', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenIn', 'tokenOut'], 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (1: Ethereum, 10: Optimism, 137: Polygon, 42161: Arbitrum, 42220: Celo, 56: BNB Chain, 43114: Avalanche, 8453: Base)'}, 'tokenIn': {'type': 'string', 'description': "Input token address ('NATIVE' for native token like ETH)"}, 'amountIn': {'type': 'string', 'description': 'Exact input amount (required for exactIn trades)'}, 'tokenOut': {'type': 'string', 'description': "Output token address ('NATIVE' for native token like ETH)"}, 'amountOut': {'type': 'string', 'description': 'Exact output amount (required for exactOut trades)'}, 'tradeType': {'enum': ['exactIn', 'exactOut'], 'type': 'string', 'default': 'exactIn', 'description': 'Trade type: exactIn requires amountIn, exactOut requires amountOut'}}, 'additionalProperties': False}}, {'name': 'executeSwap', 'description': 'Execute a swap on Uniswap with optimal multi-hop routing', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenIn', 'tokenOut'], 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (1: Ethereum, 10: Optimism, 137: Polygon, 42161: Arbitrum, 42220: Celo, 56: BNB Chain, 43114: Avalanche, 8453: Base)'}, 'tokenIn': {'type': 'string', 'description': "Input token address ('NATIVE' for native token like ETH)"}, 'amountIn': {'type': 'string', 'description': 'Exact input amount (required for exactIn trades)'}, 'deadline': {'type': 'number', 'default': 20, 'description': 'Transaction deadline in minutes'}, 'tokenOut': {'type': 'string', 'description': "Output token address ('NATIVE' for native token like ETH)"}, 'amountOut': {'type': 'string', 'description': 'Exact output amount (required for exactOut trades)'}, 'tradeType': {'enum': ['exactIn', 'exactOut'], 'type': 'string', 'default': 'exactIn', 'description': 'Trade type: exactIn requires amountIn, exactOut requires amountOut'}, 'slippageTolerance': {'type': 'number', 'default': 0.5, 'description': 'Slippage tolerance in percentage'}}, 'additionalProperties': False}}] |
@makingendless/endless-mcp | Endless | MCP server for Endless, an all-in-one platform to collaborate, transform, and create content. | 2025-04-04T18:28:19.073Z | 0 | https://smithery.ai/server/@makingendless/endless-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get-alerts', 'description': 'Get weather alerts for a state', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['state'], 'properties': {'state': {'type': 'string', 'maxLength': 2, 'minLength': 2, 'description': 'Two-letter state code (e.g. CA, NY)'}}, 'additionalProperties': False}}, {'name': 'get-forecast', 'description': 'Get weather forecast for a location', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['latitude', 'longitude'], 'properties': {'latitude': {'type': 'number', 'maximum': 90, 'minimum': -90, 'description': 'Latitude of the location'}, 'longitude': {'type': 'number', 'maximum': 180, 'minimum': -180, 'description': 'Longitude of the location'}}, 'additionalProperties': False}}] |
@makingendless/endless-mcp | Endless | MCP server for Endless, an all-in-one platform to collaborate, transform, and create content. | 2025-04-04T18:28:19.073Z | 0 | https://smithery.ai/server/@makingendless/endless-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get-alerts', 'description': 'Get weather alerts for a state', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['state'], 'properties': {'state': {'type': 'string', 'maxLength': 2, 'minLength': 2, 'description': 'Two-letter state code (e.g. CA, NY)'}}, 'additionalProperties': False}}, {'name': 'get-forecast', 'description': 'Get weather forecast for a location', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['latitude', 'longitude'], 'properties': {'latitude': {'type': 'number', 'maximum': 90, 'minimum': -90, 'description': 'Latitude of the location'}, 'longitude': {'type': 'number', 'maximum': 180, 'minimum': -180, 'description': 'Longitude of the location'}}, 'additionalProperties': False}}] |
@Yanghojun/deploy_mcp_test | MCP Test Server | Provide a test implementation of the Model Context Protocol server to facilitate integration and development. Enable clients to interact with tools, resources, and prompts through standardized JSON-RPC methods. Simplify testing and prototyping of MCP features in a controlled environment. | 2025-04-25T13:24:51.711Z | 0 | https://smithery.ai/server/@Yanghojun/deploy_mcp_test | true | null | {
"scanPassed": true
} | [{'name': 'get_alerts', 'description': 'Get weather alerts for a US state.\n\n Args:\n state: Two-letter US state code (e.g. CA, NY)\n ', 'inputSchema': {'type': 'object', 'title': 'get_alertsArguments', 'required': ['state'], 'properties': {'state': {'type': 'string', 'title': 'State'}}}}, {'name': 'get_forecast', 'description': 'Get weather forecast for a location.\n\n Args:\n latitude: Latitude of the location\n longitude: Longitude of the location\n ', 'inputSchema': {'type': 'object', 'title': 'get_forecastArguments', 'required': ['latitude', 'longitude'], 'properties': {'latitude': {'type': 'number', 'title': 'Latitude'}, 'longitude': {'type': 'number', 'title': 'Longitude'}}}}] |
@Yanghojun/deploy_mcp_test | MCP Test Server | Provide a test implementation of the Model Context Protocol server to facilitate integration and development. Enable clients to interact with tools, resources, and prompts through standardized JSON-RPC methods. Simplify testing and prototyping of MCP features in a controlled environment. | 2025-04-25T13:24:51.711Z | 0 | https://smithery.ai/server/@Yanghojun/deploy_mcp_test | true | null | {
"scanPassed": true
} | [{'name': 'get_alerts', 'description': 'Get weather alerts for a US state.\n\n Args:\n state: Two-letter US state code (e.g. CA, NY)\n ', 'inputSchema': {'type': 'object', 'title': 'get_alertsArguments', 'required': ['state'], 'properties': {'state': {'type': 'string', 'title': 'State'}}}}, {'name': 'get_forecast', 'description': 'Get weather forecast for a location.\n\n Args:\n latitude: Latitude of the location\n longitude: Longitude of the location\n ', 'inputSchema': {'type': 'object', 'title': 'get_forecastArguments', 'required': ['latitude', 'longitude'], 'properties': {'latitude': {'type': 'number', 'title': 'Latitude'}, 'longitude': {'type': 'number', 'title': 'Longitude'}}}}] |
@lkp474/alibabacloud-observability-mcp-server | Alibaba Cloud Observability Server | Provide seamless access to Alibaba Cloud observability products such as Log Service (SLS), Application Real-Time Monitoring Service (ARMS), and Cloud Monitor through a standardized MCP interface. Enable intelligent agents to quickly query, analyze, and interact with observability data to enhance monitoring and troubleshooting workflows. Simplify integration with Alibaba Cloud's monitoring ecosystem for efficient observability management. | 2025-04-24T07:22:01.996Z | 0 | https://smithery.ai/server/@lkp474/alibabacloud-observability-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'sls_list_projects', 'description': '列出阿里云日志服务中的所有项目。\n\n ## 功能概述\n\n 该工具可以列出指定区域中的所有SLS项目,支持通过项目名进行模糊搜索。如果不提供项目名称,则返回该区域的所有项目。\n\n ## 使用场景\n\n - 当需要查找特定项目是否存在时\n - 当需要获取某个区域下所有可用的SLS项目列表时\n - 当需要根据项目名称的部分内容查找相关项目时\n\n ## 返回数据结构\n\n 返回的项目信息包含:\n - project_name: 项目名称\n - description: 项目描述\n - region_id: 项目所在区域\n\n ## 查询示例\n\n - "有没有叫 XXX 的 project"\n - "列出所有SLS项目"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n project_name_query: 项目名称查询字符串,支持模糊搜索\n limit: 返回结果的最大数量,范围1-100,默认10\n region_id: 阿里云区域ID,region id format like "xx-xxx",like "cn-hangzhou"\n\n Returns:\n 包含项目信息的字典列表,每个字典包含project_name、description和region_id\n ', 'inputSchema': {'type': 'object', 'title': 'sls_list_projectsArguments', 'required': ['region_id'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10, 'maximum': 100, 'minimum': 1, 'description': 'limit,max is 100'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': 'aliyun region id'}, 'project_name_query': {'type': 'string', 'title': 'Project Name Query', 'default': None, 'description': 'project name,fuzzy search'}}}}, {'name': 'sls_list_logstores', 'description': '列出SLS项目中的日志库。\n\n ## 功能概述\n\n 该工具可以列出指定SLS项目中的所有日志库,如果不选,则默认为日志库类型\n 支持通过日志库名称进行模糊搜索。如果不提供日志库名称,则返回项目中的所有日志库。\n\n ## 使用场景\n\n - 当需要查找特定项目下是否存在某个日志库时\n - 当需要获取项目中所有可用的日志库列表时\n - 当需要根据日志库名称的部分内容查找相关日志库时\n - 如果从上下文未指定 project参数,除非用户说了遍历,则可使用 sls_list_projects 工具获取项目列表\n\n ## 是否指标库\n\n 如果需要查找指标或者时序相关的库,请将is_metric_store参数设置为True\n\n ## 查询示例\n\n - "我想查询有没有 XXX 的日志库"\n - "某个 project 有哪些 log store"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n project: SLS项目名称,必须精确匹配\n log_store: 日志库名称,支持模糊搜索\n limit: 返回结果的最大数量,范围1-100,默认10\n is_metric_store: 是否指标库,可选值为True或False,默认为False\n region_id: 阿里云区域ID\n\n Returns:\n 日志库名称的字符串列表\n ', 'inputSchema': {'type': 'object', 'title': 'sls_list_logstoresArguments', 'required': ['project', 'region_id'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10, 'maximum': 100, 'minimum': 1, 'description': 'limit,max is 100'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name,must exact match,should not contain chinese characters'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'default': None, 'description': 'log store name,fuzzy search'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'log_store_type': {'type': 'string', 'title': 'Log Store Type', 'default': None, 'description': 'log store type,default is logs,should be logs,metrics'}, 'is_metric_store': {'type': 'boolean', 'title': 'Is Metric Store', 'default': False, 'description': 'is metric store,default is False,only use want to find metric store'}}}}, {'name': 'sls_describe_logstore', 'description': '获取SLS日志库的结构信息。\n\n ## 功能概述\n\n 该工具用于获取指定SLS项目中日志库的索引信息和结构定义,包括字段类型、别名、是否大小写敏感等信息。\n\n ## 使用场景\n\n - 当需要了解日志库的字段结构时\n - 当需要获取日志库的索引配置信息时\n - 当构建查询语句前需要了解可用字段时\n - 当需要分析日志数据结构时\n\n ## 返回数据结构\n\n 返回一个字典,键为字段名,值包含以下信息:\n - alias: 字段别名\n - sensitive: 是否大小写敏感\n - type: 字段类型\n - json_keys: JSON字段的子字段信息\n\n ## 查询示例\n\n - "我想查询 XXX 的日志库的 schema"\n - "我想查询 XXX 的日志库的 index"\n - "我想查询 XXX 的日志库的结构信息"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n project: SLS项目名称,必须精确匹配\n log_store: SLS日志库名称,必须精确匹配\n region_id: 阿里云区域ID\n\n Returns:\n 包含日志库结构信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'sls_describe_logstoreArguments', 'required': ['project', 'log_store', 'region_id'], 'properties': {'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name,must exact match,not fuzzy search'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'description': 'sls log store name,must exact match,not fuzzy search'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}}}}, {'name': 'sls_execute_query', 'description': '执行SLS日志查询。\n\n ## 功能概述\n\n 该工具用于在指定的SLS项目和日志库上执行查询语句,并返回查询结果。查询将在指定的时间范围内执行。\n\n ## 使用场景\n\n - 当需要根据特定条件查询日志数据时\n - 当需要分析特定时间范围内的日志信息时\n - 当需要检索日志中的特定事件或错误时\n - 当需要统计日志数据的聚合信息时\n\n\n\n ## 查询语法\n\n 查询必须使用SLS有效的查询语法,而非自然语言。如果不了解日志库的结构,可以先使用sls_describe_logstore工具获取索引信息。\n\n ## 时间范围\n\n 查询必须指定时间范围:\n - from_timestamp: 开始时间戳(秒)\n - to_timestamp: 结束时间戳(秒)\n\n ## 查询示例\n\n - "帮我查询下 XXX 的日志信息"\n - "查找最近一小时内的错误日志"\n\n ## 错误处理\n - Column xxx can not be resolved 如果是 sls_translate_natural_language_to_query 工具生成的查询语句 可能存在查询列未开启统计,可以提示用户增加相对应的信息,或者调用 sls_describe_logstore 工具获取索引信息之后,要用户选择正确的字段或者提示用户对列开启统计。当确定列开启统计之后,可以再次调用sls_translate_natural_language_to_query 工具生成查询语句\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n project: SLS项目名称\n log_store: SLS日志库名称\n query: SLS查询语句\n from_timestamp: 查询开始时间戳(秒)\n to_timestamp: 查询结束时间戳(秒)\n limit: 返回结果的最大数量,范围1-100,默认10\n region_id: 阿里云区域ID\n\n Returns:\n 查询结果列表,每个元素为一条日志记录\n ', 'inputSchema': {'type': 'object', 'title': 'sls_execute_queryArguments', 'required': ['project', 'log_store', 'query', 'from_timestamp', 'to_timestamp', 'region_id'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10, 'maximum': 100, 'minimum': 1, 'description': 'limit,max is 100'}, 'query': {'type': 'string', 'title': 'Query', 'description': 'query'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'description': 'sls log store name'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'to_timestamp': {'type': 'integer', 'title': 'To Timestamp', 'description': 'to timestamp,unit is second,should be unix timestamp'}, 'from_timestamp': {'type': 'integer', 'title': 'From Timestamp', 'description': 'from timestamp,unit is second,should be unix timestamp'}}}}, {'name': 'sls_translate_natural_language_to_log_query', 'description': '将自然语言转换为SLS查询语句。\n\n ## 功能概述\n\n 该工具可以将自然语言描述转换为有效的SLS查询语句,便于用户使用自然语言表达查询需求。用户有任何 SLS 日志查询需求时,都需要优先使用该工具。\n\n ## 使用场景\n\n - 当用户不熟悉SLS查询语法时\n - 当需要快速构建复杂查询时\n - 当需要从自然语言描述中提取查询意图时\n\n ## 使用限制\n\n - 仅支持生成SLS查询,不支持其他数据库的SQL如MySQL、PostgreSQL等\n - 生成的是查询语句,而非查询结果,需要配合sls_execute_query工具使用\n - 如果查询涉及ARMS应用,应优先使用arms_generate_trace_query工具\n - 需要对应的 log_sotre 已经设定了索引信息,如果生成的结果里面有字段没有索引或者开启统计,可能会导致查询失败,需要友好的提示用户增加相对应的索引信息\n\n ## 最佳实践\n\n - 提供清晰简洁的自然语言描述\n - 不要在描述中包含项目或日志库名称\n - 如有需要,指定查询的时间范围\n - 首次生成的查询可能不完全符合要求,可能需要多次尝试\n\n ## 查询示例\n\n - "帮我生成下 XXX 的日志查询语句"\n - "查找最近一小时内的错误日志"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n text: 用于生成查询的自然语言文本\n project: SLS项目名称\n log_store: SLS日志库名称\n region_id: 阿里云区域ID\n\n Returns:\n 生成的SLS查询语句\n ', 'inputSchema': {'type': 'object', 'title': 'sls_translate_natural_language_to_log_queryArguments', 'required': ['text', 'project', 'log_store', 'region_id'], 'properties': {'text': {'type': 'string', 'title': 'Text', 'description': 'the natural language text to generate sls log store query'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'description': 'sls log store name'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}}}}, {'name': 'sls_diagnose_query', 'description': '诊断SLS查询语句。\n\n ## 功能概述\n\n 当 SLS 查询语句执行失败时,可以调用该工具,根据错误信息,生成诊断结果。诊断结果会包含查询语句的正确性、性能分析、优化建议等信息。\n\n ## 使用场景\n\n - 当需要诊断SLS查询语句的正确性时\n - 当 SQL 执行错误需要查找原因时\n\n ## 查询示例\n\n - "帮我诊断下 XXX 的日志查询语句"\n - "帮我分析下 XXX 的日志查询语句"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n query: SLS查询语句\n error_message: 错误信息\n project: SLS项目名称\n log_store: SLS日志库名称\n region_id: 阿里云区域ID\n ', 'inputSchema': {'type': 'object', 'title': 'sls_diagnose_queryArguments', 'required': ['query', 'error_message', 'project', 'log_store', 'region_id'], 'properties': {'query': {'type': 'string', 'title': 'Query', 'description': 'sls query'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'description': 'sls log store name'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'error_message': {'type': 'string', 'title': 'Error Message', 'description': 'error message'}}}}, {'name': 'sls_get_current_time', 'description': '获取当前时间信息。\n\n ## 功能概述\n\n 该工具用于获取当前的时间戳和格式化的时间字符串,便于在执行SLS查询时指定时间范围。\n\n ## 使用场景\n\n - 当需要获取当前时间以设置查询的结束时间\n - 当需要获取当前时间戳进行时间计算\n - 在构建查询时间范围时使用当前时间作为参考点\n\n ## 返回数据格式\n\n 返回包含两个字段的字典:\n - current_time: 格式化的时间字符串 (YYYY-MM-DD HH:MM:SS)\n - current_timestamp: 整数形式的Unix时间戳(秒)\n\n Args:\n ctx: MCP上下文\n\n Returns:\n 包含当前时间信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'sls_get_current_timeArguments', 'properties': {}}}, {'name': 'arms_search_apps', 'description': '搜索ARMS应用。\n\n ## 功能概述\n\n 该工具用于根据应用名称搜索ARMS应用,返回应用的基本信息,包括应用名称、PID、用户ID和类型。\n\n ## 使用场景\n\n - 当需要查找特定名称的应用时\n - 当需要获取应用的PID以便进行其他ARMS操作时\n - 当需要检查用户拥有的应用列表时\n\n ## 搜索条件\n\n - app_name_query必须是应用名称的一部分,而非自然语言\n - 搜索结果将分页返回,可以指定页码和每页大小\n\n ## 返回数据结构\n\n 返回一个字典,包含以下信息:\n - total: 符合条件的应用总数\n - page_size: 每页大小\n - page_number: 当前页码\n - trace_apps: 应用列表,每个应用包含app_name、pid、user_id和type\n\n ## 查询示例\n\n - "帮我查询下 XXX 的应用"\n - "找出名称包含\'service\'的应用"\n\n Args:\n ctx: MCP上下文,用于访问ARMS客户端\n app_name_query: 应用名称查询字符串\n region_id: 阿里云区域ID\n page_size: 每页大小,范围1-100,默认20\n page_number: 页码,默认1\n\n Returns:\n 包含应用信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'arms_search_appsArguments', 'required': ['app_name_query', 'region_id'], 'properties': {'page_size': {'type': 'integer', 'title': 'Page Size', 'default': 20, 'maximum': 100, 'minimum': 1, 'description': 'page size,max is 100'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'page_number': {'type': 'integer', 'title': 'Page Number', 'default': 1, 'minimum': 1, 'description': 'page number,default is 1'}, 'app_name_query': {'type': 'string', 'title': 'App Name Query', 'description': 'app name query'}}}}, {'name': 'arms_generate_trace_query', 'description': '生成ARMS应用的调用链查询语句。\n\n ## 功能概述\n\n 该工具用于将自然语言描述转换为ARMS调用链查询语句,便于分析应用性能和问题。\n\n ## 使用场景\n\n - 当需要查询应用的调用链信息时\n - 当需要分析应用性能问题时\n - 当需要跟踪特定请求的执行路径时\n - 当需要分析服务间调用关系时\n\n ## 查询处理\n\n 工具会将自然语言问题转换为SLS查询,并返回:\n - 生成的SLS查询语句\n - 存储调用链数据的项目名\n - 存储调用链数据的日志库名\n\n ## 查询上下文\n\n 查询会考虑以下信息:\n - 应用的PID\n - 响应时间以纳秒存储,需转换为毫秒\n - 数据以span记录存储,查询耗时需要对符合条件的span进行求和\n - 服务相关信息使用serviceName字段\n - 如果用户明确提出要查询 trace信息,则需要在查询问题上question 上添加说明返回trace信息\n\n ## 查询示例\n\n - "帮我查询下 XXX 的 trace 信息"\n - "分析最近一小时内响应时间超过1秒的调用链"\n\n Args:\n ctx: MCP上下文,用于访问ARMS和SLS客户端\n user_id: 用户阿里云账号ID\n pid: 应用的PID\n region_id: 阿里云区域ID\n question: 查询调用链的自然语言问题\n\n Returns:\n 包含查询信息的字典,包括sls_query、project和log_store\n ', 'inputSchema': {'type': 'object', 'title': 'arms_generate_trace_queryArguments', 'required': ['user_id', 'pid', 'region_id', 'question'], 'properties': {'pid': {'type': 'string', 'title': 'Pid', 'description': 'pid,the pid of the app'}, 'user_id': {'type': 'integer', 'title': 'User Id', 'description': 'user aliyun account id'}, 'question': {'type': 'string', 'title': 'Question', 'description': 'question,the question to query the trace'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}}}}, {'name': 'cms_translate_natural_language_to_promql', 'description': '将自然语言转换为Prometheus PromQL查询语句。\n\n ## 功能概述\n\n 该工具可以将自然语言描述转换为有效的PromQL查询语句,便于用户使用自然语言表达查询需求。\n\n ## 使用场景\n\n - 当用户不熟悉PromQL查询语法时\n - 当需要快速构建复杂查询时\n - 当需要从自然语言描述中提取查询意图时\n\n ## 使用限制\n\n - 仅支持生成PromQL查询\n - 生成的是查询语句,而非查询结果\n - 禁止使用sls_execute_query工具执行,两者接口不兼容\n\n ## 最佳实践\n\n - 提供清晰简洁的自然语言描述\n - 不要在描述中包含项目或时序库名称\n - 首次生成的查询可能不完全符合要求,可能需要多次尝试\n\n ## 查询示例\n\n - "帮我生成 XXX 的PromQL查询语句"\n - "查询每个namespace下的Pod数量"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n text: 用于生成查询的自然语言文本\n project: SLS项目名称\n metric_store: SLS时序库名称\n region_id: 阿里云区域ID\n\n Returns:\n 生成的PromQL查询语句\n ', 'inputSchema': {'type': 'object', 'title': 'cms_translate_natural_language_to_promqlArguments', 'required': ['text', 'project', 'metric_store', 'region_id'], 'properties': {'text': {'type': 'string', 'title': 'Text', 'description': 'the natural language text to generate promql'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'metric_store': {'type': 'string', 'title': 'Metric Store', 'description': 'sls metric store name'}}}}] |
@lkp474/alibabacloud-observability-mcp-server | Alibaba Cloud Observability Server | Provide seamless access to Alibaba Cloud observability products such as Log Service (SLS), Application Real-Time Monitoring Service (ARMS), and Cloud Monitor through a standardized MCP interface. Enable intelligent agents to quickly query, analyze, and interact with observability data to enhance monitoring and troubleshooting workflows. Simplify integration with Alibaba Cloud's monitoring ecosystem for efficient observability management. | 2025-04-24T07:22:01.996Z | 0 | https://smithery.ai/server/@lkp474/alibabacloud-observability-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'sls_list_projects', 'description': '列出阿里云日志服务中的所有项目。\n\n ## 功能概述\n\n 该工具可以列出指定区域中的所有SLS项目,支持通过项目名进行模糊搜索。如果不提供项目名称,则返回该区域的所有项目。\n\n ## 使用场景\n\n - 当需要查找特定项目是否存在时\n - 当需要获取某个区域下所有可用的SLS项目列表时\n - 当需要根据项目名称的部分内容查找相关项目时\n\n ## 返回数据结构\n\n 返回的项目信息包含:\n - project_name: 项目名称\n - description: 项目描述\n - region_id: 项目所在区域\n\n ## 查询示例\n\n - "有没有叫 XXX 的 project"\n - "列出所有SLS项目"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n project_name_query: 项目名称查询字符串,支持模糊搜索\n limit: 返回结果的最大数量,范围1-100,默认10\n region_id: 阿里云区域ID,region id format like "xx-xxx",like "cn-hangzhou"\n\n Returns:\n 包含项目信息的字典列表,每个字典包含project_name、description和region_id\n ', 'inputSchema': {'type': 'object', 'title': 'sls_list_projectsArguments', 'required': ['region_id'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10, 'maximum': 100, 'minimum': 1, 'description': 'limit,max is 100'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': 'aliyun region id'}, 'project_name_query': {'type': 'string', 'title': 'Project Name Query', 'default': None, 'description': 'project name,fuzzy search'}}}}, {'name': 'sls_list_logstores', 'description': '列出SLS项目中的日志库。\n\n ## 功能概述\n\n 该工具可以列出指定SLS项目中的所有日志库,如果不选,则默认为日志库类型\n 支持通过日志库名称进行模糊搜索。如果不提供日志库名称,则返回项目中的所有日志库。\n\n ## 使用场景\n\n - 当需要查找特定项目下是否存在某个日志库时\n - 当需要获取项目中所有可用的日志库列表时\n - 当需要根据日志库名称的部分内容查找相关日志库时\n - 如果从上下文未指定 project参数,除非用户说了遍历,则可使用 sls_list_projects 工具获取项目列表\n\n ## 是否指标库\n\n 如果需要查找指标或者时序相关的库,请将is_metric_store参数设置为True\n\n ## 查询示例\n\n - "我想查询有没有 XXX 的日志库"\n - "某个 project 有哪些 log store"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n project: SLS项目名称,必须精确匹配\n log_store: 日志库名称,支持模糊搜索\n limit: 返回结果的最大数量,范围1-100,默认10\n is_metric_store: 是否指标库,可选值为True或False,默认为False\n region_id: 阿里云区域ID\n\n Returns:\n 日志库名称的字符串列表\n ', 'inputSchema': {'type': 'object', 'title': 'sls_list_logstoresArguments', 'required': ['project', 'region_id'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10, 'maximum': 100, 'minimum': 1, 'description': 'limit,max is 100'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name,must exact match,should not contain chinese characters'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'default': None, 'description': 'log store name,fuzzy search'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'log_store_type': {'type': 'string', 'title': 'Log Store Type', 'default': None, 'description': 'log store type,default is logs,should be logs,metrics'}, 'is_metric_store': {'type': 'boolean', 'title': 'Is Metric Store', 'default': False, 'description': 'is metric store,default is False,only use want to find metric store'}}}}, {'name': 'sls_describe_logstore', 'description': '获取SLS日志库的结构信息。\n\n ## 功能概述\n\n 该工具用于获取指定SLS项目中日志库的索引信息和结构定义,包括字段类型、别名、是否大小写敏感等信息。\n\n ## 使用场景\n\n - 当需要了解日志库的字段结构时\n - 当需要获取日志库的索引配置信息时\n - 当构建查询语句前需要了解可用字段时\n - 当需要分析日志数据结构时\n\n ## 返回数据结构\n\n 返回一个字典,键为字段名,值包含以下信息:\n - alias: 字段别名\n - sensitive: 是否大小写敏感\n - type: 字段类型\n - json_keys: JSON字段的子字段信息\n\n ## 查询示例\n\n - "我想查询 XXX 的日志库的 schema"\n - "我想查询 XXX 的日志库的 index"\n - "我想查询 XXX 的日志库的结构信息"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n project: SLS项目名称,必须精确匹配\n log_store: SLS日志库名称,必须精确匹配\n region_id: 阿里云区域ID\n\n Returns:\n 包含日志库结构信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'sls_describe_logstoreArguments', 'required': ['project', 'log_store', 'region_id'], 'properties': {'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name,must exact match,not fuzzy search'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'description': 'sls log store name,must exact match,not fuzzy search'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}}}}, {'name': 'sls_execute_query', 'description': '执行SLS日志查询。\n\n ## 功能概述\n\n 该工具用于在指定的SLS项目和日志库上执行查询语句,并返回查询结果。查询将在指定的时间范围内执行。\n\n ## 使用场景\n\n - 当需要根据特定条件查询日志数据时\n - 当需要分析特定时间范围内的日志信息时\n - 当需要检索日志中的特定事件或错误时\n - 当需要统计日志数据的聚合信息时\n\n\n\n ## 查询语法\n\n 查询必须使用SLS有效的查询语法,而非自然语言。如果不了解日志库的结构,可以先使用sls_describe_logstore工具获取索引信息。\n\n ## 时间范围\n\n 查询必须指定时间范围:\n - from_timestamp: 开始时间戳(秒)\n - to_timestamp: 结束时间戳(秒)\n\n ## 查询示例\n\n - "帮我查询下 XXX 的日志信息"\n - "查找最近一小时内的错误日志"\n\n ## 错误处理\n - Column xxx can not be resolved 如果是 sls_translate_natural_language_to_query 工具生成的查询语句 可能存在查询列未开启统计,可以提示用户增加相对应的信息,或者调用 sls_describe_logstore 工具获取索引信息之后,要用户选择正确的字段或者提示用户对列开启统计。当确定列开启统计之后,可以再次调用sls_translate_natural_language_to_query 工具生成查询语句\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n project: SLS项目名称\n log_store: SLS日志库名称\n query: SLS查询语句\n from_timestamp: 查询开始时间戳(秒)\n to_timestamp: 查询结束时间戳(秒)\n limit: 返回结果的最大数量,范围1-100,默认10\n region_id: 阿里云区域ID\n\n Returns:\n 查询结果列表,每个元素为一条日志记录\n ', 'inputSchema': {'type': 'object', 'title': 'sls_execute_queryArguments', 'required': ['project', 'log_store', 'query', 'from_timestamp', 'to_timestamp', 'region_id'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10, 'maximum': 100, 'minimum': 1, 'description': 'limit,max is 100'}, 'query': {'type': 'string', 'title': 'Query', 'description': 'query'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'description': 'sls log store name'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'to_timestamp': {'type': 'integer', 'title': 'To Timestamp', 'description': 'to timestamp,unit is second,should be unix timestamp'}, 'from_timestamp': {'type': 'integer', 'title': 'From Timestamp', 'description': 'from timestamp,unit is second,should be unix timestamp'}}}}, {'name': 'sls_translate_natural_language_to_log_query', 'description': '将自然语言转换为SLS查询语句。\n\n ## 功能概述\n\n 该工具可以将自然语言描述转换为有效的SLS查询语句,便于用户使用自然语言表达查询需求。用户有任何 SLS 日志查询需求时,都需要优先使用该工具。\n\n ## 使用场景\n\n - 当用户不熟悉SLS查询语法时\n - 当需要快速构建复杂查询时\n - 当需要从自然语言描述中提取查询意图时\n\n ## 使用限制\n\n - 仅支持生成SLS查询,不支持其他数据库的SQL如MySQL、PostgreSQL等\n - 生成的是查询语句,而非查询结果,需要配合sls_execute_query工具使用\n - 如果查询涉及ARMS应用,应优先使用arms_generate_trace_query工具\n - 需要对应的 log_sotre 已经设定了索引信息,如果生成的结果里面有字段没有索引或者开启统计,可能会导致查询失败,需要友好的提示用户增加相对应的索引信息\n\n ## 最佳实践\n\n - 提供清晰简洁的自然语言描述\n - 不要在描述中包含项目或日志库名称\n - 如有需要,指定查询的时间范围\n - 首次生成的查询可能不完全符合要求,可能需要多次尝试\n\n ## 查询示例\n\n - "帮我生成下 XXX 的日志查询语句"\n - "查找最近一小时内的错误日志"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n text: 用于生成查询的自然语言文本\n project: SLS项目名称\n log_store: SLS日志库名称\n region_id: 阿里云区域ID\n\n Returns:\n 生成的SLS查询语句\n ', 'inputSchema': {'type': 'object', 'title': 'sls_translate_natural_language_to_log_queryArguments', 'required': ['text', 'project', 'log_store', 'region_id'], 'properties': {'text': {'type': 'string', 'title': 'Text', 'description': 'the natural language text to generate sls log store query'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'description': 'sls log store name'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}}}}, {'name': 'sls_diagnose_query', 'description': '诊断SLS查询语句。\n\n ## 功能概述\n\n 当 SLS 查询语句执行失败时,可以调用该工具,根据错误信息,生成诊断结果。诊断结果会包含查询语句的正确性、性能分析、优化建议等信息。\n\n ## 使用场景\n\n - 当需要诊断SLS查询语句的正确性时\n - 当 SQL 执行错误需要查找原因时\n\n ## 查询示例\n\n - "帮我诊断下 XXX 的日志查询语句"\n - "帮我分析下 XXX 的日志查询语句"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n query: SLS查询语句\n error_message: 错误信息\n project: SLS项目名称\n log_store: SLS日志库名称\n region_id: 阿里云区域ID\n ', 'inputSchema': {'type': 'object', 'title': 'sls_diagnose_queryArguments', 'required': ['query', 'error_message', 'project', 'log_store', 'region_id'], 'properties': {'query': {'type': 'string', 'title': 'Query', 'description': 'sls query'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name'}, 'log_store': {'type': 'string', 'title': 'Log Store', 'description': 'sls log store name'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'error_message': {'type': 'string', 'title': 'Error Message', 'description': 'error message'}}}}, {'name': 'sls_get_current_time', 'description': '获取当前时间信息。\n\n ## 功能概述\n\n 该工具用于获取当前的时间戳和格式化的时间字符串,便于在执行SLS查询时指定时间范围。\n\n ## 使用场景\n\n - 当需要获取当前时间以设置查询的结束时间\n - 当需要获取当前时间戳进行时间计算\n - 在构建查询时间范围时使用当前时间作为参考点\n\n ## 返回数据格式\n\n 返回包含两个字段的字典:\n - current_time: 格式化的时间字符串 (YYYY-MM-DD HH:MM:SS)\n - current_timestamp: 整数形式的Unix时间戳(秒)\n\n Args:\n ctx: MCP上下文\n\n Returns:\n 包含当前时间信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'sls_get_current_timeArguments', 'properties': {}}}, {'name': 'arms_search_apps', 'description': '搜索ARMS应用。\n\n ## 功能概述\n\n 该工具用于根据应用名称搜索ARMS应用,返回应用的基本信息,包括应用名称、PID、用户ID和类型。\n\n ## 使用场景\n\n - 当需要查找特定名称的应用时\n - 当需要获取应用的PID以便进行其他ARMS操作时\n - 当需要检查用户拥有的应用列表时\n\n ## 搜索条件\n\n - app_name_query必须是应用名称的一部分,而非自然语言\n - 搜索结果将分页返回,可以指定页码和每页大小\n\n ## 返回数据结构\n\n 返回一个字典,包含以下信息:\n - total: 符合条件的应用总数\n - page_size: 每页大小\n - page_number: 当前页码\n - trace_apps: 应用列表,每个应用包含app_name、pid、user_id和type\n\n ## 查询示例\n\n - "帮我查询下 XXX 的应用"\n - "找出名称包含\'service\'的应用"\n\n Args:\n ctx: MCP上下文,用于访问ARMS客户端\n app_name_query: 应用名称查询字符串\n region_id: 阿里云区域ID\n page_size: 每页大小,范围1-100,默认20\n page_number: 页码,默认1\n\n Returns:\n 包含应用信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'arms_search_appsArguments', 'required': ['app_name_query', 'region_id'], 'properties': {'page_size': {'type': 'integer', 'title': 'Page Size', 'default': 20, 'maximum': 100, 'minimum': 1, 'description': 'page size,max is 100'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'page_number': {'type': 'integer', 'title': 'Page Number', 'default': 1, 'minimum': 1, 'description': 'page number,default is 1'}, 'app_name_query': {'type': 'string', 'title': 'App Name Query', 'description': 'app name query'}}}}, {'name': 'arms_generate_trace_query', 'description': '生成ARMS应用的调用链查询语句。\n\n ## 功能概述\n\n 该工具用于将自然语言描述转换为ARMS调用链查询语句,便于分析应用性能和问题。\n\n ## 使用场景\n\n - 当需要查询应用的调用链信息时\n - 当需要分析应用性能问题时\n - 当需要跟踪特定请求的执行路径时\n - 当需要分析服务间调用关系时\n\n ## 查询处理\n\n 工具会将自然语言问题转换为SLS查询,并返回:\n - 生成的SLS查询语句\n - 存储调用链数据的项目名\n - 存储调用链数据的日志库名\n\n ## 查询上下文\n\n 查询会考虑以下信息:\n - 应用的PID\n - 响应时间以纳秒存储,需转换为毫秒\n - 数据以span记录存储,查询耗时需要对符合条件的span进行求和\n - 服务相关信息使用serviceName字段\n - 如果用户明确提出要查询 trace信息,则需要在查询问题上question 上添加说明返回trace信息\n\n ## 查询示例\n\n - "帮我查询下 XXX 的 trace 信息"\n - "分析最近一小时内响应时间超过1秒的调用链"\n\n Args:\n ctx: MCP上下文,用于访问ARMS和SLS客户端\n user_id: 用户阿里云账号ID\n pid: 应用的PID\n region_id: 阿里云区域ID\n question: 查询调用链的自然语言问题\n\n Returns:\n 包含查询信息的字典,包括sls_query、project和log_store\n ', 'inputSchema': {'type': 'object', 'title': 'arms_generate_trace_queryArguments', 'required': ['user_id', 'pid', 'region_id', 'question'], 'properties': {'pid': {'type': 'string', 'title': 'Pid', 'description': 'pid,the pid of the app'}, 'user_id': {'type': 'integer', 'title': 'User Id', 'description': 'user aliyun account id'}, 'question': {'type': 'string', 'title': 'Question', 'description': 'question,the question to query the trace'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}}}}, {'name': 'cms_translate_natural_language_to_promql', 'description': '将自然语言转换为Prometheus PromQL查询语句。\n\n ## 功能概述\n\n 该工具可以将自然语言描述转换为有效的PromQL查询语句,便于用户使用自然语言表达查询需求。\n\n ## 使用场景\n\n - 当用户不熟悉PromQL查询语法时\n - 当需要快速构建复杂查询时\n - 当需要从自然语言描述中提取查询意图时\n\n ## 使用限制\n\n - 仅支持生成PromQL查询\n - 生成的是查询语句,而非查询结果\n - 禁止使用sls_execute_query工具执行,两者接口不兼容\n\n ## 最佳实践\n\n - 提供清晰简洁的自然语言描述\n - 不要在描述中包含项目或时序库名称\n - 首次生成的查询可能不完全符合要求,可能需要多次尝试\n\n ## 查询示例\n\n - "帮我生成 XXX 的PromQL查询语句"\n - "查询每个namespace下的Pod数量"\n\n Args:\n ctx: MCP上下文,用于访问SLS客户端\n text: 用于生成查询的自然语言文本\n project: SLS项目名称\n metric_store: SLS时序库名称\n region_id: 阿里云区域ID\n\n Returns:\n 生成的PromQL查询语句\n ', 'inputSchema': {'type': 'object', 'title': 'cms_translate_natural_language_to_promqlArguments', 'required': ['text', 'project', 'metric_store', 'region_id'], 'properties': {'text': {'type': 'string', 'title': 'Text', 'description': 'the natural language text to generate promql'}, 'project': {'type': 'string', 'title': 'Project', 'description': 'sls project name'}, 'region_id': {'type': 'string', 'title': 'Region Id', 'description': "aliyun region id,region id format like 'xx-xxx',like 'cn-hangzhou'"}, 'metric_store': {'type': 'string', 'title': 'Metric Store', 'description': 'sls metric store name'}}}}] |
@kailashAppDev/figma-mcp-toolkit | Figma API Integration Server | Integrate Figma's powerful design capabilities into your applications. Leverage the MCP server to interact with Figma's API seamlessly and enhance your workflows. Simplify your design processes by connecting Figma with other tools and services effortlessly. | 2025-03-19T14:44:38.960Z | 0 | https://smithery.ai/server/@kailashAppDev/figma-mcp-toolkit | true | null | {
"scanPassed": true
} | [{'name': 'extract-components', 'description': 'Extract all components from Figma file and get all graphql queries and mutations', 'inputSchema': {'type': 'object'}}, {'name': 'extract-latest-components', 'description': 'Extract newly added components from Figma file', 'inputSchema': {'type': 'object'}}, {'name': 'extract-one-component', 'description': 'Extract a single component from Figma file', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['parameters'], 'properties': {'parameters': {'type': 'object', 'required': ['componentName'], 'properties': {'componentName': {'type': 'string'}}, 'additionalProperties': False}}, 'additionalProperties': False}}] |
@kailashAppDev/figma-mcp-toolkit | Figma API Integration Server | Integrate Figma's powerful design capabilities into your applications. Leverage the MCP server to interact with Figma's API seamlessly and enhance your workflows. Simplify your design processes by connecting Figma with other tools and services effortlessly. | 2025-03-19T14:44:38.960Z | 0 | https://smithery.ai/server/@kailashAppDev/figma-mcp-toolkit | true | null | {
"scanPassed": true
} | [{'name': 'extract-components', 'description': 'Extract all components from Figma file and get all graphql queries and mutations', 'inputSchema': {'type': 'object'}}, {'name': 'extract-latest-components', 'description': 'Extract newly added components from Figma file', 'inputSchema': {'type': 'object'}}, {'name': 'extract-one-component', 'description': 'Extract a single component from Figma file', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['parameters'], 'properties': {'parameters': {'type': 'object', 'required': ['componentName'], 'properties': {'componentName': {'type': 'string'}}, 'additionalProperties': False}}, 'additionalProperties': False}}] |
@Operative-Sh/web-agent-qa | WebEvalAgent | Automate the debugging of your web applications with ease. Let your code agent analyze and improve your web app's performance and functionality. Start using it to enhance your development workflow today! | 2025-04-03T18:14:10.301Z | 0 | https://smithery.ai/server/@Operative-Sh/web-agent-qa | false | null | {
"scanPassed": true
} | [{'name': 'web_app_ux_evaluator', 'description': 'Evaluate the user experience of a web application.\n \n This tool allows the AI to assess the quality of user experience and interface design\n of a web application by performing specific tasks and analyzing the interaction flow.\n \n Args:\n url: Required. The URL of the web application to evaluate\n task: Required. The specific UX/UI aspect to test (e.g., "test the checkout flow", \n "evaluate the navigation menu usability", "check form validation feedback")\n \n Returns:\n list[TextContent]: A detailed evaluation of the web application\'s UX/UI, including\n observations, issues found, and recommendations for improvement\n ', 'inputSchema': {'type': 'object', 'title': 'web_app_ux_evaluatorArguments', 'required': ['url', 'task'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'task': {'type': 'string', 'title': 'Task'}}}}] |
@Operative-Sh/web-agent-qa | WebEvalAgent | Automate the debugging of your web applications with ease. Let your code agent analyze and improve your web app's performance and functionality. Start using it to enhance your development workflow today! | 2025-04-03T18:14:10.301Z | 0 | https://smithery.ai/server/@Operative-Sh/web-agent-qa | false | null | {
"scanPassed": true
} | [{'name': 'web_app_ux_evaluator', 'description': 'Evaluate the user experience of a web application.\n \n This tool allows the AI to assess the quality of user experience and interface design\n of a web application by performing specific tasks and analyzing the interaction flow.\n \n Args:\n url: Required. The URL of the web application to evaluate\n task: Required. The specific UX/UI aspect to test (e.g., "test the checkout flow", \n "evaluate the navigation menu usability", "check form validation feedback")\n \n Returns:\n list[TextContent]: A detailed evaluation of the web application\'s UX/UI, including\n observations, issues found, and recommendations for improvement\n ', 'inputSchema': {'type': 'object', 'title': 'web_app_ux_evaluatorArguments', 'required': ['url', 'task'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'task': {'type': 'string', 'title': 'Task'}}}}] |
@Fewsats/fewsats-mcp | Fewsats Server | Enable AI agents to securely purchase items through a seamless integration with Fewsats. Retrieve wallet balances, payment methods, and manage transactions effortlessly. Simplify your purchasing process with secure payment handling and detailed transaction information. | 2025-03-13T19:01:05.608Z | 0 | https://smithery.ai/server/@Fewsats/fewsats-mcp | true | null | {
"scanPassed": true
} | [{'name': 'balance', 'description': "Retrieve the balance of the user's wallet.\n You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues.\n Fewsats will automatically add balance when needed.", 'inputSchema': {'type': 'object', 'title': 'balanceArguments', 'properties': {}}}, {'name': 'payment_methods', 'description': "Retrieve the user's payment methods.\n You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues.\n Fewsats will automatically select the best payment method.", 'inputSchema': {'type': 'object', 'title': 'payment_methodsArguments', 'properties': {}}}, {'name': 'pay_offer', 'description': "Pays an offer_id from the l402_offers.\n\n The l402_offer parameter must be a dict with this structure:\n {\n 'offers': [\n {\n 'offer_id': 'test_offer_2', # String identifier for the offer\n 'amount': 1, # Numeric cost value\n 'currency': 'usd', # Currency code\n 'description': 'Test offer', # Text description\n 'title': 'Test Package' # Title of the package\n }\n ],\n 'payment_context_token': '60a8e027-8b8b-4ccf-b2b9-380ed0930283', # Payment context token\n 'payment_request_url': 'https://api.fewsats.com/v0/l402/payment-request', # Payment URL\n 'version': '0.2.2' # API version\n }\n\n Returns payment status response. \n If payment status is `needs_review` inform the user he will have to approve it at app.fewsats.com", 'inputSchema': {'type': 'object', 'title': 'pay_offerArguments', 'required': ['offer_id', 'l402_offer'], 'properties': {'offer_id': {'type': 'string', 'title': 'Offer Id'}, 'l402_offer': {'type': 'object', 'title': 'L402 Offer', 'additionalProperties': True}}}}, {'name': 'payment_info', 'description': 'Retrieve the details of a payment.\n If payment status is `needs_review` inform the user he will have to approve it at app.fewsats.com', 'inputSchema': {'type': 'object', 'title': 'payment_infoArguments', 'required': ['pid'], 'properties': {'pid': {'type': 'string', 'title': 'Pid'}}}}, {'name': 'billing_info', 'description': "Retrieve the user's billing information.\n Returns billing details including name, address, and other relevant information.\n This information can also be used as shipping address for purchases.", 'inputSchema': {'type': 'object', 'title': 'billing_infoArguments', 'properties': {}}}] |
@Fewsats/fewsats-mcp | Fewsats Server | Enable AI agents to securely purchase items through a seamless integration with Fewsats. Retrieve wallet balances, payment methods, and manage transactions effortlessly. Simplify your purchasing process with secure payment handling and detailed transaction information. | 2025-03-13T19:01:05.608Z | 0 | https://smithery.ai/server/@Fewsats/fewsats-mcp | true | null | {
"scanPassed": true
} | [{'name': 'balance', 'description': "Retrieve the balance of the user's wallet.\n You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues.\n Fewsats will automatically add balance when needed.", 'inputSchema': {'type': 'object', 'title': 'balanceArguments', 'properties': {}}}, {'name': 'payment_methods', 'description': "Retrieve the user's payment methods.\n You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues.\n Fewsats will automatically select the best payment method.", 'inputSchema': {'type': 'object', 'title': 'payment_methodsArguments', 'properties': {}}}, {'name': 'pay_offer', 'description': "Pays an offer_id from the l402_offers.\n\n The l402_offer parameter must be a dict with this structure:\n {\n 'offers': [\n {\n 'offer_id': 'test_offer_2', # String identifier for the offer\n 'amount': 1, # Numeric cost value\n 'currency': 'usd', # Currency code\n 'description': 'Test offer', # Text description\n 'title': 'Test Package' # Title of the package\n }\n ],\n 'payment_context_token': '60a8e027-8b8b-4ccf-b2b9-380ed0930283', # Payment context token\n 'payment_request_url': 'https://api.fewsats.com/v0/l402/payment-request', # Payment URL\n 'version': '0.2.2' # API version\n }\n\n Returns payment status response. \n If payment status is `needs_review` inform the user he will have to approve it at app.fewsats.com", 'inputSchema': {'type': 'object', 'title': 'pay_offerArguments', 'required': ['offer_id', 'l402_offer'], 'properties': {'offer_id': {'type': 'string', 'title': 'Offer Id'}, 'l402_offer': {'type': 'object', 'title': 'L402 Offer', 'additionalProperties': True}}}}, {'name': 'payment_info', 'description': 'Retrieve the details of a payment.\n If payment status is `needs_review` inform the user he will have to approve it at app.fewsats.com', 'inputSchema': {'type': 'object', 'title': 'payment_infoArguments', 'required': ['pid'], 'properties': {'pid': {'type': 'string', 'title': 'Pid'}}}}, {'name': 'billing_info', 'description': "Retrieve the user's billing information.\n Returns billing details including name, address, and other relevant information.\n This information can also be used as shipping address for purchases.", 'inputSchema': {'type': 'object', 'title': 'billing_infoArguments', 'properties': {}}}] |
@osaas/mcp-server | Eyevinn Open Source Cloud MCP Server | MCP server for using the Eyevinn Open Source Cloud API, enabling creation of solutions based on open web services. | 2024-12-27T15:35:22.235Z | 0 | https://smithery.ai/server/@osaas/mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'osc_create_db', 'description': 'Create a new database instance in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'type'], 'properties': {'name': {'type': 'string', 'pattern': '^[a-z0-9]+$', 'description': 'Name of the database'}, 'type': {'type': 'string', 'description': 'Type of database [SQL, NoSQL, MemoryDb]'}}, 'additionalProperties': False}}, {'name': 'osc_create_bucket', 'description': 'Create an S3 compatible bucket in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'pattern': '^[a-z0-9]+$', 'description': 'Name of the bucket'}}, 'additionalProperties': False}}, {'name': 'osc_create_vod', 'description': 'Create a VOD package using a VOD pipeline in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['pipeline', 'source'], 'properties': {'source': {'type': 'string', 'description': 'Source video URL'}, 'pipeline': {'type': 'string', 'pattern': '^[a-z0-9]+$', 'description': 'Name of the pipeline'}}, 'additionalProperties': False}}, {'name': 'osc_create_vod_pipeline', 'description': 'Create a VOD pipeline in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'pattern': '^[a-z0-9]+$', 'description': 'Name of the pipeline'}}, 'additionalProperties': False}}, {'name': 'osc_remove_vod_pipeline', 'description': 'Remove a VOD pipeline in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the pipeline'}}, 'additionalProperties': False}}] |
@osaas/mcp-server | Eyevinn Open Source Cloud MCP Server | MCP server for using the Eyevinn Open Source Cloud API, enabling creation of solutions based on open web services. | 2024-12-27T15:35:22.235Z | 0 | https://smithery.ai/server/@osaas/mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'osc_create_db', 'description': 'Create a new database instance in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'type'], 'properties': {'name': {'type': 'string', 'pattern': '^[a-z0-9]+$', 'description': 'Name of the database'}, 'type': {'type': 'string', 'description': 'Type of database [SQL, NoSQL, MemoryDb]'}}, 'additionalProperties': False}}, {'name': 'osc_create_bucket', 'description': 'Create an S3 compatible bucket in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'pattern': '^[a-z0-9]+$', 'description': 'Name of the bucket'}}, 'additionalProperties': False}}, {'name': 'osc_create_vod', 'description': 'Create a VOD package using a VOD pipeline in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['pipeline', 'source'], 'properties': {'source': {'type': 'string', 'description': 'Source video URL'}, 'pipeline': {'type': 'string', 'pattern': '^[a-z0-9]+$', 'description': 'Name of the pipeline'}}, 'additionalProperties': False}}, {'name': 'osc_create_vod_pipeline', 'description': 'Create a VOD pipeline in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'pattern': '^[a-z0-9]+$', 'description': 'Name of the pipeline'}}, 'additionalProperties': False}}, {'name': 'osc_remove_vod_pipeline', 'description': 'Remove a VOD pipeline in Eyevinn Open Source Cloud', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the pipeline'}}, 'additionalProperties': False}}] |
@vitaldb/bp_percentile | BP Percentile | Analyze blood pressure data to determine percentile rankings. Gain insights into patient health by comparing individual readings against population benchmarks. | 2025-04-09T15:14:13.737Z | 0 | https://smithery.ai/server/@vitaldb/bp_percentile | true | null | {
"scanPassed": true
} | [{'name': 'bp_percentile', 'description': "\n 혈압 센타일(percentile)을 계산하는 함수\n \n Parameters:\n -----------\n years : int\n 나이(년)\n months : int\n 나이(월)\n height : int\n 키(cm)\n sex : str\n 성별 ('male' 또는 'female')\n systolic : int\n 수축기 혈압(mmHg)\n diastolic : int\n 이완기 혈압(mmHg)\n \n Returns:\n --------\n dict\n 수축기 및 이완기 혈압 센타일 결과를 포함하는 딕셔너리\n ", 'inputSchema': {'type': 'object', 'title': 'bp_percentileArguments', 'required': ['years', 'months', 'height', 'sex', 'systolic', 'diastolic'], 'properties': {'sex': {'type': 'string', 'title': 'Sex'}, 'years': {'type': 'integer', 'title': 'Years'}, 'height': {'type': 'integer', 'title': 'Height'}, 'months': {'type': 'integer', 'title': 'Months'}, 'systolic': {'type': 'integer', 'title': 'Systolic'}, 'diastolic': {'type': 'integer', 'title': 'Diastolic'}}}}] |
@vitaldb/bp_percentile | BP Percentile | Analyze blood pressure data to determine percentile rankings. Gain insights into patient health by comparing individual readings against population benchmarks. | 2025-04-09T15:14:13.737Z | 0 | https://smithery.ai/server/@vitaldb/bp_percentile | true | null | {
"scanPassed": true
} | [{'name': 'bp_percentile', 'description': "\n 혈압 센타일(percentile)을 계산하는 함수\n \n Parameters:\n -----------\n years : int\n 나이(년)\n months : int\n 나이(월)\n height : int\n 키(cm)\n sex : str\n 성별 ('male' 또는 'female')\n systolic : int\n 수축기 혈압(mmHg)\n diastolic : int\n 이완기 혈압(mmHg)\n \n Returns:\n --------\n dict\n 수축기 및 이완기 혈압 센타일 결과를 포함하는 딕셔너리\n ", 'inputSchema': {'type': 'object', 'title': 'bp_percentileArguments', 'required': ['years', 'months', 'height', 'sex', 'systolic', 'diastolic'], 'properties': {'sex': {'type': 'string', 'title': 'Sex'}, 'years': {'type': 'integer', 'title': 'Years'}, 'height': {'type': 'integer', 'title': 'Height'}, 'months': {'type': 'integer', 'title': 'Months'}, 'systolic': {'type': 'integer', 'title': 'Systolic'}, 'diastolic': {'type': 'integer', 'title': 'Diastolic'}}}}] |
@waldzellai/scientific-method | Scientific Method Server | Guide language models through rigorous scientific reasoning by structuring the inquiry process from observation to conclusion. Enable systematic hypothesis testing, experimental design, and evidence evaluation to improve model transparency and accuracy. Facilitate iterative refinement of scientific understanding for enhanced causal analysis and problem-solving. | 2025-05-01T17:19:48.647Z | 0 | https://smithery.ai/server/@waldzellai/scientific-method | true | null | {
"scanPassed": true
} | [{'name': 'scientificMethod', 'description': 'A detailed tool for applying formal scientific reasoning to questions and problems.\nThis tool guides models through the scientific method with structured hypothesis testing.\nIt enforces explicit variable identification, prediction making, and evidence evaluation.\n\nWhen to use this tool:\n- Investigating cause-effect relationships\n- Evaluating competing explanations for phenomena\n- Developing and testing hypotheses\n- Avoiding confirmation bias in reasoning\n- Conducting systematic inquiry\n\nKey features:\n- Structured scientific process\n- Explicit variable identification\n- Controlled experimental design\n- Systematic evidence evaluation\n- Iterative hypothesis refinement', 'inputSchema': {'type': 'object', 'required': ['stage', 'inquiryId', 'iteration', 'nextStageNeeded'], 'properties': {'stage': {'enum': ['observation', 'question', 'hypothesis', 'experiment', 'analysis', 'conclusion', 'iteration'], 'type': 'string', 'description': 'Current stage in the scientific process'}, 'analysis': {'type': 'string', 'description': 'Analysis of the experimental results'}, 'question': {'type': 'string', 'description': 'Research question based on the observation'}, 'inquiryId': {'type': 'string', 'description': 'Unique identifier for this scientific inquiry'}, 'iteration': {'type': 'number', 'minimum': 0, 'description': 'Current iteration of the scientific process'}, 'conclusion': {'type': 'string', 'description': 'Conclusion based on the analysis'}, 'experiment': {'type': 'object', 'required': ['design', 'methodology', 'predictions', 'experimentId', 'hypothesisId', 'controlMeasures'], 'properties': {'design': {'type': 'string', 'description': 'General description of the experimental design'}, 'results': {'type': 'string', 'description': 'Results of the experiment'}, 'nextSteps': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Suggested next steps based on results'}, 'limitations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Limitations of the experimental design'}, 'methodology': {'type': 'string', 'description': 'Detailed methodology for the experiment'}, 'predictions': {'type': 'array', 'items': {'type': 'object', 'required': ['if', 'then'], 'properties': {'if': {'type': 'string', 'description': 'Condition or manipulation'}, 'else': {'type': 'string', 'description': 'Alternative outcome if hypothesis is incorrect'}, 'then': {'type': 'string', 'description': 'Expected outcome if hypothesis is correct'}}}, 'description': 'Predictions based on the hypothesis'}, 'experimentId': {'type': 'string', 'description': 'Unique identifier for this experiment'}, 'hypothesisId': {'type': 'string', 'description': 'ID of the hypothesis being tested'}, 'outcomeMatched': {'type': 'boolean', 'description': 'Whether the results matched the predictions'}, 'controlMeasures': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Measures to control confounding variables'}, 'unexpectedObservations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Unexpected observations during the experiment'}}, 'description': 'Experimental design to test the hypothesis'}, 'hypothesis': {'type': 'object', 'required': ['statement', 'variables', 'assumptions', 'hypothesisId', 'confidence', 'domain', 'iteration', 'status'], 'properties': {'domain': {'type': 'string', 'description': 'Knowledge domain of the hypothesis'}, 'status': {'enum': ['proposed', 'testing', 'supported', 'refuted', 'refined'], 'type': 'string', 'description': 'Current status of the hypothesis'}, 'iteration': {'type': 'number', 'minimum': 0, 'description': 'Iteration number of the hypothesis'}, 'statement': {'type': 'string', 'description': 'Clear, testable hypothesis statement'}, 'variables': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'type'], 'properties': {'name': {'type': 'string', 'description': 'Name of the variable'}, 'type': {'enum': ['independent', 'dependent', 'controlled', 'confounding'], 'type': 'string', 'description': 'Type of variable'}, 'operationalization': {'type': 'string', 'description': 'How the variable is measured or manipulated'}}}, 'description': 'Variables involved in the hypothesis'}, 'confidence': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Confidence in the hypothesis (0.0-1.0)'}, 'assumptions': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Assumptions underlying the hypothesis'}, 'hypothesisId': {'type': 'string', 'description': 'Unique identifier for this hypothesis'}, 'refinementOf': {'type': 'string', 'description': 'ID of the parent hypothesis if this is a refinement'}, 'alternativeTo': {'type': 'array', 'items': {'type': 'string'}, 'description': 'IDs of competing hypotheses'}}, 'description': 'Formal hypothesis with variables and assumptions'}, 'observation': {'type': 'string', 'description': 'Observation of a phenomenon to investigate'}, 'nextStageNeeded': {'type': 'boolean', 'description': 'Whether another stage is needed in the process'}}}}] |
@Bigsy/clj-kondo-MCP | Clojure Linter | Lint your Clojure, ClojureScript, and EDN files effortlessly. Enhance your coding experience by integrating linting capabilities directly into your development environment. Ensure code quality and adherence to best practices with ease. | 2025-03-31T04:00:40.701Z | 0 | https://smithery.ai/server/@Bigsy/clj-kondo-MCP | true | null | {
"scanPassed": true
} | [{'name': 'lint_clojure', 'description': 'Lint Clojure/ClojureScript/EDN content using clj-kondo', 'inputSchema': {'type': 'object', 'required': ['file'], 'properties': {'file': {'type': 'string', 'description': 'Can be: 1) Absolute path to a file, 2) Directory path (will lint all .clj/.cljs/.cljc files recursively), or 3) Classpath string (obtained via `lein classpath` or `clojure -Spath`)'}, 'configDir': {'type': 'string', 'description': 'Optional absolute path to .clj-kondo config directory (e.g. /Users/name/project/.clj-kondo). If not provided, clj-kondo will look for .clj-kondo directory in the current and parent directories.'}}}}] |
@zqushair/frontapp-mcp | Frontapp Integration Server | Integrate your Large Language Models with Frontapp to manage customer communications seamlessly. Automate workflows and access conversation data using natural language commands, enhancing your customer support capabilities. | 2025-03-20T17:16:23.225Z | 0 | https://smithery.ai/server/@zqushair/frontapp-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_conversations', 'description': 'Get a list of conversations from Frontapp', 'inputSchema': {'type': 'object', 'properties': {'q': {'type': 'string', 'description': 'Search query'}, 'limit': {'type': 'number', 'description': 'Maximum number of results to return'}, 'status': {'enum': ['open', 'archived', 'spam', 'deleted'], 'type': 'string', 'description': 'Filter by conversation status'}, 'tag_id': {'type': 'string', 'description': 'Filter by tag ID'}, 'inbox_id': {'type': 'string', 'description': 'Filter by inbox ID'}, 'page_token': {'type': 'string', 'description': 'Token for pagination'}, 'assignee_id': {'type': 'string', 'description': 'Filter by assignee ID'}}}}, {'name': 'get_conversation', 'description': 'Get details of a specific conversation', 'inputSchema': {'type': 'object', 'required': ['conversation_id'], 'properties': {'conversation_id': {'type': 'string', 'description': 'ID of the conversation'}}}}, {'name': 'send_message', 'description': 'Send a message to a conversation', 'inputSchema': {'type': 'object', 'required': ['conversation_id', 'content'], 'properties': {'content': {'type': 'string', 'description': 'Message content'}, 'options': {'type': 'object', 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Tags to apply to the conversation'}, 'draft': {'type': 'boolean', 'description': 'Whether to create a draft instead of sending'}, 'archive': {'type': 'boolean', 'description': 'Whether to archive the conversation after sending'}}, 'description': 'Additional options'}, 'subject': {'type': 'string', 'description': 'Message subject'}, 'author_id': {'type': 'string', 'description': 'ID of the message author'}, 'conversation_id': {'type': 'string', 'description': 'ID of the conversation'}}}}, {'name': 'add_comment', 'description': 'Add a comment to a conversation', 'inputSchema': {'type': 'object', 'required': ['conversation_id', 'body', 'author_id'], 'properties': {'body': {'type': 'string', 'description': 'Comment body'}, 'author_id': {'type': 'string', 'description': 'ID of the comment author'}, 'conversation_id': {'type': 'string', 'description': 'ID of the conversation'}}}}, {'name': 'archive_conversation', 'description': 'Archive a conversation', 'inputSchema': {'type': 'object', 'required': ['conversation_id'], 'properties': {'conversation_id': {'type': 'string', 'description': 'ID of the conversation'}}}}, {'name': 'assign_conversation', 'description': 'Assign a conversation to a teammate', 'inputSchema': {'type': 'object', 'required': ['conversation_id', 'assignee_id'], 'properties': {'assignee_id': {'type': 'string', 'description': 'ID of the teammate to assign the conversation to'}, 'conversation_id': {'type': 'string', 'description': 'ID of the conversation'}}}}, {'name': 'get_contact', 'description': 'Get details of a specific contact', 'inputSchema': {'type': 'object', 'required': ['contact_id'], 'properties': {'contact_id': {'type': 'string', 'description': 'ID of the contact'}}}}, {'name': 'create_contact', 'description': 'Create a new contact in Frontapp', 'inputSchema': {'type': 'object', 'required': ['handles'], 'properties': {'name': {'type': 'string', 'description': 'Name of the contact'}, 'links': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'url'], 'properties': {'url': {'type': 'string', 'description': 'Link URL'}, 'name': {'type': 'string', 'description': 'Link name'}}}, 'description': 'Links associated with the contact'}, 'handles': {'type': 'array', 'items': {'type': 'object', 'required': ['handle', 'source'], 'properties': {'handle': {'type': 'string', 'description': 'Handle value (e.g., email address)'}, 'source': {'type': 'string', 'description': 'Handle source (e.g., email)'}}}, 'description': 'Contact handles (email, phone, etc.)'}, 'description': {'type': 'string', 'description': 'Description of the contact'}, 'custom_fields': {'type': 'object', 'description': 'Custom fields for the contact'}}}}, {'name': 'update_contact', 'description': 'Update an existing contact in Frontapp', 'inputSchema': {'type': 'object', 'required': ['contact_id'], 'properties': {'name': {'type': 'string', 'description': 'Name of the contact'}, 'links': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'url'], 'properties': {'url': {'type': 'string', 'description': 'Link URL'}, 'name': {'type': 'string', 'description': 'Link name'}}}, 'description': 'Links associated with the contact'}, 'handles': {'type': 'array', 'items': {'type': 'object', 'required': ['handle', 'source'], 'properties': {'handle': {'type': 'string', 'description': 'Handle value (e.g., email address)'}, 'source': {'type': 'string', 'description': 'Handle source (e.g., email)'}}}, 'description': 'Contact handles (email, phone, etc.)'}, 'contact_id': {'type': 'string', 'description': 'ID of the contact to update'}, 'description': {'type': 'string', 'description': 'Description of the contact'}, 'custom_fields': {'type': 'object', 'description': 'Custom fields for the contact'}}}}, {'name': 'get_teammates', 'description': 'Get a list of teammates from Frontapp', 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of results to return'}, 'page_token': {'type': 'string', 'description': 'Token for pagination'}}}}, {'name': 'get_teammate', 'description': 'Get details of a specific teammate', 'inputSchema': {'type': 'object', 'required': ['teammate_id'], 'properties': {'teammate_id': {'type': 'string', 'description': 'ID of the teammate'}}}}, {'name': 'get_accounts', 'description': 'Get a list of accounts from Frontapp', 'inputSchema': {'type': 'object', 'properties': {'q': {'type': 'string', 'description': 'Search query'}, 'limit': {'type': 'number', 'description': 'Maximum number of results to return'}, 'page_token': {'type': 'string', 'description': 'Token for pagination'}}}}, {'name': 'get_account', 'description': 'Get details of a specific account', 'inputSchema': {'type': 'object', 'required': ['account_id'], 'properties': {'account_id': {'type': 'string', 'description': 'ID of the account'}}}}, {'name': 'create_account', 'description': 'Create a new account in Frontapp', 'inputSchema': {'type': 'object', 'required': ['name', 'domains'], 'properties': {'name': {'type': 'string', 'description': 'Name of the account'}, 'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Domains associated with the account'}, 'description': {'type': 'string', 'description': 'Description of the account'}, 'external_id': {'type': 'string', 'description': 'External ID for the account'}, 'custom_fields': {'type': 'object', 'description': 'Custom fields for the account'}}}}, {'name': 'update_account', 'description': 'Update an existing account in Frontapp', 'inputSchema': {'type': 'object', 'required': ['account_id'], 'properties': {'name': {'type': 'string', 'description': 'Name of the account'}, 'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Domains associated with the account'}, 'account_id': {'type': 'string', 'description': 'ID of the account to update'}, 'description': {'type': 'string', 'description': 'Description of the account'}, 'external_id': {'type': 'string', 'description': 'External ID for the account'}, 'custom_fields': {'type': 'object', 'description': 'Custom fields for the account'}}}}, {'name': 'get_tags', 'description': 'Get a list of tags from Frontapp', 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of results to return'}, 'page_token': {'type': 'string', 'description': 'Token for pagination'}}}}, {'name': 'apply_tag', 'description': 'Apply a tag to a conversation', 'inputSchema': {'type': 'object', 'required': ['conversation_id', 'tag_id'], 'properties': {'tag_id': {'type': 'string', 'description': 'ID of the tag to apply'}, 'conversation_id': {'type': 'string', 'description': 'ID of the conversation'}}}}, {'name': 'remove_tag', 'description': 'Remove a tag from a conversation', 'inputSchema': {'type': 'object', 'required': ['conversation_id', 'tag_id'], 'properties': {'tag_id': {'type': 'string', 'description': 'ID of the tag to remove'}, 'conversation_id': {'type': 'string', 'description': 'ID of the conversation'}}}}] |
flightradar24-mcp-server | Flightradar24 Server | Track flights in real-time using Flightradar24 data. Perfect for aviation enthusiasts or travel planners. | 2024-12-18T06:26:01.925Z | 0 | https://smithery.ai/server/flightradar24-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'get_flight_positions', 'description': 'Get real-time flight positions with various filtering options', 'inputSchema': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of results'}, 'bounds': {'type': 'string', 'description': 'Geographical bounds (lat1,lon1,lat2,lon2)'}, 'airports': {'type': 'string', 'description': 'Comma-separated list of airport ICAO codes'}, 'categories': {'type': 'string', 'description': 'Aircraft categories (P,C,J)'}}}}, {'name': 'get_flight_eta', 'description': 'Get estimated arrival time for a specific flight', 'inputSchema': {'type': 'object', 'required': ['flightNumber'], 'properties': {'flightNumber': {'type': 'string', 'pattern': '^[A-Z0-9]{2,8}$', 'description': 'Flight number (e.g., UA123)'}}}}] |
@kmexnx/excel-to-pdf-mcp | Excel to PDF Converter | Convert your Excel and Apple Numbers files to PDF format seamlessly. Integrate with AI assistants to enable file conversion directly through conversation, making document sharing effortless. Enjoy secure file handling and easy installation to enhance your productivity. | 2025-04-08T05:00:35.120Z | 0 | https://smithery.ai/server/@kmexnx/excel-to-pdf-mcp | true | null | {
"scanPassed": true
} | [{'name': 'convert_excel_to_pdf', 'description': 'Converts Excel files (.xls, .xlsx) to PDF format', 'inputSchema': {'type': 'object', 'required': ['input_path'], 'properties': {'input_path': {'type': 'string', 'minLength': 1, 'description': 'Relative path to the Excel file (.xls, .xlsx) to convert'}, 'output_format': {'enum': ['pdf'], 'type': 'string', 'default': 'pdf', 'description': 'Output format (currently only PDF is supported)'}}, 'additionalProperties': False}}, {'name': 'convert_numbers_to_pdf', 'description': 'Converts Apple Numbers files (.numbers) to PDF format', 'inputSchema': {'type': 'object', 'required': ['input_path'], 'properties': {'input_path': {'type': 'string', 'minLength': 1, 'description': 'Relative path to the Numbers file (.numbers) to convert'}, 'output_format': {'enum': ['pdf'], 'type': 'string', 'default': 'pdf', 'description': 'Output format (currently only PDF is supported)'}}, 'additionalProperties': False}}] |
@codefriar/sf-mcp | Salesforce CLI MCP Server | Leverage Salesforce CLI commands seamlessly in your AI workflows. Execute commands, view help information, and manage Salesforce projects directly from LLM tools. Enhance your productivity by integrating Salesforce capabilities into your applications. | 2025-04-10T20:00:59.629Z | 0 | https://smithery.ai/server/@codefriar/sf-mcp | true | null | {
"scanPassed": true
} | [{'name': 'sf_cache_clear', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'sf_cache_refresh', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'sf_detect_project_directory', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'sf_set_project_directory', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['directory'], 'properties': {'name': {'type': 'string', 'description': 'Optional name for this project root'}, 'directory': {'type': 'string', 'description': 'The absolute path to a directory containing an sfdx-project.json file'}, 'isDefault': {'type': 'boolean', 'description': 'Set this root as the default for command execution'}, 'description': {'type': 'string', 'description': 'Optional description for this project root'}}, 'additionalProperties': False}}, {'name': 'sf_list_roots', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}] |
@klara-research/MCP-Analyzer | Log Reader | Analyze and debug your Model Context Protocol logs effortlessly. Filter, paginate, and retrieve log entries from standard locations across all platforms to troubleshoot integrations and understand tool interactions. Seamlessly integrate with Claude Desktop for direct log access. | 2025-04-01T23:01:26.338Z | 0 | https://smithery.ai/server/@klara-research/MCP-Analyzer | true | null | {
"scanPassed": true
} | [{'name': 'read_mcp_logs', 'description': 'Read MCP logs from the standard location', 'inputSchema': {'type': 'object', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination (default: 1)'}, 'lines': {'type': 'number', 'description': 'Number of lines to read from the end of each log file (default: 100)'}, 'filter': {'type': 'string', 'description': 'Optional text to filter log entries by (case-insensitive)'}, 'fileLimit': {'type': 'number', 'description': 'Maximum number of files to read per page (default: 5)'}, 'customPath': {'type': 'string', 'description': 'Optional custom path to log directory (default is system-specific)'}}}}] |
@explorium-ai/mcp-explorium | Explorium API | Interact seamlessly with the Explorium API to enhance your data capabilities. Leverage powerful tools and resources to streamline your data workflows and gain insights effortlessly. Start integrating with the Explorium API today to unlock new possibilities for your applications. | 2025-03-10T14:00:21.774Z | 0 | https://smithery.ai/server/@explorium-ai/mcp-explorium | true | null | null | [{'name': 'match_businesses', 'description': '\n Get the Explorium business IDs from business name and/or domain in bulk.\n Use this when:\n - Need company size/revenue/industry\n - Analyzing overall business metrics\n - Researching company background\n - Looking for specific employees (use fetch_prospects next)\n\n Do NOT use when:\n - Looking for specific employees\n - Getting executive contact info\n - Finding team member details\n - You already called fetch_businesses - the response already contains business IDs\n ', 'inputSchema': {'type': 'object', '$defs': {'MatchBusinessInput': {'type': 'object', 'title': 'MatchBusinessInput', 'required': ['name', 'domain'], 'properties': {'name': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Name'}, 'domain': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Domain'}}, 'description': 'Input for matching businesses. Use multiple identifiers for higher match accuracy.'}}, 'title': 'match_businessesArguments', 'required': ['businesses_to_match'], 'properties': {'businesses_to_match': {'type': 'array', 'items': {'$ref': '#/$defs/MatchBusinessInput'}, 'title': 'Businesses To Match', 'maxItems': 50, 'minItems': 1}}}}, {'name': 'fetch_businesses', 'description': "\n Fetch businesses from the Explorium API filtered by various criteria.\n You MUST call the autocomplete tool to get the list of possible values for\n filters specified in the autocomplete tool's description.\n\n Do NOT use this tool first if you do not have a list of available values for\n mandatory filters specified in the autocomplete tool's description.\n\n This tool returns Business IDs, which can be used to fetch more information.\n Do NOT call match_businesses afterwards.\n\n If a requested filter is not supported by the Explorium API, stop the\n execution and notify the user.\n\n If you are looking for employees at a company, use fetch_prospects next.\n ", 'inputSchema': {'type': 'object', '$defs': {'CompanyAge': {'enum': ['0-3', '4-10', '11-20', '20+'], 'type': 'string', 'title': 'CompanyAge', 'description': 'All available company age ranges in years:\nAGE_0_3: 0-3 years\nAGE_4_10: 4-10 years\nAGE_11_20: 11-20 years\nAGE_20_PLUS: 20+ years'}, 'CompanySize': {'enum': ['1-10', '11-50', '51-200', '201-500', '501-1000', '1001-5000', '5001-10000', '10001+'], 'type': 'string', 'title': 'CompanySize', 'description': 'All available company size ranges.\nPossible values:\nSIZE_1_10: 1-10 employees\nSIZE_11_50: 11-50 employees\nSIZE_51_200: 51-200 employees\nSIZE_201_500: 201-500 employees\nSIZE_501_1000: 501-1000 employees\nSIZE_1001_5000: 1001-5000 employees\nSIZE_5001_10000: 5001-10000 employees\nSIZE_10001_PLUS: 10001+ employees'}, 'CompanyRevenue': {'enum': ['0-500K', '500k-1M', '1M-5M', '5M-10M', '10M-25M', '25M-75M', '75M-200M', '200M-500M', '500M-1B', '1B-10B', '10B-100B', '100B-1T', '1T-10T', '10T+'], 'type': 'string', 'title': 'CompanyRevenue', 'description': 'All available revenue ranges in annual $:\nREV_0_500K: $0-500K yearly revenue\nREV_500K_1M: $500k-1M yearly revenue\nREV_1M_5M: $1M-5M yearly revenue\nREV_5M_10M: $5M-10M yearly revenue\nREV_10M_25M: $10M-25M yearly revenue\nREV_25M_75M: $25M-75M yearly revenue\nREV_75M_200M: $75M-200M yearly revenue\nREV_200M_500M: $200M-500M yearly revenue\nREV_500M_1B: $500M-1B yearly revenue\nREV_1B_10B: $1B-10B yearly revenue\nREV_10B_100B: $10B-100B yearly revenue\nREV_100B_1T: $100B-1T yearly revenue\nREV_1T_10T: $1T-10T yearly revenue\nREV_10T_PLUS: $10T+ yearly revenue'}, 'FetchBusinessesFilters': {'type': 'object', 'title': 'FetchBusinessesFilters', 'properties': {'company_age': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/CompanyAge'}}, {'type': 'null'}], 'title': 'Company Age', 'default': None, 'description': 'Filters accounts by the age of the company in years.'}, 'company_size': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/CompanySize'}}, {'type': 'null'}], 'title': 'Company Size', 'default': None, 'description': 'Filters accounts based on the number of employees.'}, 'country_code': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Country Code', 'default': None, 'description': 'A list of lowercase two-letter ISO country codes.'}, 'naics_category': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Naics Category', 'default': None, 'description': 'Filters accounts by the North American Industry Classification System categories. Example: ["23", "5611"]'}, 'company_revenue': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/CompanyRevenue'}}, {'type': 'null'}], 'title': 'Company Revenue', 'default': None, 'description': 'Filters accounts based on the annual revenue.'}, 'google_category': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Google Category', 'default': None, 'description': 'Filters accounts by categories as classified in Google.'}, 'linkedin_category': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Linkedin Category', 'default': None, 'description': 'Filters accounts by categories as used in LinkedIn.'}, 'region_country_code': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Region Country Code', 'default': None, 'description': "A list of lowercase region-country codes in the format 'REGION-CC' where CC is the two-letter ISO country code."}}, 'description': 'Business search filters.\nBefore calling a tool that uses this filter, call the autocomplete tool to get the list of available values,\nespecially when using linkedin_category, google_category, naics_category, and region_country_code.\nOnly one category can be present at a time (google_category, naics_category, or linkedin_category).'}}, 'title': 'fetch_businessesArguments', 'required': ['filters'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1, 'description': 'The page number to return'}, 'size': {'type': 'integer', 'title': 'Size', 'default': 1000, 'maximum': 1000, 'description': 'The number of businesses to return'}, 'filters': {'$ref': '#/$defs/FetchBusinessesFilters'}, 'page_size': {'type': 'integer', 'title': 'Page Size', 'default': 100, 'maximum': 100, 'description': 'The number of businesses to return per page'}}}}, {'name': 'autocomplete', 'description': "\n Autocomplete values for various business fields based on a query string.\n You MUST call this tool before using any of the following filters:\n - linkedin_category\n - google_category\n - naics_category\n - region_country_code\n\n Prefer to use linkedin_category over google_category.\n\n Do NOT use this tool if you already have a list of available values\n for emum fields, such as:\n - company_size\n - company_age\n - company_revenue\n\n Hints:\n - When looking for 'saas' in categories, use 'software'\n - Use 'country' to get the country code\n ", 'inputSchema': {'type': 'object', 'title': 'autocompleteArguments', 'required': ['field', 'query'], 'properties': {'field': {'enum': ['country', 'region_country_code', 'google_category', 'naics_category', 'linkedin_category', 'company_tech_stack_tech', 'job_title', 'company_size', 'company_revenue', 'company_age', 'job_department', 'job_level'], 'type': 'string', 'title': 'Field'}, 'query': {'anyOf': [{'type': 'string'}, {'type': 'integer'}], 'title': 'Query', 'description': 'The query to autocomplete'}}}}, {'name': 'fetch_businesses_events', 'description': "\n Retrieves business-related events from the Explorium API in bulk.\n If you're looking for events related to role changes, you should use the\n prospects events tool instead.\n\n This is a VERY useful tool for researching a company's events and history.\n ", 'inputSchema': {'type': 'object', '$defs': {'BusinessEventType': {'enum': ['ipo_announcement', 'new_funding_round', 'new_investment', 'new_product', 'new_office', 'closing_office', 'new_partnership', 'increase_in_engineering_department', 'increase_in_sales_department', 'increase_in_marketing_department', 'increase_in_operations_department', 'increase_in_customer_service_department', 'increase_in_all_departments', 'decrease_in_engineering_department', 'decrease_in_sales_department', 'decrease_in_marketing_department', 'decrease_in_operations_department', 'decrease_in_customer_service_department', 'decrease_in_all_departments', 'employee_joined_company', 'hiring_in_creative_department', 'hiring_in_education_department', 'hiring_in_engineering_department', 'hiring_in_finance_department', 'hiring_in_health_department', 'hiring_in_human_resources_department', 'hiring_in_legal_department', 'hiring_in_marketing_department', 'hiring_in_operations_department', 'hiring_in_professional_service_department', 'hiring_in_sales_department', 'hiring_in_support_department', 'hiring_in_trade_department', 'hiring_in_unknown_department'], 'type': 'string', 'title': 'BusinessEventType', 'description': "Valid event types for the Explorium Business Events API.\n\nIPO_ANNOUNCEMENT: Company announces plans to go public through an initial public offering\n- link: str - Link to article\n- ipo_date: datetime - Date of IPO\n- event_id: str - News event ID\n- company_name: str - Company name\n- offer_amount: float - Company valuation\n- number_of_shares: int - Number of issued shares\n- stock_exchange: str - IPO stock exchange\n- event_time: datetime - News event timestamp\n- price_per_share: float - Price per share\n- ticker: str - Ticker\n\nNEW_FUNDING_ROUND: Company secures a new round of investment funding\n- founding_date: datetime - Date of funding round\n- amount_raised: float - Amount raised in funding\n- link: str - Link to article\n- founding_stage: str - Funding round stage\n- event_id: str - News event ID\n- event_time: datetime - News event timestamp\n- investors: str - Investors in funding round\n- lead_investor: str - Lead investor\n\nNEW_INVESTMENT: Company makes an investment in another business or venture\n- investment_date: datetime - News event timestamp\n- investment_type: str - Type of investment\n- event_time: datetime - News report publishing date\n- event_id: str - News event ID\n- investment_target: str - Target of investment\n- link: str - Link to article\n- investment_amount: float - Amount of investment\n\nNEW_PRODUCT: Company launches a new product or service\n- event_time: datetime - News event timestamp\n- event_id: str - News event ID\n- link: str - Link to article\n- product_name: str - Name of new product\n- product_description: str - Description of new product\n- product_category: str - Category of new product\n- product_launch_date: datetime - Launch date of new product\n\nNEW_OFFICE: Company opens a new office location\n- purpose_of_new_office: str - Purpose of new office\n- link: str - Link to article\n- opening_date: datetime - Date of office opening\n- event_id: str - News event ID\n- office_location: str - Location of new office\n- event_time: datetime - News report publishing date\n- number_of_employees: int - Number of employees at new office\n\nCLOSING_OFFICE: Company closes an existing office location\n- reason_for_closure: str - Reason for office closing\n- event_time: datetime - News report publishing date\n- office_location: str - Location of closing office\n- closure_date: datetime - Date of office closing\n- event_id: str - News event ID\n- number_of_employees_affected: int - Number of employees impacted\n- link: str - Link to article\n\nNEW_PARTNERSHIP: Company forms a strategic partnership with another organization\n- link: str - Link to article\n- partner_company: str - Name of partnering company\n- partnership_date: datetime - Date of partnership\n- event_time: datetime - News report publishing date\n- purpose_of_partnership: str - Partnership purpose\n- event_id: str - News event ID\n\nDEPARTMENT_INCREASE_*: Company announces an increase in a specific department\nDEPARTMENT_DECREASE_*: Company announces a decrease in a specific department\nPossible input departments: ENGINEERING, SALES, MARKETING, OPERATIONS, CUSTOMER_SERVICE, ALL\n- department_change: float - Quarterly change in department headcount\n- event_time: datetime - Department event timestamp\n- event_id: str - Department event ID\n- quarter_partition: str - Quarter when change occurred\n- insertion_time: str - Event collection timestamp\n- department: str - Name of department\n- change_type: str - Type of department change\n\nDEPARTMENT_HIRING_*: Company announces a hiring initiative in a specific department\nPossible input departments: CREATIVE, EDUCATION, ENGINEERING, FINANCE, HEALTH, HR, LEGAL, MARKETING, OPERATIONS, PROFESSIONAL, SALES, SUPPORT, TRADE, UNKNOWN\n- location: str - Location of hiring initiative\n- event_id: str - Company hiring event ID\n- event_time: datetime - When role was published\n- job_count: int - Number of open positions\n- job_titles: str - Job titles being hired for\n- department: str - Department hiring is occurring in\n\nEMPLOYEE_JOINED: Employee is hired by an organization\n- job_department: str - Employee's current job department\n- full_name: str - Employee's full name\n- job_role_title: str - Employee's current job title\n- event_id: str - Employee's event ID\n- linkedin_url: str - Employee's LinkedIn URL"}}, 'title': 'fetch_businesses_eventsArguments', 'required': ['business_ids', 'event_types', 'timestamp_from'], 'properties': {'event_types': {'type': 'array', 'items': {'$ref': '#/$defs/BusinessEventType'}, 'title': 'Event Types', 'description': 'List of event types to fetch'}, 'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 20, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}, 'timestamp_from': {'type': 'string', 'title': 'Timestamp From', 'description': 'ISO 8601 timestamp'}}}}, {'name': 'fetch_businesses_statistics', 'description': '\n Fetch aggregated insights into businesses by industry, revenue, employee count, and geographic distribution.\n ', 'inputSchema': {'type': 'object', '$defs': {'CompanyAge': {'enum': ['0-3', '4-10', '11-20', '20+'], 'type': 'string', 'title': 'CompanyAge', 'description': 'All available company age ranges in years:\nAGE_0_3: 0-3 years\nAGE_4_10: 4-10 years\nAGE_11_20: 11-20 years\nAGE_20_PLUS: 20+ years'}, 'CompanySize': {'enum': ['1-10', '11-50', '51-200', '201-500', '501-1000', '1001-5000', '5001-10000', '10001+'], 'type': 'string', 'title': 'CompanySize', 'description': 'All available company size ranges.\nPossible values:\nSIZE_1_10: 1-10 employees\nSIZE_11_50: 11-50 employees\nSIZE_51_200: 51-200 employees\nSIZE_201_500: 201-500 employees\nSIZE_501_1000: 501-1000 employees\nSIZE_1001_5000: 1001-5000 employees\nSIZE_5001_10000: 5001-10000 employees\nSIZE_10001_PLUS: 10001+ employees'}, 'CompanyRevenue': {'enum': ['0-500K', '500k-1M', '1M-5M', '5M-10M', '10M-25M', '25M-75M', '75M-200M', '200M-500M', '500M-1B', '1B-10B', '10B-100B', '100B-1T', '1T-10T', '10T+'], 'type': 'string', 'title': 'CompanyRevenue', 'description': 'All available revenue ranges in annual $:\nREV_0_500K: $0-500K yearly revenue\nREV_500K_1M: $500k-1M yearly revenue\nREV_1M_5M: $1M-5M yearly revenue\nREV_5M_10M: $5M-10M yearly revenue\nREV_10M_25M: $10M-25M yearly revenue\nREV_25M_75M: $25M-75M yearly revenue\nREV_75M_200M: $75M-200M yearly revenue\nREV_200M_500M: $200M-500M yearly revenue\nREV_500M_1B: $500M-1B yearly revenue\nREV_1B_10B: $1B-10B yearly revenue\nREV_10B_100B: $10B-100B yearly revenue\nREV_100B_1T: $100B-1T yearly revenue\nREV_1T_10T: $1T-10T yearly revenue\nREV_10T_PLUS: $10T+ yearly revenue'}, 'FetchBusinessesFilters': {'type': 'object', 'title': 'FetchBusinessesFilters', 'properties': {'company_age': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/CompanyAge'}}, {'type': 'null'}], 'title': 'Company Age', 'default': None, 'description': 'Filters accounts by the age of the company in years.'}, 'company_size': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/CompanySize'}}, {'type': 'null'}], 'title': 'Company Size', 'default': None, 'description': 'Filters accounts based on the number of employees.'}, 'country_code': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Country Code', 'default': None, 'description': 'A list of lowercase two-letter ISO country codes.'}, 'naics_category': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Naics Category', 'default': None, 'description': 'Filters accounts by the North American Industry Classification System categories. Example: ["23", "5611"]'}, 'company_revenue': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/CompanyRevenue'}}, {'type': 'null'}], 'title': 'Company Revenue', 'default': None, 'description': 'Filters accounts based on the annual revenue.'}, 'google_category': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Google Category', 'default': None, 'description': 'Filters accounts by categories as classified in Google.'}, 'linkedin_category': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Linkedin Category', 'default': None, 'description': 'Filters accounts by categories as used in LinkedIn.'}, 'region_country_code': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Region Country Code', 'default': None, 'description': "A list of lowercase region-country codes in the format 'REGION-CC' where CC is the two-letter ISO country code."}}, 'description': 'Business search filters.\nBefore calling a tool that uses this filter, call the autocomplete tool to get the list of available values,\nespecially when using linkedin_category, google_category, naics_category, and region_country_code.\nOnly one category can be present at a time (google_category, naics_category, or linkedin_category).'}}, 'title': 'fetch_businesses_statisticsArguments', 'required': ['filters'], 'properties': {'filters': {'$ref': '#/$defs/FetchBusinessesFilters'}}}}, {'name': 'enrich_businesses_firmographics', 'description': '\n Get firmographics data in bulk.\n Returns:\n - Business ID and name\n - Detailed business description\n - Website URL\n - Geographic information (country, region)\n - Industry classification (NAICS code and description)\n - SIC code and description\n - Stock ticker symbol (for public companies)\n - Company size (number of employees range)\n - Annual revenue range\n - LinkedIn industry category and profile URL\n\n Do NOT use when:\n - You need to find a specific employee at a company\n - Looking for leadership info of a company\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_firmographicsArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_technographics', 'description': '\n Get technographics data in bulk.\n Returns:\n - Full technology stack used by the business\n - Nested technology stack categorized by function (e.g., Sales, Marketing, DevOps)\n - Detailed breakdown by categories including:\n - Testing and QA tools\n - Sales software\n - Programming languages and frameworks\n - Productivity and operations tools\n - Product and design software\n - Platform and storage solutions\n - Operations software\n - Operations management tools\n - Marketing technologies\n - IT security solutions\n - IT management systems\n - HR software\n - Health tech applications\n - Finance and accounting tools\n - E-commerce platforms\n - DevOps and development tools\n - Customer management systems\n - Computer networks\n - Communications tools\n - Collaboration platforms\n - Business intelligence and analytics\n\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_technographicsArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_company_ratings', 'description': '\n Get internal company ratings in bulk.\n Returns:\n - Employee satisfaction ratings across multiple categories\n - Company culture and work-life balance assessments\n - Management and leadership quality ratings\n - Career growth and advancement opportunities metrics\n - Interview experience feedback from candidates\n - Overall company reputation scores from current and former employees\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_company_ratingsArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_financial_metrics', 'description': '\n Get financial metrics for public companies in bulk.\n You may also use this tool when looking for leadership information (CEO, CTO, CFO, etc.)\n\n Returns:\n - Financial metrics including EBITDA, revenue, and cost of goods sold (COGS)\n - Profitability indicators like ROA (Return on Assets) and ROC (Return on Capital)\n - Asset turnover and working capital figures\n - Price-to-earnings ratio and enterprise value metrics\n - Executive leadership details including names, titles, and compensation\n - Earnings surprises with actual vs. estimated results\n - Peer companies for competitive analysis\n - Total shareholder return (TSR) metrics for various time periods\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_financial_metricsArguments', 'required': ['business_ids'], 'properties': {'date': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Date', 'default': None, 'description': 'Optional ISO 8601 timestamp for financial metrics'}, 'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_funding_and_acquisitions', 'description': '\n Get businesses funding and acquisition history in bulk.\n Returns:\n - Detailed funding history including dates, amounts, and round types\n - IPO information including date and size\n - List of investors and lead investors for each funding round\n - Total known funding value\n - Current board members and advisors\n - Acquisition information (if applicable)\n - First and latest funding round details\n - Number of funding rounds and investors\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_funding_and_acquisitionsArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_challenges', 'description': '\n Get insights on the challenges, breaches, and competition of public companies.\n Returns:\n - Technological disruption challenges identified in SEC filings\n - Data security breaches and cybersecurity vulnerabilities\n - Market saturation concerns and competitive pressures\n - Data security and privacy regulatory compliance issues\n - Competitive landscape and market position challenges\n - Customer adoption risks and third-party dependencies\n - Links to official SEC filings and documents\n - Company identifiers including ticker symbols and CIK numbers\n - Filing dates and form types for regulatory submissions\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_challengesArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_competitive_landscape', 'description': '\n Get insights on the market landscape of public companies.\n Returns:\n - Competitive differentiation strategies from SEC filings\n - Key competitors identified in public disclosures\n - Company ticker symbols and CIK identifiers\n - Links to official SEC filings and documents\n - Filing dates and form types for regulatory submissions\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_competitive_landscapeArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_strategic_insights', 'description': '\n Get strategic insights for public companies.\n Returns:\n - Strategic focus areas and company value propositions from SEC filings\n - Target market segments and customer demographics\n - Product development roadmaps and innovation initiatives\n - Marketing and sales strategies from public disclosures\n - Strategic partnerships and acquisition information\n - Company identifiers including ticker symbols and CIK numbers\n - Links to official SEC filings and documents\n - Filing dates and form types for regulatory submissions\n\n Do NOT use this when you need to find employees at a company.\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_strategic_insightsArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_workforce_trends', 'description': '\n Get workforce trends and department composition for companies.\n Returns:\n - Percentage breakdown of employees across different departments (engineering, sales, marketing, etc.)\n - Changes in department composition compared to previous quarter\n - Total employee profiles found per quarter\n - Quarterly timestamp information for trend analysis\n - Insights into company structure and hiring priorities\n - Department growth or reduction indicators\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_workforce_trendsArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_linkedin_posts', 'description': '\n Get LinkedIn posts for public companies.\n Returns:\n - Post text content from company LinkedIn posts\n - Post URLs for direct access to original content\n - Engagement metrics including number of likes and comments\n - Publication dates and time since posting\n - Company display names when available\n - Historical social media content for trend analysis\n - Marketing messaging and brand voice examples\n - Product announcements and company updates\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_linkedin_postsArguments', 'required': ['business_ids'], 'properties': {'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_website_changes', 'description': '\n Get website changes for public companies.\n Returns:\n - Website content changes with before and after text comparisons\n - Strategic implications of content modifications\n - Dates when changes were detected\n - Changes in featured products, services, or content\n - Shifts in marketing messaging or positioning\n - Updates to promotional content and featured items\n - Changes in top charts or featured content listings\n - Insights into business strategy and market focus\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_website_changesArguments', 'required': ['business_ids'], 'properties': {'keywords': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Keywords', 'default': None, 'description': 'List of keywords to search for in website changes'}, 'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'enrich_businesses_website_keywords', 'description': '\n Get website keywords for public companies.\n For each keyword, input multiple search terms separated by commas (","), which simulates a logical "AND" operation.\n Returns:\n - Website URL\n - Keywords indicator showing if keywords were found\n - Text results containing:\n - Position/rank of the result\n - Text snippet showing keyword matches\n - URL where the keyword was found\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_businesses_website_keywordsArguments', 'required': ['business_ids'], 'properties': {'keywords': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Keywords', 'default': None, 'description': 'List of keywords to search for in website keywords'}, 'business_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Business Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of Explorium business IDs from match_businesses'}}}}, {'name': 'match_prospects', 'description': "\n Get the Explorium prospect ID from a prospect's email, full name, and company.\n At least email OR (full name AND company) must be provided.\n You MUST use this tool if the input is about someone working at a specific company.\n\n Use this when:\n - Need prospect enrichment tools\n - Getting contact information\n - Analyzing an individual's social media presence\n - Gathering information on a person's professional profile and workplace\n\n Do NOT use for:\n - Finding leadership information (CEO, CTO, CFO, etc.)\n - Looking for employees at a company\n ", 'inputSchema': {'type': 'object', '$defs': {'ProspectMatchInput': {'type': 'object', 'title': 'ProspectMatchInput', 'properties': {'email': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Email', 'default': None, 'description': "The prospect's email address."}, 'linkedin': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Linkedin', 'default': None, 'description': 'Linkedin url.'}, 'full_name': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Full Name', 'default': None, 'description': "The prospect's full name (can only be used together with company_name)."}, 'business_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Business Id', 'default': None, 'description': 'Filters the prospect to match the given business id.'}, 'company_name': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Company Name', 'default': None, 'description': "The prospect's company name (can only be used together with full_name)."}, 'phone_number': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Phone Number', 'default': None, 'description': "The prospect's phone number."}}, 'description': 'Prospect match identifiers.'}}, 'title': 'match_prospectsArguments', 'required': ['prospects_to_match'], 'properties': {'prospects_to_match': {'type': 'array', 'items': {'$ref': '#/$defs/ProspectMatchInput'}, 'title': 'Prospects To Match', 'maxItems': 40, 'minItems': 1}}}}, {'name': 'fetch_prospects', 'description': '\n Get a list of prospects according to filters such as job level, department, or other professional attributes.\n For leadership information, consider using enrich_businesses_financial_metrics first.\n\n Use this tool to find prospects/employees at a specific company.\n ', 'inputSchema': {'type': 'object', '$defs': {'JobLevel': {'enum': ['director', 'manager', 'vp', 'partner', 'cxo', 'non-managerial', 'senior', 'entry', 'training', 'unpaid'], 'type': 'string', 'title': 'JobLevel', 'description': 'All available job levels.'}, 'JobDepartment': {'enum': ['customer service', 'design', 'education', 'engineering', 'finance', 'general', 'health', 'human resources', 'legal', 'marketing', 'media', 'operations', 'public relations', 'real estate', 'sales', 'trades', 'unknown'], 'type': 'string', 'title': 'JobDepartment', 'description': 'All available job departments.'}, 'FetchProspectsFilters': {'type': 'object', 'title': 'FetchProspectsFilters', 'properties': {'has_email': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Has Email', 'default': False, 'description': 'Filters for only prospects that have an email.'}, 'job_level': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/JobLevel'}}, {'type': 'null'}], 'title': 'Job Level', 'default': None, 'description': 'Filter for prospects by their job level.'}, 'business_id': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Business Id', 'default': None, 'description': 'Filters for prospects working at a specific business, by their Explorium Business ID.'}, 'job_department': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/JobDepartment'}}, {'type': 'null'}], 'title': 'Job Department', 'default': None, 'description': 'Filter for prospects by their job department.'}, 'has_phone_number': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Has Phone Number', 'default': None, 'description': 'Filters for only prospects that have a phone number.'}}, 'description': 'Prospect search filters.'}}, 'title': 'fetch_prospectsArguments', 'required': ['filters'], 'properties': {'page': {'type': 'integer', 'title': 'Page', 'default': 1, 'description': 'The page number to return'}, 'size': {'type': 'integer', 'title': 'Size', 'default': 1000, 'maximum': 1000, 'description': 'The number of prospects to return'}, 'filters': {'$ref': '#/$defs/FetchProspectsFilters'}, 'page_size': {'type': 'integer', 'title': 'Page Size', 'default': 100, 'maximum': 100, 'description': 'The number of prospects to return per page - recommended: 100'}}}}, {'name': 'fetch_prospects_events', 'description': '\n Retrieves prospect-related events from the Explorium API in bulk.\n Use this when querying for prospect-related events about businesses:\n Example workflow:\n Fetch businesses > Fetch prospects > Fetch prospects events\n ', 'inputSchema': {'type': 'object', '$defs': {'ProspectEventType': {'enum': ['prospect_changed_role', 'prospect_changed_company', 'prospect_job_start_anniversary'], 'type': 'string', 'title': 'ProspectEventType', 'description': "Valid event types for the Explorium Prospects Events API.\n\nJOB_TITLE_CHANGE: Individual transitioned to a new job title within their current company\n- previous_job_title: str - Employee's previous job title\n- event_time: datetime - Employee left previous role timestamp\n- current_job_title: str - Employee's current job title\n- current_company_name: str - Employee's current workplace\n- current_company_id: str - Current workplace entity ID\n- event_id: str - Job change event ID\n\nCOMPANY_CHANGE: Individual transitioned to a new company\n- previous_company_name: str - Employee's previous workplace name\n- previous_company_id: str - Previous workplace entity ID\n- previous_job_title: str - Employee's previous job title\n- event_time: datetime - Employee left previous company timestamp\n- current_company_name: str - Employee's current workplace name\n- current_company_id: str - Current workplace entity ID\n- current_job_title: str - Employee's current job title\n- event_id: str - Company change event ID\n\nWORKPLACE_ANNIVERSARY: Individual reached an annual milestone at their current company.\n- full_name: str - Employee's full name\n- event_id: str - Employee event ID\n- company_name: str - Workplace company name\n- years_at_company: int - Number of years at company\n- job_title: str - Employee's job title\n- job_anniversary_date: datetime - Employee event timestamp\n- event_time: datetime - Workplace anniversary date\n- linkedin_url: str - Employee LinkedIn URL"}}, 'title': 'fetch_prospects_eventsArguments', 'required': ['prospect_ids', 'event_types', 'timestamp_from'], 'properties': {'event_types': {'type': 'array', 'items': {'$ref': '#/$defs/ProspectEventType'}, 'title': 'Event Types', 'description': 'List of event types to fetch'}, 'prospect_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Prospect Ids', 'maxItems': 20, 'minItems': 1, 'description': 'List of up to 50 Explorium prospect IDs from match_prospects'}, 'timestamp_from': {'type': 'string', 'title': 'Timestamp From', 'description': 'ISO 8601 timestamp'}}}}, {'name': 'enrich_prospects_contacts_information', 'description': '\n Enrich prospect contact information with additional details.\n Returns:\n - Professional and personal email addresses\n - Email type (professional/personal)\n - Phone numbers\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_prospects_contacts_informationArguments', 'required': ['prospect_ids'], 'properties': {'prospect_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Prospect Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of up to 50 Explorium prospect IDs from match_prospects'}}}}, {'name': 'enrich_prospects_linkedin_posts', 'description': '\n Enrich prospect LinkedIn posts with additional details.\n Returns:\n - Post text content\n - Post engagement metrics (likes, comments)\n - Post URLs\n - Post creation dates\n - Days since posted\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_prospects_linkedin_postsArguments', 'required': ['prospect_ids'], 'properties': {'prospect_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Prospect Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of up to 50 Explorium prospect IDs from match_prospects'}}}}, {'name': 'enrich_prospects_profiles', 'description': '\n Get detailed profile information for prospects.\n Returns:\n - Full name and demographic details (age group, gender)\n - Location information (country, region, city)\n - LinkedIn profile URL\n - Current role details:\n - Company name and website\n - Job title, department and seniority level\n - Work experience history:\n - Company names and websites\n - Job titles with role classifications\n - Start/end dates\n - Primary role indicator\n - Education background:\n - Schools attended with dates\n - Degrees, majors and minors\n - Skills and interests when available\n ', 'inputSchema': {'type': 'object', 'title': 'enrich_prospects_profilesArguments', 'required': ['prospect_ids'], 'properties': {'prospect_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Prospect Ids', 'maxItems': 50, 'minItems': 1, 'description': 'List of up to 50 Explorium prospect IDs from match_prospects'}}}}] |
@palolxx/new-mcp-gemini-2-5-pro-exp | SorTage Gemini 2.5 Pro Thinking | Leverage advanced analytical thinking capabilities to break down complex problems and generate thoughtful responses. Enhance your problem-solving process with insights, confidence levels, and alternative approaches, all while maintaining session persistence for ongoing analysis. | 2025-03-27T16:53:12.610Z | 0 | https://smithery.ai/server/@palolxx/new-mcp-gemini-2-5-pro-exp | true | null | {
"scanPassed": true
} | [{'name': 'geminithinking', 'description': "A detailed tool for dynamic and reflective problem-solving through Gemini AI.\nThis tool helps analyze problems through a flexible thinking process powered by Google's Gemini model.\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- Leverages Gemini AI for deep analytical thinking\n- Provides meta-commentary on the reasoning process\n- Indicates confidence levels for generated thoughts\n- Suggests alternative approaches when relevant\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- Session persistence: save and resume your analysis sessions\n\nParameters explained:\n- query: The question or problem to be analyzed\n- context: Additional context information (e.g., code snippets, background)\n- approach: Suggested approach to the problem (optional)\n- previousThoughts: Array of previous thoughts for context\n- thought: The current thinking step (if empty, will be generated by Gemini)\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- metaComments: Meta-commentary from Gemini about its reasoning process\n- confidenceLevel: Gemini's confidence in the generated thought (0-1)\n- alternativePaths: Alternative approaches suggested by Gemini\n\nSession commands:\n- sessionCommand: Command to manage sessions ('save', 'load', 'getState')\n- sessionPath: Path to save or load the session file (required for 'save' and 'load' commands)\n\nYou should:\n1. Start with a clear query and any relevant context\n2. Let Gemini generate thoughts by not providing the 'thought' parameter\n3. Review the generated thoughts and meta-commentary\n4. Feel free to revise or branch thoughts as needed\n5. Consider alternative paths suggested by Gemini\n6. Only set next_thought_needed to false when truly done\n7. Use session commands to save your progress and resume later", 'inputSchema': {'type': 'object', 'required': ['query', 'nextThoughtNeeded', 'thoughtNumber', 'totalThoughts'], 'properties': {'query': {'type': 'string', 'description': 'The question or problem to analyze'}, 'context': {'type': 'string', 'description': 'Additional context information'}, 'thought': {'type': 'string', 'description': 'Your current thinking step (if empty, will be generated by Gemini)'}, 'approach': {'type': 'string', 'description': 'Suggested approach to the problem'}, 'branchId': {'type': 'string', 'description': 'Branch identifier'}, 'isRevision': {'type': 'boolean', 'description': 'Whether this revises previous thinking'}, 'sessionPath': {'type': 'string', 'description': 'Path to save or load the session file'}, 'metaComments': {'type': 'string', 'description': 'Meta-commentary about the reasoning process'}, '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'}, 'sessionCommand': {'type': 'string', 'description': "Command to manage sessions ('save', 'load', 'getState')"}, 'confidenceLevel': {'type': 'number', 'maximum': 1, 'minimum': 0, 'description': 'Confidence level in the generated thought (0-1)'}, 'alternativePaths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Alternative approaches suggested'}, 'previousThoughts': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of previous thoughts for context'}, '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'}}}}] |
@jalehman/mcp-sage | Sage | Provide detailed second opinions, code reviews, and implementation plans by leveraging large context models with automatic model selection based on token count. Enable multi-model debates and self-debate workflows to generate high-quality, thoughtful plans and suggestions for complex codebases. Seamlessly integrate file context into prompts for accurate and comprehensive AI assistance. | 2025-05-01T23:00:56.350Z | 0 | https://smithery.ai/server/@jalehman/mcp-sage | true | null | {
"scanPassed": true
} | [{'name': 'sage-opinion', 'description': 'Send a prompt to sage-like model for its opinion on a matter.\n\n Include the paths to all relevant files and/or directories that are pertinent to the matter.\n \n IMPORTANT: All paths must be absolute paths (e.g., /home/user/project/src), not relative paths.\n\n Do not worry about context limits; feel free to include as much as you think is relevant. If you include too much it will error and tell you, and then you can include less. Err on the side of including more context.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['prompt', 'paths'], 'properties': {'paths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Paths to include as context. MUST be absolute paths (e.g., /home/user/project/src). Including directories will include all files contained within recursively.'}, 'prompt': {'type': 'string', 'description': 'The prompt to send to the external model.'}}, 'additionalProperties': False}}, {'name': 'sage-review', 'description': 'Send code to the sage model for expert review and get specific edit suggestions as SEARCH/REPLACE blocks.\n\n Use this tool any time the user asks for a "sage review" or "code review" or "expert review".\n\n This tool includes the full content of all files in the specified paths and instructs the model to return edit suggestions in a specific format with search and replace blocks.\n \n IMPORTANT: All paths must be absolute paths (e.g., /home/user/project/src), not relative paths.\n\n If the user hasn\'t provided specific paths, use as many paths to files or directories as you\'re aware of that are useful in the context of the prompt.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['instruction', 'paths'], 'properties': {'paths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Paths to include as context. MUST be absolute paths (e.g., /home/user/project/src). Including directories will include all files contained within recursively.'}, 'instruction': {'type': 'string', 'description': 'The specific changes or improvements needed.'}}, 'additionalProperties': False}}, {'name': 'sage-plan', 'description': 'Generate an implementation plan via multi-model debate.\n \n This tool leverages multiple AI models to debate, critique, and refine implementation plans.\n \n Models will generate initial plans, critique each other\'s work, refine their plans based on critiques,\n and finally produce a consensus plan that combines the best ideas.\n \n IMPORTANT: All paths must be absolute paths (e.g., /home/user/project/src), not relative paths.\n \n The process creates detailed, well-thought-out implementation plans that benefit from\n diverse model perspectives and iterative refinement.\n \n When the optional outputPath parameter is provided, the final plan will be saved to that file path,\n and a complete transcript of the debate will be saved to a companion file with "-full-transcript"\n added to the filename. This is strongly recommended for preserving the expensive results of the debate.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['prompt', 'paths'], 'properties': {'paths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Paths to include as context. MUST be absolute paths (e.g., /home/user/project/src). Including directories will include all files contained within recursively.'}, 'prompt': {'type': 'string', 'description': 'The task to create an implementation plan for'}, 'rounds': {'type': 'number', 'description': 'Number of debate rounds (default: 3)'}, 'maxTokens': {'type': 'number', 'description': 'Maximum token budget for the debate'}, 'outputPath': {'type': 'string', 'description': "Markdown file path to save the final plan. Will also save a full transcript to a '-full-transcript.md' suffixed file."}}, 'additionalProperties': False}}] |
@juhemcp/jweather-mcp-server | Juhe Weather | Provide real-time weather forecasts for cities and regions across the country. Query local weather conditions effortlessly using a simple command. Enhance your applications with accurate weather data from a reliable source. | 2025-03-21T21:00:52.848Z | 0 | https://smithery.ai/server/@juhemcp/jweather-mcp-server | true | null | null | [{'name': 'query_weather', 'description': '根据城市、地区、区县名称查询当地实时天气预报情况', 'inputSchema': {'type': 'object', 'title': 'query_weatherArguments', 'required': ['city'], 'properties': {'city': {'type': 'string', 'title': 'City', 'description': '查询的城市名称,如北京、上海、广州、深圳、泰顺等;城市或区县或地区名使用简写,严格按照规范填写,否则会导致查询失败'}}}}] |
@esakrissa/mcp-doc | Documentation Server | Integrate your LLM applications with specific documentation sources seamlessly. Access and fetch documentation files to enhance your application's knowledge and response capabilities. | 2025-04-01T07:00:29.210Z | 0 | https://smithery.ai/server/@esakrissa/mcp-doc | true | null | {
"scanPassed": true
} | [{'name': 'list_doc_sources', 'description': 'List all available documentation sources.\n\n This is the first tool you should call in the documentation workflow.\n It provides URLs to documentation files (langgraph.txt or mcp.txt) or local file paths \n that the user has made available.\n\n Returns:\n A string containing a formatted list of documentation sources with their URLs or file paths\n ', 'inputSchema': {'type': 'object', 'title': 'list_doc_sourcesArguments', 'properties': {}}}, {'name': 'fetch_docs', 'description': "Fetch and parse documentation from a given URL or local file.\n\nUse this tool after list_doc_sources to:\n1. First fetch the documentation file (langgraph.txt or mcp.txt) from a source\n2. Analyze the URLs listed in the documentation file\n3. Then fetch specific documentation pages relevant to the user's question\n\nArgs:\n url: The URL to fetch documentation from.\n\nReturns:\n The fetched documentation content converted to markdown, or an error message\n if the request fails or the URL is not from an allowed domain.", 'inputSchema': {'type': 'object', 'title': 'fetch_docsArguments', 'required': ['url'], 'properties': {'url': {'type': 'string', 'title': 'Url'}}}}] |
@taweili/mcp-rss-md | RSS Markdown Generator | Generate Markdown content from RSS feeds effortlessly. Transform your RSS data into well-structured Markdown documents for easy sharing and publishing. | 2025-03-20T03:42:07.080Z | 0 | https://smithery.ai/server/@taweili/mcp-rss-md | true | null | {
"scanPassed": true
} | [{'name': 'rss_to_md', 'description': 'Convert RSS feed to Markdown format', 'inputSchema': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string', 'format': 'uri', 'description': 'RSS feed URL'}}}}] |
@hongsw/aligo-sms-mcp-server | Aligo SMS API Integration Server | Access the Aligo SMS API seamlessly with this server. Send SMS messages and retrieve related information using compatible AI agents like Claude AI. Simplify your communication tasks with easy integration and setup. | 2025-03-31T21:00:27.251Z | 0 | https://smithery.ai/server/@hongsw/aligo-sms-mcp-server | true | null | null | [{'name': 'send-sms', 'description': 'Send SMS messages through the Aligo API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sender', 'receiver', 'message'], 'properties': {'title': {'type': 'string', 'maxLength': 44, 'description': 'Message title (required for LMS/MMS)'}, 'sender': {'type': 'string', 'maxLength': 16, 'minLength': 1, 'description': "Sender's phone number (registered with Aligo)"}, 'message': {'type': 'string', 'maxLength': 2000, 'minLength': 1, 'description': 'SMS message content'}, 'msg_type': {'enum': ['SMS', 'LMS', 'MMS'], 'type': 'string', 'description': 'Message type: SMS, LMS, or MMS'}, 'receiver': {'type': 'string', 'minLength': 1, 'description': "Recipient's phone number, or comma-separated list for multiple recipients"}, 'image_path': {'type': 'string', 'description': 'Optional image file path for MMS'}, 'destination': {'type': 'string', 'description': 'Optional formatted destination with names (01011112222|홍길동,01033334444|아무개)'}, 'schedule_date': {'type': 'string', 'pattern': '^\\d{8}$', 'description': 'Optional schedule date (YYYYMMDD)'}, 'schedule_time': {'type': 'string', 'pattern': '^\\d{4}$', 'description': 'Optional schedule time (HHMM)'}}, 'additionalProperties': False}}] |
@hongsw/aligo-sms-mcp-server | Aligo SMS API Integration Server | Access the Aligo SMS API seamlessly with this server. Send SMS messages and retrieve related information using compatible AI agents like Claude AI. Simplify your communication tasks with easy integration and setup. | 2025-03-31T21:00:27.251Z | 0 | https://smithery.ai/server/@hongsw/aligo-sms-mcp-server | true | null | null | [{'name': 'send-sms', 'description': 'Send SMS messages through the Aligo API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sender', 'receiver', 'message'], 'properties': {'title': {'type': 'string', 'maxLength': 44, 'description': 'Message title (required for LMS/MMS)'}, 'sender': {'type': 'string', 'maxLength': 16, 'minLength': 1, 'description': "Sender's phone number (registered with Aligo)"}, 'message': {'type': 'string', 'maxLength': 2000, 'minLength': 1, 'description': 'SMS message content'}, 'msg_type': {'enum': ['SMS', 'LMS', 'MMS'], 'type': 'string', 'description': 'Message type: SMS, LMS, or MMS'}, 'receiver': {'type': 'string', 'minLength': 1, 'description': "Recipient's phone number, or comma-separated list for multiple recipients"}, 'image_path': {'type': 'string', 'description': 'Optional image file path for MMS'}, 'destination': {'type': 'string', 'description': 'Optional formatted destination with names (01011112222|홍길동,01033334444|아무개)'}, 'schedule_date': {'type': 'string', 'pattern': '^\\d{8}$', 'description': 'Optional schedule date (YYYYMMDD)'}, 'schedule_time': {'type': 'string', 'pattern': '^\\d{4}$', 'description': 'Optional schedule time (HHMM)'}}, 'additionalProperties': False}}] |
@kukapay/rug-check-mcp | Rug Check | Analyze Solana meme tokens to identify potential risks and avoid rug pulls. Gain insights into token safety with detailed risk assessments and structured outputs. | 2025-04-02T17:01:03.416Z | 0 | https://smithery.ai/server/@kukapay/rug-check-mcp | true | null | null | [{'name': 'analysis_token', 'description': '\nAnalyze Solana token data using the Solsniffer API and return structured results.\n\nArgs:\n token_address (str): The Solana token contract address to analyze (e.g., "9VxExA1iRPbuLLdSJ2rB3nyBxsyLReT4aqzZBMaBaY1p").\n Must be a valid Solana public key or token address.\n\nReturns:\n Dict[str, Any]: A dictionary containing the token analysis with the following structure:\n - token_address (str): The analyzed token\'s contract address.\n - token_name (str): The name of the token (e.g., "REVSHARE").\n - token_symbol (str): The token\'s symbol (e.g., "REVS").\n - snif_score (int): Solsniffer risk score (0-100, higher indicates lower risk).\n - market_cap (float): Market capitalization in USD.\n - price (float): Current price per token in USD.\n - supply_amount (float): Total supply of the token in circulation.\n - risks (dict): Risk assessment categorized by severity:\n - high (dict): High-risk indicators.\n - count (int): Number of high-risk issues detected.\n - details (dict): Dictionary of high-risk factors with boolean values (e.g., {"Mintable risks found": True}).\n - moderate (dict): Moderate-risk indicators.\n - count (int): Number of moderate-risk issues detected.\n - details (dict): Dictionary of moderate-risk factors with boolean values.\n - low (dict): Low-risk indicators.\n - count (int): Number of low-risk issues detected.\n - details (dict): Dictionary of low-risk factors with boolean values.\n - audit_risk (dict): Audit-related risk factors:\n - mint_disabled (bool): True if minting authority is disabled.\n - freeze_disabled (bool): True if freeze authority is disabled.\n - lp_burned (bool): True if liquidity pool tokens are burned.\n - top_10_holders_significant (bool): True if the top 10 holders control a significant share.\n\nRaises:\n Exception: If the Solsniffer API request fails (e.g., due to an invalid token address, network issues, or API key errors).\n', 'inputSchema': {'type': 'object', 'title': 'analysis_tokenArguments', 'required': ['token_address'], 'properties': {'token_address': {'type': 'string', 'title': 'Token Address'}}}}] |
@Sheshiyer/framer-plugin-mcp | Framer Plugin Server | Create and manage Framer plugins with integrated web3 capabilities. Build plugins that connect wallets, interact with smart contracts, and display NFTs seamlessly. Enhance your Framer projects with powerful web3 features to engage users and expand functionality. | 2025-03-09T14:01:02.281Z | 0 | https://smithery.ai/server/@Sheshiyer/framer-plugin-mcp | true | null | {
"scanPassed": true
} | [{'name': 'create_plugin', 'description': 'Create a new Framer plugin project with web3 capabilities', 'inputSchema': {'type': 'object', 'required': ['name', 'description', 'outputPath'], 'properties': {'name': {'type': 'string', 'description': 'Plugin name'}, 'outputPath': {'type': 'string', 'description': 'Output directory path'}, 'description': {'type': 'string', 'description': 'Plugin description'}, 'web3Features': {'type': 'array', 'items': {'enum': ['wallet-connect', 'contract-interaction', 'nft-display'], 'type': 'string'}, 'description': 'Web3 features to include'}}}}, {'name': 'build_plugin', 'description': 'Build a Framer plugin project', 'inputSchema': {'type': 'object', 'required': ['pluginPath'], 'properties': {'pluginPath': {'type': 'string', 'description': 'Path to plugin directory'}}}}] |
@im360john/mcpsnowflake | Snowflake Database Server | Enable seamless interaction with Snowflake databases by running SQL queries, managing schemas, and extracting data insights. Execute read and write operations securely with optional write permissions. Access continuously updated data insights and schema context as resources for enhanced data understanding. | 2025-05-04T16:28:47.826Z | 0 | https://smithery.ai/server/@im360john/mcpsnowflake | true | null | {
"scanPassed": true
} | [{'name': 'list_databases', 'description': 'List all available databases in Snowflake', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'list_schemas', 'description': 'List all schemas in a database', 'inputSchema': {'type': 'object', 'required': ['database'], 'properties': {'database': {'type': 'string', 'description': 'Database name to list schemas from'}}}}, {'name': 'list_tables', 'description': 'List all tables in a specific database and schema', 'inputSchema': {'type': 'object', 'required': ['database', 'schema'], 'properties': {'schema': {'type': 'string', 'description': 'Schema name'}, 'database': {'type': 'string', 'description': 'Database name'}}}}, {'name': 'describe_table', 'description': 'Get the schema information for a specific table', 'inputSchema': {'type': 'object', 'required': ['table_name'], 'properties': {'table_name': {'type': 'string', 'description': "Fully qualified table name in the format 'database.schema.table'"}}}}, {'name': 'read_query', 'description': 'Execute a SELECT query.', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'SELECT SQL query to execute'}}}}, {'name': 'append_insight', 'description': 'Add a data insight to the memo', 'inputSchema': {'type': 'object', 'required': ['insight'], 'properties': {'insight': {'type': 'string', 'description': 'Data insight discovered from analysis'}}}}] |
@hetaoBackend/github-trending-mcp-server | GitHub Trending | Access trending repositories and developers on GitHub effortlessly. Filter results by programming language, time period, and spoken language to find the most relevant data for your needs. | 2025-04-01T11:30:06.866Z | 0 | https://smithery.ai/server/@hetaoBackend/github-trending-mcp-server | true | null | {
"scanPassed": true
} | [{'name': 'get_github_trending_repositories', 'description': 'Get trending repositories on github', 'inputSchema': {'type': 'object', 'properties': {'since': {'enum': ['daily', 'weekly', 'monthly'], 'type': 'string', 'description': 'Time period to filter repositories by'}, 'language': {'type': 'string', 'description': 'Language to filter repositories by'}, 'spoken_language': {'type': 'string', 'description': 'Spoken language to filter repositories by'}}}}, {'name': 'get_github_trending_developers', 'description': 'Get trending developers on github', 'inputSchema': {'type': 'object', 'properties': {'since': {'enum': ['daily', 'weekly', 'monthly'], 'type': 'string', 'description': 'Time period to filter repositories by'}, 'language': {'type': 'string', 'description': 'Language to filter repositories by'}, 'spoken_language': {'type': 'string', 'description': 'Spoken language to filter repositories by'}}}}] |
@ahnlabio/bicscan-mcp | BICScan | Obtain risk scores and detailed asset information for blockchain addresses and dApps. Leverage real-time scanning to assess potential risks and holdings securely. Integrate seamlessly with your applications using our powerful API. | 2025-03-31T18:00:55.108Z | 0 | https://smithery.ai/server/@ahnlabio/bicscan-mcp | true | null | {
"scanPassed": true
} | [{'name': 'get_risk_score', 'description': 'Get Risk Score for Crypto, Domain Name, ENS, CNS, KNS or even Hostname Address\n\n Args:\n address: EOA, CA, ENS, CNS, KNS or even HostName\n Returns:\n Dict: where summary.bicscan_score is from 0 to 100. 100 is high risk.\n ', 'inputSchema': {'type': 'object', 'title': 'get_risk_scoreArguments', 'required': ['address'], 'properties': {'address': {'type': 'string', 'title': 'Address'}}}}, {'name': 'get_assets', 'description': 'Get Assets holdings by CryptoAddress\n\n Args:\n address: EOA, CA, ENS, CNS, KNS.\n Returns:\n Dict: where assets is a list of assets\n ', 'inputSchema': {'type': 'object', 'title': 'get_assetsArguments', 'required': ['address'], 'properties': {'address': {'type': 'string', 'title': 'Address'}}}}] |
@jxnl/spiral-mcp | Spiral Writing Tool | Interact with Spiral's language models to generate text from various input sources. Utilize powerful tools for model listing, text generation, and article extraction to enhance your writing capabilities. | 2025-03-20T20:00:33.561Z | 0 | https://smithery.ai/server/@jxnl/spiral-mcp | true | null | null | [{'name': 'list_models', 'description': 'List available Spiral models with their capabilities.', 'inputSchema': {'type': 'object', 'title': 'list_modelsArguments', 'properties': {}}}, {'name': 'generate', 'description': 'Generate text using a Spiral model.', 'inputSchema': {'type': 'object', '$defs': {'GenerateParams': {'type': 'object', 'title': 'GenerateParams', 'required': ['model', 'prompt'], 'properties': {'model': {'type': 'string', 'title': 'Model', 'description': 'The ID or slug of the Spiral model to use'}, 'prompt': {'type': 'string', 'title': 'Prompt', 'description': 'The input text to generate from'}}}}, 'title': 'generateArguments', 'required': ['params'], 'properties': {'params': {'$ref': '#/$defs/GenerateParams'}}}}, {'name': 'generate_from_file', 'description': 'Generate text using a Spiral model with input from a file.', 'inputSchema': {'type': 'object', '$defs': {'GenerateFromFileParams': {'type': 'object', 'title': 'GenerateFromFileParams', 'required': ['model', 'file_path'], 'properties': {'model': {'type': 'string', 'title': 'Model', 'description': 'The ID or slug of the Spiral model to use'}, 'file_path': {'type': 'string', 'title': 'File Path', 'description': 'Path to the file to use as input'}}}}, 'title': 'generate_from_fileArguments', 'required': ['params'], 'properties': {'params': {'$ref': '#/$defs/GenerateFromFileParams'}}}}, {'name': 'generate_from_url', 'description': 'Generate text using a Spiral model with input from a URL.', 'inputSchema': {'type': 'object', '$defs': {'GenerateFromUrlParams': {'type': 'object', 'title': 'GenerateFromUrlParams', 'required': ['model', 'url'], 'properties': {'url': {'type': 'string', 'title': 'Url', 'description': 'URL to fetch content from'}, 'model': {'type': 'string', 'title': 'Model', 'description': 'The ID or slug of the Spiral model to use'}, 'extract_article': {'type': 'boolean', 'title': 'Extract Article', 'default': True, 'description': 'Whether to extract article content or use full HTML'}}}}, 'title': 'generate_from_urlArguments', 'required': ['params'], 'properties': {'params': {'$ref': '#/$defs/GenerateFromUrlParams'}}}}] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.