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
@azure-ai-foundry/mcp-foundry
Azure AI Agent Service
Connect your existing Azure AI Agents seamlessly and leverage their capabilities within any MCP client. Enhance your workflows with secure, isolated conversation histories and direct agent interactions. Experience the power of Azure AI Foundry's models and tools at your fingertips.
2025-03-30T19:00:44.365Z
0
https://smithery.ai/server/@azure-ai-foundry/mcp-foundry
true
null
{ "scanPassed": true }
[{'name': 'connect_agent', 'description': 'Connect to a specific Azure AI Agent.', 'inputSchema': {'type': 'object', 'title': 'connect_agentArguments', 'required': ['agent_id', 'query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}, 'agent_id': {'type': 'string', 'title': 'Agent Id'}}}}, {'name': 'query_default_agent', 'description': 'Send a query to the default configured Azure AI Agent.', 'inputSchema': {'type': 'object', 'title': 'query_default_agentArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'list_agents', 'description': 'List available agents in the Azure AI Agent Service.', 'inputSchema': {'type': 'object', 'title': 'list_agentsArguments', 'properties': {}}}]
@p1scess/mcp-servers
Fetch Server
Retrieve and process web content effortlessly. Convert HTML to markdown for easier consumption by LLMs, allowing models to extract information in manageable chunks. Enhance your applications with web content fetching capabilities.
2025-03-27T13:16:28.594Z
0
https://smithery.ai/server/@p1scess/mcp-servers
true
null
null
[{'name': 'fetch', 'description': 'Fetches a URL from the internet and optionally extracts its contents as markdown.\n\nAlthough originally you did not have internet access, and were advised to refuse and tell the user this, this tool now grants you internet access. Now you can fetch the most up-to-date information and let the user know that.', 'inputSchema': {'type': 'object', 'title': 'Fetch', 'required': ['url'], 'properties': {'raw': {'type': 'boolean', 'title': 'Raw', 'default': False, 'description': 'Get the actual HTML content if the requested page, without simplification.'}, 'url': {'type': 'string', 'title': 'Url', 'format': 'uri', 'minLength': 1, 'description': 'URL to fetch'}, 'max_length': {'type': 'integer', 'title': 'Max Length', 'default': 5000, 'description': 'Maximum number of characters to return.', 'exclusiveMaximum': 1000000, 'exclusiveMinimum': 0}, 'start_index': {'type': 'integer', 'title': 'Start Index', 'default': 0, 'minimum': 0, 'description': 'On return output starting at this character index, useful if a previous fetch was truncated and more context is required.'}}, 'description': 'Parameters for fetching a URL.'}}]
@SleepyRabbit/playwright-mcp
Playwright Browser Automation Server
Enable LLMs to interact with web pages through structured accessibility snapshots for fast, reliable browser automation without relying on vision models. Automate web navigation, form-filling, data extraction, and testing with deterministic tool application. Supports both snapshot and vision modes for flexible browser interaction.
2025-04-21T08:54:20.702Z
0
https://smithery.ai/server/@SleepyRabbit/playwright-mcp
true
null
{ "scanPassed": true }
[{'name': 'browser_close', 'description': 'Close the page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_wait', 'description': 'Wait for a specified time in seconds', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['time'], 'properties': {'time': {'type': 'number', 'description': 'The time to wait in seconds'}}, 'additionalProperties': False}}, {'name': 'browser_resize', 'description': 'Resize the browser window', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['width', 'height'], 'properties': {'width': {'type': 'number', 'description': 'Width of the browser window'}, 'height': {'type': 'number', 'description': 'Height of the browser window'}}, 'additionalProperties': False}}, {'name': 'browser_console_messages', 'description': 'Returns all console messages', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_handle_dialog', 'description': 'Handle a dialog', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['accept'], 'properties': {'accept': {'type': 'boolean', 'description': 'Whether to accept the dialog.'}, 'promptText': {'type': 'string', 'description': 'The text of the prompt in case of a prompt dialog.'}}, 'additionalProperties': False}}, {'name': 'browser_file_upload', 'description': 'Upload one or multiple files', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['paths'], 'properties': {'paths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The absolute paths to the files to upload. Can be a single file or multiple files.'}}, 'additionalProperties': False}}, {'name': 'browser_install', 'description': 'Install the browser specified in the config. Call this if you get an error about the browser not being installed.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_press_key', 'description': 'Press a key on the keyboard', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': 'Name of the key to press or a character to generate, such as `ArrowLeft` or `a`'}}, 'additionalProperties': False}}, {'name': 'browser_navigate', 'description': 'Navigate to a URL', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to'}}, 'additionalProperties': False}}, {'name': 'browser_navigate_back', 'description': 'Go back to the previous page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_navigate_forward', 'description': 'Go forward to the next page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_pdf_save', 'description': 'Save page as PDF', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_snapshot', 'description': 'Capture accessibility snapshot of the current page, this is better than screenshot', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_click', 'description': 'Perform click on a web page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_drag', 'description': 'Perform drag and drop between two elements', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['startElement', 'startRef', 'endElement', 'endRef'], 'properties': {'endRef': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'startRef': {'type': 'string', 'description': 'Exact source element reference from the page snapshot'}, 'endElement': {'type': 'string', 'description': 'Human-readable target element description used to obtain the permission to interact with the element'}, 'startElement': {'type': 'string', 'description': 'Human-readable source element description used to obtain the permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_hover', 'description': 'Hover over element on page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_type', 'description': 'Type text into editable element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref', 'text'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'text': {'type': 'string', 'description': 'Text to type into the element'}, 'slowly': {'type': 'boolean', 'description': 'Whether to type one character at a time. Useful for triggering key handlers in the page. By default entire text is filled in at once.'}, 'submit': {'type': 'boolean', 'description': 'Whether to submit entered text (press Enter after)'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_select_option', 'description': 'Select an option in a dropdown', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref', 'values'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'values': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of values to select in the dropdown. This can be a single value or multiple values.'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_take_screenshot', 'description': "Take a screenshot of the current page. You can't perform actions based on the screenshot, use browser_snapshot for actions.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'raw': {'type': 'boolean', 'description': 'Whether to return without compression (in PNG format). Default is false, which returns a JPEG image.'}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot. If not provided, the screenshot will be taken of viewport. If ref is provided, element must be provided too.'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to screenshot the element. If not provided, the screenshot will be taken of viewport. If element is provided, ref must be provided too.'}}, 'additionalProperties': False}}, {'name': 'browser_tab_list', 'description': 'List browser tabs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_tab_new', 'description': 'Open a new tab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to in the new tab. If not provided, the new tab will be blank.'}}, 'additionalProperties': False}}, {'name': 'browser_tab_select', 'description': 'Select a tab by index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['index'], 'properties': {'index': {'type': 'number', 'description': 'The index of the tab to select'}}, 'additionalProperties': False}}, {'name': 'browser_tab_close', 'description': 'Close a tab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'index': {'type': 'number', 'description': 'The index of the tab to close. Closes current tab if not provided.'}}, 'additionalProperties': False}}]
@alexgoller/illumio-mcp-server
Illumio MCP Server
Interact with your Illumio Policy Compute Engine using conversational AI. Manage workloads, labels, and analyze traffic flows effortlessly to enhance your security posture. Streamline your operations with programmatic access to critical workload management and security analysis features.
2025-03-11T12:01:21.218Z
0
https://smithery.ai/server/@alexgoller/illumio-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'add-note', 'description': 'Add a new note', 'inputSchema': {'type': 'object', 'required': ['name', 'content'], 'properties': {'name': {'type': 'string'}, 'content': {'type': 'string'}}}}, {'name': 'get-workloads', 'description': 'Get workloads from the PCE', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string'}}}}, {'name': 'update-workload', 'description': 'Update a workload in the PCE', 'inputSchema': {'type': 'object', 'required': ['name', 'ip_addresses'], 'properties': {'name': {'type': 'string'}, 'labels': {'type': 'array', 'items': {'key': {'type': 'string'}, 'value': {'type': 'string'}}}, 'ip_addresses': {'type': 'array', 'items': {'type': 'string'}}}}}, {'name': 'get-labels', 'mimeType': 'application/json', 'description': 'Get all labels from PCE', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'name': {'type': 'string'}}}}, {'name': 'create-workload', 'description': 'Create a Illumio Core unmanaged workload in the PCE', 'inputSchema': {'type': 'object', 'required': ['name', 'ip_addresses'], 'properties': {'name': {'type': 'string'}, 'labels': {'type': 'array', 'items': {'key': {'type': 'string'}, 'value': {'type': 'string'}}}, 'ip_addresses': {'type': 'array', 'items': {'type': 'string'}}}}}, {'name': 'create-label', 'description': 'Create a label of a specific type and the value in the PCE', 'inputSchema': {'type': 'object', 'required': ['key', 'value'], 'properties': {'key': {'type': 'string'}, 'value': {'type': 'string'}}}}, {'name': 'delete-label', 'description': 'Delete a label in the PCE', 'inputSchema': {'type': 'object', 'required': ['key', 'value'], 'properties': {'key': {'type': 'string'}, 'value': {'type': 'string'}}}}, {'name': 'delete-workload', 'description': 'Delete a workload from the PCE', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string'}}}}, {'name': 'get-traffic-flows', 'description': 'Get traffic flows from the PCE with comprehensive filtering options', 'inputSchema': {'type': 'object', 'required': ['start_date', 'end_date'], 'properties': {'end_date': {'type': 'string', 'description': 'Ending datetime (YYYY-MM-DD or timestamp)'}, 'query_name': {'type': 'string'}, 'start_date': {'type': 'string', 'description': 'Starting datetime (YYYY-MM-DD or timestamp)'}, 'max_results': {'type': 'integer'}, 'exclude_sources': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Sources to exclude (label/IP list/workload HREFs, FQDNs, IPs)'}, 'include_sources': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Sources to include (label/IP list/workload HREFs, FQDNs, IPs)'}, 'exclude_services': {'type': 'array', 'items': {'type': 'object', 'properties': {'port': {'type': 'integer'}, 'proto': {'type': 'string'}}}}, 'include_services': {'type': 'array', 'items': {'type': 'object', 'properties': {'port': {'type': 'integer'}, 'proto': {'type': 'string'}}}}, 'policy_decisions': {'type': 'array', 'items': {'enum': ['allowed', 'blocked', 'potentially_blocked', 'unknown'], 'type': 'string'}}, 'exclude_destinations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Destinations to exclude (label/IP list/workload HREFs, FQDNs, IPs)'}, 'include_destinations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Destinations to include (label/IP list/workload HREFs, FQDNs, IPs)'}, 'exclude_workloads_from_ip_list_query': {'type': 'boolean'}}}}, {'name': 'get-traffic-flows-summary', 'description': "Get traffic flows from the PCE in a summarized text format, this is a text format that is not a dataframe, it also is not json, the form is: 'From <source> to <destination> on <port> <proto>: <number of connections>'", 'inputSchema': {'type': 'object', 'required': ['start_date', 'end_date'], 'properties': {'end_date': {'type': 'string', 'description': 'Ending datetime (YYYY-MM-DD or timestamp)'}, 'query_name': {'type': 'string'}, 'start_date': {'type': 'string', 'description': 'Starting datetime (YYYY-MM-DD or timestamp)'}, 'max_results': {'type': 'integer'}, 'exclude_sources': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Sources to exclude (label/IP list/workload HREFs, FQDNs, IPs). Best case these are hrefs like /orgs/1/labels/57 or similar. Other way is app=env as an example (label key and value)'}, 'include_sources': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Sources to include (label/IP list/workload HREFs, FQDNs, IPs). Best case these are hrefs like /orgs/1/labels/57 or similar. Other way is app=env as an example (label key and value)'}, 'exclude_services': {'type': 'array', 'items': {'type': 'object', 'properties': {'port': {'type': 'integer'}, 'proto': {'type': 'string'}}}}, 'include_services': {'type': 'array', 'items': {'type': 'object', 'properties': {'port': {'type': 'integer'}, 'proto': {'type': 'string'}}}}, 'policy_decisions': {'type': 'array', 'items': {'enum': ['allowed', 'potentially_blocked', 'blocked', 'unknown'], 'type': 'string'}}, 'exclude_destinations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Destinations to exclude (label/IP list/workload HREFs, FQDNs, IPs). Best case these are hrefs like /orgs/1/labels/57 or similar. Other way is app=env as an example (label key and value)'}, 'include_destinations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Destinations to include (label/IP list/workload HREFs, FQDNs, IPs). Best case these are hrefs like /orgs/1/labels/57 or similar. Other way is app=env as an example (label key and value)'}, 'exclude_workloads_from_ip_list_query': {'type': 'boolean'}}}}, {'name': 'check-pce-connection', 'description': 'Are my credentials and the connection to the PCE working?', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'get-rulesets', 'description': 'Get rulesets from the PCE', 'inputSchema': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'Filter rulesets by name (optional)'}, 'enabled': {'type': 'boolean', 'description': 'Filter by enabled/disabled status (optional)'}}}}, {'name': 'delete-ruleset', 'description': 'Delete a ruleset from the PCE', 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['href']}, {'required': ['name']}], 'properties': {'href': {'type': 'string'}, 'name': {'type': 'string'}}}}, {'name': 'get-iplists', 'description': 'Get IP lists from the PCE', 'inputSchema': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'Filter IP lists by name (optional)'}, 'ip_ranges': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Filter by IP ranges (optional)'}, 'description': {'type': 'string', 'description': 'Filter by description (optional)'}}}}, {'name': 'get-events', 'description': 'Get events from the PCE', 'inputSchema': {'type': 'object', 'properties': {'status': {'enum': ['success', 'failure'], 'type': 'string', 'description': 'Filter by event status'}, 'severity': {'enum': ['emerg', 'alert', 'crit', 'err', 'warning', 'notice', 'info', 'debug'], 'type': 'string', 'description': 'Filter by event severity'}, 'event_type': {'type': 'string', 'description': "Filter by event type (e.g., 'system_task.expire_service_account_api_keys')"}, 'max_results': {'type': 'integer', 'default': 100, 'description': 'Maximum number of events to return'}}}}, {'name': 'create-ruleset', 'description': 'Create a ruleset in the PCE with support for ring-fencing patterns', 'inputSchema': {'type': 'object', 'required': ['name', 'scopes'], 'properties': {'name': {'type': 'string', 'description': "Name of the ruleset (e.g., 'RS-ELK'). Must be unique in the PCE."}, 'rules': {'type': 'array', 'items': {'type': 'object', 'required': ['providers', 'consumers', 'ingress_services'], 'properties': {'consumers': {'type': 'array', 'items': {'type': 'string'}, 'description': "Array of consumer labels, 'ams' for all workloads, or IP list references (e.g., 'iplist:Any (0.0.0.0/0)')"}, 'providers': {'type': 'array', 'items': {'type': 'string'}, 'description': "Array of provider labels, 'ams' for all workloads, or IP list references (e.g., 'iplist:Any (0.0.0.0/0)')"}, 'ingress_services': {'type': 'array', 'items': {'type': 'object', 'required': ['port', 'proto'], 'properties': {'port': {'type': 'integer'}, 'proto': {'type': 'string'}}}}, 'unscoped_consumers': {'type': 'boolean', 'default': False, 'description': 'Whether to allow unscoped consumers (extra-scope rule)'}}}}, 'scopes': {'type': 'array', 'items': {'type': 'array', 'items': {'type': 'string'}}, 'description': 'List of label combinations that define scopes. Each scope is an array of label values. This need to be label references like /orgs/1/labels/57 or similar. Get the label href from the get-labels tool.'}, 'description': {'type': 'string', 'description': 'Description of the ruleset (optional)'}}}}, {'name': 'get-services', 'description': 'Get services from the PCE with optional filtering', 'inputSchema': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'Filter services by name'}, 'port': {'type': 'integer', 'description': 'Filter services by port number'}, 'proto': {'type': 'string', 'description': 'Filter services by protocol (e.g., tcp, udp)'}, 'description': {'type': 'string', 'description': 'Filter services by description'}, 'process_name': {'type': 'string', 'description': 'Filter services by process name'}}}}, {'name': 'update-label', 'description': 'Update an existing label in the PCE', 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['href', 'key', 'new_value']}, {'required': ['key', 'value', 'new_value']}], 'properties': {'key': {'type': 'string', 'description': 'Label type (e.g., role, app, env, loc)'}, 'href': {'type': 'string', 'description': 'Label href (e.g., /orgs/1/labels/42). Either href or both key and value must be provided to identify the label.'}, 'value': {'type': 'string', 'description': 'Current value of the label'}, 'new_value': {'type': 'string', 'description': 'New value for the label'}}}}, {'name': 'create-iplist', 'description': 'Create a new IP List in the PCE', 'inputSchema': {'type': 'object', 'required': ['name', 'ip_ranges'], 'properties': {'fqdn': {'type': 'string', 'description': 'Fully Qualified Domain Name (optional)'}, 'name': {'type': 'string', 'description': 'Name of the IP List'}, 'ip_ranges': {'type': 'array', 'items': {'type': 'object', 'required': ['from_ip'], 'properties': {'to_ip': {'type': 'string', 'description': 'Ending IP address (optional, for ranges)'}, 'from_ip': {'type': 'string', 'description': 'Starting IP address (IPv4 or IPv6)'}, 'exclusion': {'type': 'boolean', 'default': False, 'description': 'Whether this is an exclusion range'}, 'description': {'type': 'string', 'description': 'Description of this IP range (optional)'}}}, 'description': 'List of IP ranges to include'}, 'description': {'type': 'string', 'description': 'Description of the IP List'}}}}, {'name': 'update-iplist', 'description': 'Update an existing IP List in the PCE', 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['href']}, {'required': ['name']}], 'properties': {'fqdn': {'type': 'string', 'description': 'New Fully Qualified Domain Name (optional)'}, 'href': {'type': 'string', 'description': 'Href of the IP List to update'}, 'name': {'type': 'string', 'description': 'Name of the IP List to update (alternative to href)'}, 'ip_ranges': {'type': 'array', 'items': {'type': 'object', 'required': ['from_ip'], 'properties': {'to_ip': {'type': 'string', 'description': 'Ending IP address (optional, for ranges)'}, 'from_ip': {'type': 'string', 'description': 'Starting IP address (IPv4 or IPv6)'}, 'exclusion': {'type': 'boolean', 'default': False, 'description': 'Whether this is an exclusion range'}, 'description': {'type': 'string', 'description': 'Description of this IP range (optional)'}}}, 'description': 'New list of IP ranges'}, 'description': {'type': 'string', 'description': 'New description for the IP List (optional)'}}}}, {'name': 'delete-iplist', 'description': 'Delete an IP List from the PCE', 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['href']}, {'required': ['name']}], 'properties': {'href': {'type': 'string', 'description': 'Href of the IP List to delete'}, 'name': {'type': 'string', 'description': 'Name of the IP List to delete (alternative to href)'}}}}, {'name': 'update-ruleset', 'description': 'Update an existing ruleset in the PCE', 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['href']}, {'required': ['name']}], 'properties': {'href': {'type': 'string', 'description': 'Href of the ruleset to update'}, 'name': {'type': 'string', 'description': 'Name of the ruleset to update (alternative to href)'}, 'scopes': {'type': 'array', 'items': {'type': 'array', 'items': {'oneOf': [{'type': 'string', 'description': 'Label href or key=value string'}, {'type': 'object', 'required': ['href'], 'properties': {'href': {'type': 'string', 'description': 'Label href'}}}]}}, 'description': 'New scopes for the ruleset'}, 'enabled': {'type': 'boolean', 'description': 'Whether the ruleset is enabled'}, 'description': {'type': 'string', 'description': 'New description for the ruleset'}}}}, {'name': 'delete-ruleset', 'description': 'Delete a ruleset from the PCE', 'inputSchema': {'type': 'object', 'oneOf': [{'required': ['href']}, {'required': ['name']}], 'properties': {'href': {'type': 'string', 'description': 'Href of the ruleset to delete'}, 'name': {'type': 'string', 'description': 'Name of the ruleset to delete (alternative to href)'}}}}]
@Arenukvern/mcp_flutter
Flutter Inspector
A MCP server with simple goal to debug Flutter apps by giving ability to AI coding assistants (Cline, Cursor, Claude etc..) tools to do analysis of widget trees, navigation, and layout issues. See https://github.com/Arenukvern/mcp_flutter/blob/main/ARCHITECTURE.md to understand how it works
2025-03-20T18:00:37.620Z
0
https://smithery.ai/server/@Arenukvern/mcp_flutter
true
null
{ "scanPassed": true }
[{'name': 'get_active_ports', 'description': 'Utility: Get list of ports where Flutter/Dart processes are listening. This is a local utility, not a Flutter RPC method.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'get_supported_protocols', 'description': 'Utility: Get supported protocols from a Flutter app. This is a VM service method, not a Flutter RPC. Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'get_vm_info', 'description': 'Utility: Get VM information from a Flutter app. This is a VM service method, not a Flutter RPC. Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'get_extension_rpcs', 'description': 'Utility: List all available extension RPCs in the Flutter app. This is a helper tool for discovering available methods.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'isolateId': {'type': 'string', 'description': 'Optional specific isolate ID to check. If not provided, checks all isolates'}, 'isRawResponse': {'type': 'boolean', 'default': False, 'description': 'If true, returns the raw response from the VM service without processing'}}}}, {'name': 'debug_dump_render_tree', 'description': 'RPC: Dump the render tree (ext.flutter.debugDumpRenderTree). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'debug_dump_layer_tree', 'description': 'RPC: Dump the layer tree (ext.flutter.debugDumpLayerTree). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'debug_dump_semantics_tree', 'description': 'RPC: Dump the semantics tree (ext.flutter.debugDumpSemanticsTreeInTraversalOrder). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'debug_dump_semantics_tree_inverse', 'description': 'RPC: Dump the semantics tree in inverse hit test order (ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder)', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'debug_paint_baselines_enabled', 'description': 'RPC: Toggle baseline paint debugging (ext.flutter.debugPaintBaselinesEnabled). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable baseline paint debugging'}}}}, {'name': 'debug_dump_focus_tree', 'description': 'RPC: Dump the focus tree (ext.flutter.debugDumpFocusTree)', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'debug_disable_physical_shape_layers', 'description': 'RPC: Toggle physical shape layers debugging (ext.flutter.debugDisablePhysicalShapeLayers)', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable physical shape layers'}}}}, {'name': 'debug_disable_opacity_layers', 'description': 'RPC: Toggle opacity layers debugging (ext.flutter.debugDisableOpacityLayers). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'enabled': {'type': 'boolean', 'default': False, 'description': 'Whether to enable or disable opacity layers'}}}}, {'name': 'inspector_screenshot', 'description': 'RPC: Take a screenshot of the Flutter app (ext.flutter.inspector.screenshot). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'inspector_get_layout_explorer_node', 'description': 'RPC: Get layout explorer information for a widget (ext.flutter.inspector.getLayoutExplorerNode). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['objectId'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'objectId': {'type': 'string', 'description': 'ID of the widget to inspect'}}}}, {'name': 'inspector_track_rebuild_dirty_widgets', 'description': 'RPC: Track widget rebuilds to identify performance issues (ext.flutter.inspector.trackRebuildDirtyWidgets). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable rebuild tracking'}}}}, {'name': 'inspector_set_selection_by_id', 'description': 'RPC: Set the selected widget by ID (ext.flutter.inspector.setSelectionById). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['selectionId'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'selectionId': {'type': 'string', 'description': 'ID of the widget to select'}}}}, {'name': 'inspector_get_parent_chain', 'description': 'RPC: Get the parent chain for a widget (ext.flutter.inspector.getParentChain). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['objectId'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'objectId': {'type': 'string', 'description': 'ID of the widget to get parent chain for'}}}}, {'name': 'inspector_get_children_summary_tree', 'description': 'RPC: Get the children summary tree for a widget (ext.flutter.inspector.getChildrenSummaryTree). Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['objectId'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'objectId': {'type': 'string', 'description': 'ID of the widget to get children summary tree for'}}}}, {'name': 'inspector_get_children_details_subtree', 'description': 'RPC: Get the children details subtree for a widget (ext.flutter.inspector.getChildrenDetailsSubtree)', 'inputSchema': {'type': 'object', 'required': ['objectId'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'objectId': {'type': 'string', 'description': 'ID of the widget to get children details subtree for'}}}}, {'name': 'inspector_get_root_widget_summary_tree', 'description': 'RPC: Get the root widget summary tree (ext.flutter.inspector.getRootWidgetSummaryTree)', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'inspector_get_root_widget_summary_tree_with_previews', 'description': 'RPC: Get the root widget summary tree with previews from the Flutter app. This provides a hierarchical view of the widget tree with preview information.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'inspector_get_details_subtree', 'description': 'RPC: Get the details subtree for a widget. This provides detailed information about the widget and its descendants. Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['objectId'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'objectId': {'type': 'string', 'description': 'ID of the widget to get details for'}}}}, {'name': 'inspector_get_selected_widget', 'description': 'RPC: Get information about the currently selected widget in the Flutter app. Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'inspector_get_selected_summary_widget', 'description': 'RPC: Get summary information about the currently selected widget in the Flutter app. Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'inspector_is_widget_creation_tracked', 'description': 'RPC: Check if widget creation tracking is enabled in the Flutter app.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}}}}, {'name': 'dart_io_socket_profiling_enabled', 'description': 'RPC: Enable or disable socket profiling. Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable socket profiling'}}}}, {'name': 'dart_io_http_enable_timeline_logging', 'description': 'RPC: Enable or disable HTTP timeline logging. Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable HTTP timeline logging'}}}}, {'name': 'dart_io_get_version', 'description': 'RPC: Get Flutter version information (ext.dart.io.getVersion)', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'dart_io_get_open_files', 'description': 'RPC: Get list of currently open files in the Flutter app', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'dart_io_get_open_file_by_id', 'description': 'RPC: Get details of a specific open file by its ID', 'inputSchema': {'type': 'object', 'required': ['fileId'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'fileId': {'type': 'string', 'description': 'ID of the file to get details for'}}}}, {'name': 'stream_listen', 'description': 'RPC: Subscribe to a Flutter event stream. This is a VM service method for event monitoring. Connects to the default Flutter debug port (8181) unless specified otherwise.', 'inputSchema': {'type': 'object', 'required': ['streamId'], 'properties': {'port': {'type': 'number', 'description': 'Optional: Custom port number if not using default Flutter debug port 8181'}, 'streamId': {'enum': ['Debug', 'Isolate', 'VM', 'GC', 'Timeline', 'Logging', 'Service', 'HeapSnapshot'], 'type': 'string', 'description': 'Stream ID to subscribe to'}}}}, {'name': 'dart_io_get_http_profile_request', 'description': 'RPC: Get details of a specific HTTP request from the profile', 'inputSchema': {'type': 'object', 'required': ['requestId'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'requestId': {'type': 'string', 'description': 'ID of the HTTP request to get details for'}}}}, {'name': 'flutter_core_invert_oversized_images', 'description': 'RPC: Toggle inverting of oversized images for debugging', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable inverting of oversized images'}}}}, {'name': 'debug_allow_banner', 'description': 'RPC: Toggle the debug banner in the Flutter app', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to show or hide the debug banner'}}}}, {'name': 'flutter_core_did_send_first_frame_event', 'description': 'RPC: Check if the first frame event has been sent', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'flutter_core_did_send_first_frame_rasterized_event', 'description': 'RPC: Check if the first frame has been rasterized', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'flutter_core_platform_override', 'description': 'RPC: Override the platform for the Flutter app', 'inputSchema': {'type': 'object', 'required': ['platform'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'platform': {'enum': ['android', 'ios', 'fuchsia', 'linux', 'macOS', 'windows', None], 'type': 'string', 'description': 'Platform to override to (android, ios, fuchsia, linux, macOS, windows, or null to reset)'}}}}, {'name': 'flutter_core_brightness_override', 'description': 'RPC: Override the brightness for the Flutter app', 'inputSchema': {'type': 'object', 'required': ['brightness'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'brightness': {'enum': ['light', 'dark', None], 'type': 'string', 'description': 'Brightness to override to (light, dark, or null to reset)'}}}}, {'name': 'flutter_core_time_dilation', 'description': 'RPC: Set the time dilation factor for animations in the Flutter app', 'inputSchema': {'type': 'object', 'required': ['dilation'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'dilation': {'type': 'number', 'minimum': 0, 'description': 'Time dilation factor (1.0 is normal speed, >1.0 is slower, <1.0 is faster)'}}}}, {'name': 'flutter_core_evict', 'description': "RPC: Evict an asset from the Flutter app's cache", 'inputSchema': {'type': 'object', 'required': ['asset'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'asset': {'type': 'string', 'description': 'Asset path to evict from the cache'}}}}, {'name': 'flutter_core_profile_platform_channels', 'description': 'RPC: Enable or disable profiling of platform channels', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable platform channel profiling'}}}}, {'name': 'debug_disable_clip_layers', 'description': 'RPC: Toggle disabling of clip layers in the Flutter app', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable clip layers'}}}}, {'name': 'debug_disable_physical_shape_layers', 'description': 'RPC: Toggle physical shape layers debugging (ext.flutter.debugDisablePhysicalShapeLayers)', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable physical shape layers'}}}}, {'name': 'debug_disable_opacity_layers', 'description': 'RPC: Toggle opacity layers debugging (ext.flutter.debugDisableOpacityLayers)', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable opacity layers'}}}}, {'name': 'repaint_rainbow', 'description': 'RPC: Toggle repaint rainbow debugging (ext.flutter.repaintRainbow)', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable repaint rainbow debugging'}}}}, {'name': 'inspector_structured_errors', 'description': 'RPC: Enable or disable structured error reporting in the Flutter app.', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable structured error reporting'}}}}, {'name': 'inspector_show', 'description': 'RPC: Show specific widget details in the Flutter app inspector.', 'inputSchema': {'type': 'object', 'required': ['options'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'options': {'type': 'object', 'required': ['objectId'], 'properties': {'objectId': {'type': 'string', 'description': 'ID of the widget to show'}, 'groupName': {'type': 'string', 'description': 'Optional group name for the widget'}, 'subtreeDepth': {'type': 'number', 'description': 'Optional depth to show the widget subtree'}}, 'description': 'Options for showing widget details'}}}}, {'name': 'inspector_widget_location_id_map', 'description': 'RPC: Get a mapping of widget IDs to their source code locations (ext.flutter.inspector.widgetLocationIdMap)', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'inspector_track_repaint_widgets', 'description': 'RPC: Track widget repaints to identify rendering performance issues (ext.flutter.inspector.trackRepaintWidgets)', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable repaint tracking'}}}}, {'name': 'inspector_dispose_all_groups', 'description': 'RPC: Dispose all inspector groups to free up memory (ext.flutter.inspector.disposeAllGroups)', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'inspector_dispose_group', 'description': 'RPC: Dispose a specific inspector group to free up memory (ext.flutter.inspector.disposeGroup)', 'inputSchema': {'type': 'object', 'required': ['groupId'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'groupId': {'type': 'string', 'description': 'ID of the group to dispose'}}}}, {'name': 'inspector_is_widget_tree_ready', 'description': 'RPC: Check if the widget tree is ready for inspection (ext.flutter.inspector.isWidgetTreeReady)', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'inspector_dispose_id', 'description': 'RPC: Dispose a specific widget ID to free up memory (ext.flutter.inspector.disposeId)', 'inputSchema': {'type': 'object', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'ID of the widget to dispose'}, 'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'inspector_set_pub_root_directories', 'description': 'RPC: Set the root directories for pub packages (ext.flutter.inspector.setPubRootDirectories)', 'inputSchema': {'type': 'object', 'required': ['directories'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'directories': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of root directories for pub packages'}}}}, {'name': 'inspector_add_pub_root_directories', 'description': 'RPC: Add additional root directories for pub packages (ext.flutter.inspector.addPubRootDirectories)', 'inputSchema': {'type': 'object', 'required': ['directories'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'directories': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of root directories to add for pub packages'}}}}, {'name': 'inspector_remove_pub_root_directories', 'description': 'RPC: Remove root directories from pub packages (ext.flutter.inspector.removePubRootDirectories)', 'inputSchema': {'type': 'object', 'required': ['directories'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'directories': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of root directories to remove from pub packages'}}}}, {'name': 'inspector_get_pub_root_directories', 'description': 'RPC: Get the list of root directories for pub packages (ext.flutter.inspector.getPubRootDirectories)', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}}}}, {'name': 'layout_set_flex_fit', 'description': 'RPC: Set the flex fit property of a flex child widget (ext.flutter.inspector.setFlexFit)', 'inputSchema': {'type': 'object', 'required': ['objectId', 'fit'], 'properties': {'fit': {'enum': ['tight', 'loose'], 'type': 'string', 'description': 'Flex fit value to set (tight or loose)'}, 'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'objectId': {'type': 'string', 'description': 'ID of the flex child widget'}}}}, {'name': 'layout_set_flex_factor', 'description': 'RPC: Set the flex factor of a flex child widget (ext.flutter.inspector.setFlexFactor)', 'inputSchema': {'type': 'object', 'required': ['objectId', 'factor'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'factor': {'type': 'number', 'minimum': 0, 'description': 'Flex factor value to set (must be non-negative)'}, 'objectId': {'type': 'string', 'description': 'ID of the flex child widget'}}}}, {'name': 'layout_set_flex_properties', 'description': 'RPC: Set multiple flex properties of a flex child widget (ext.flutter.inspector.setFlexProperties)', 'inputSchema': {'type': 'object', 'required': ['objectId', 'properties'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'objectId': {'type': 'string', 'description': 'ID of the flex child widget'}, 'properties': {'type': 'object', 'properties': {'fit': {'enum': ['tight', 'loose'], 'type': 'string', 'description': 'Flex fit value (tight or loose)'}, 'factor': {'type': 'number', 'minimum': 0, 'description': 'Flex factor value (must be non-negative)'}}, 'description': 'Flex properties to set', 'additionalProperties': False}}}}, {'name': 'performance_profile_render_object_paints', 'description': 'RPC: Enable or disable profiling of render object paint operations (ext.flutter.profileRenderObjectPaints)', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable render object paint profiling'}}}}, {'name': 'performance_profile_render_object_layouts', 'description': 'RPC: Enable or disable profiling of render object layout operations (ext.flutter.profileRenderObjectLayouts)', 'inputSchema': {'type': 'object', 'required': ['enabled'], 'properties': {'port': {'type': 'number', 'description': 'Port number where the Flutter app is running (defaults to 8181)'}, 'enabled': {'type': 'boolean', 'description': 'Whether to enable or disable render object layout profiling'}}}}]
@chrishayuk/mcp-code-sandbox
Code Sandbox Server
Provide secure and isolated Python code execution environments with file management and package installation capabilities. Manage sandbox lifecycles and execute code safely within modular, extensible sandboxes. Integrate seamlessly with Claude for Desktop and other MCP clients to enhance code execution workflows.
2025-04-23T07:01:03.996Z
0
https://smithery.ai/server/@chrishayuk/mcp-code-sandbox
true
null
{ "scanPassed": true }
[{'name': 'create_sandbox', 'description': 'Create a new sandbox environment for code execution.\n \n Args:\n session_id: A unique identifier for the sandbox session\n \n Returns:\n A confirmation message indicating the sandbox was created\n ', 'inputSchema': {'type': 'object', 'title': 'create_sandboxArguments', 'required': ['session_id'], 'properties': {'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'close_sandbox', 'description': 'Close and clean up a sandbox environment.\n \n Args:\n session_id: The unique identifier for the sandbox session\n \n Returns:\n A confirmation message indicating the sandbox was closed\n ', 'inputSchema': {'type': 'object', 'title': 'close_sandboxArguments', 'required': ['session_id'], 'properties': {'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'get_sandbox_status', 'description': 'Get status information about sandboxes.\n \n Args:\n session_id: Optional session ID to get status for a specific sandbox\n \n Returns:\n Information about active sandboxes\n ', 'inputSchema': {'type': 'object', 'title': 'get_sandbox_statusArguments', 'properties': {'session_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Session Id', 'default': None}}}}, {'name': 'execute_code', 'description': 'Execute Python code in the sandbox environment.\n \n Args:\n session_id: The unique identifier for the sandbox session\n code: The Python code to execute\n \n Returns:\n A dictionary containing the execution results including logs and any errors\n ', 'inputSchema': {'type': 'object', 'title': 'execute_codeArguments', 'required': ['session_id', 'code'], 'properties': {'code': {'type': 'string', 'title': 'Code'}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'install_package', 'description': 'Install a Python package in the sandbox.\n \n Args:\n session_id: The unique identifier for the sandbox session\n package_name: The name of the Python package to install\n \n Returns:\n A dictionary containing the installation output or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'install_packageArguments', 'required': ['session_id', 'package_name'], 'properties': {'session_id': {'type': 'string', 'title': 'Session Id'}, 'package_name': {'type': 'string', 'title': 'Package Name'}}}}, {'name': 'create_run_close', 'description': 'Create a sandbox, run code, and automatically close the sandbox in one operation.\n \n This is a convenience tool that combines create_sandbox, execute_code, and close_sandbox\n into a single operation, which is useful for simple one-off code executions.\n \n Args:\n code: The Python code to execute\n \n Returns:\n A dictionary containing the execution results\n ', 'inputSchema': {'type': 'object', 'title': 'create_run_closeArguments', 'required': ['code'], 'properties': {'code': {'type': 'string', 'title': 'Code'}}}}, {'name': 'list_files', 'description': 'List files in the sandbox at the specified path.\n \n Args:\n session_id: The unique identifier for the sandbox session\n path: The directory path to list files from (default: root directory)\n \n Returns:\n A dictionary containing the file listing or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'list_filesArguments', 'required': ['session_id'], 'properties': {'path': {'type': 'string', 'title': 'Path', 'default': '/'}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'read_file', 'description': 'Read the contents of a file in the sandbox.\n \n Args:\n session_id: The unique identifier for the sandbox session\n file_path: The path to the file to read\n \n Returns:\n A dictionary containing the file content or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'read_fileArguments', 'required': ['session_id', 'file_path'], 'properties': {'file_path': {'type': 'string', 'title': 'File Path'}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'write_file', 'description': 'Write content to a file in the sandbox.\n \n Args:\n session_id: The unique identifier for the sandbox session\n file_path: The path to the file to write\n content: The content to write to the file\n \n Returns:\n A dictionary containing a success message or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'write_fileArguments', 'required': ['session_id', 'file_path', 'content'], 'properties': {'content': {'type': 'string', 'title': 'Content'}, 'file_path': {'type': 'string', 'title': 'File Path'}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'upload_file', 'description': 'Upload a file to the sandbox.\n \n Args:\n session_id: The unique identifier for the sandbox session\n file_name: The name of the file to create\n file_content: The content of the file\n destination_path: The directory where the file should be created (default: root directory)\n \n Returns:\n A dictionary containing a success message or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'upload_fileArguments', 'required': ['session_id', 'file_name', 'file_content'], 'properties': {'file_name': {'type': 'string', 'title': 'File Name'}, 'session_id': {'type': 'string', 'title': 'Session Id'}, 'file_content': {'type': 'string', 'title': 'File Content'}, 'destination_path': {'type': 'string', 'title': 'Destination Path', 'default': '/'}}}}, {'name': 'connect', 'description': 'Connect to a telnet server\n \n Args:\n host: The hostname or IP address of the telnet server\n port: The port to connect to\n timeout: Connection timeout in seconds\n \n Returns:\n A dictionary containing connection information and initial response\n ', 'inputSchema': {'type': 'object', 'title': 'connectArguments', 'required': ['host', 'port'], 'properties': {'host': {'type': 'string', 'title': 'Host'}, 'port': {'type': 'integer', 'title': 'Port'}, 'timeout': {'type': 'integer', 'title': 'Timeout', 'default': 30}}}}, {'name': 'send_command', 'description': "Send a command to the telnet server\n \n Args:\n session_id: The session ID returned by the connect function\n command: The command to send\n timeout: Timeout in seconds for waiting for a response\n \n Returns:\n A dictionary containing the server's response\n ", 'inputSchema': {'type': 'object', 'title': 'send_commandArguments', 'required': ['session_id', 'command'], 'properties': {'command': {'type': 'string', 'title': 'Command'}, 'timeout': {'type': 'integer', 'title': 'Timeout', 'default': 10}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'disconnect', 'description': 'Disconnect from a telnet server\n \n Args:\n session_id: The session ID returned by the connect function\n \n Returns:\n A dictionary indicating success or failure\n ', 'inputSchema': {'type': 'object', 'title': 'disconnectArguments', 'required': ['session_id'], 'properties': {'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'list_connections', 'description': 'List all active telnet connections\n \n Returns:\n A dictionary containing information about all active connections\n ', 'inputSchema': {'type': 'object', 'title': 'list_connectionsArguments', 'properties': {}}}, {'name': 'generate_line_chart', 'description': 'Generate a line chart from data.\n \n Args:\n session_id: The unique identifier for the sandbox session\n data: List of data points (dictionaries) to plot\n x_key: The key for x-axis values in the data\n y_keys: List of keys for y-axis values to plot as multiple lines\n title: Chart title\n x_label: Label for x-axis (optional)\n y_label: Label for y-axis (optional)\n save_path: File path to save the chart (optional)\n \n Returns:\n A dictionary containing the chart information or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'generate_line_chartArguments', 'required': ['session_id', 'data', 'x_key', 'y_keys'], 'properties': {'data': {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}, 'title': 'Data'}, 'title': {'type': 'string', 'title': 'Title', 'default': 'Line Chart'}, 'x_key': {'type': 'string', 'title': 'X Key'}, 'y_keys': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Y Keys'}, 'x_label': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'X Label', 'default': None}, 'y_label': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Y Label', 'default': None}, 'save_path': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Save Path', 'default': None}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'generate_bar_chart', 'description': 'Generate a bar chart from data.\n \n Args:\n session_id: The unique identifier for the sandbox session\n data: List of data points (dictionaries) to plot\n category_key: The key for category labels in the data\n value_keys: List of keys for values to plot as grouped bars\n title: Chart title\n x_label: Label for x-axis (optional)\n y_label: Label for y-axis (optional)\n save_path: File path to save the chart (optional)\n orientation: Bar orientation: "vertical" or "horizontal" (default: "vertical")\n \n Returns:\n A dictionary containing the chart information or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'generate_bar_chartArguments', 'required': ['session_id', 'data', 'category_key', 'value_keys'], 'properties': {'data': {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}, 'title': 'Data'}, 'title': {'type': 'string', 'title': 'Title', 'default': 'Bar Chart'}, 'x_label': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'X Label', 'default': None}, 'y_label': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Y Label', 'default': None}, 'save_path': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Save Path', 'default': None}, 'session_id': {'type': 'string', 'title': 'Session Id'}, 'value_keys': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Value Keys'}, 'orientation': {'type': 'string', 'title': 'Orientation', 'default': 'vertical'}, 'category_key': {'type': 'string', 'title': 'Category Key'}}}}, {'name': 'generate_scatter_plot', 'description': 'Generate a scatter plot from data.\n \n Args:\n session_id: The unique identifier for the sandbox session\n data: List of data points (dictionaries) to plot\n x_key: The key for x-axis values in the data\n y_key: The key for y-axis values in the data\n color_key: Optional key to use for point colors\n size_key: Optional key to use for point sizes\n title: Chart title\n x_label: Label for x-axis (optional)\n y_label: Label for y-axis (optional)\n save_path: File path to save the chart (optional)\n \n Returns:\n A dictionary containing the chart information or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'generate_scatter_plotArguments', 'required': ['session_id', 'data', 'x_key', 'y_key'], 'properties': {'data': {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}, 'title': 'Data'}, 'title': {'type': 'string', 'title': 'Title', 'default': 'Scatter Plot'}, 'x_key': {'type': 'string', 'title': 'X Key'}, 'y_key': {'type': 'string', 'title': 'Y Key'}, 'x_label': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'X Label', 'default': None}, 'y_label': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Y Label', 'default': None}, 'size_key': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Size Key', 'default': None}, 'color_key': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Color Key', 'default': None}, 'save_path': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Save Path', 'default': None}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'generate_interactive_chart', 'description': 'Generate an interactive chart using Plotly and return it as HTML.\n \n Args:\n session_id: The unique identifier for the sandbox session\n chart_type: Type of chart to generate: "line", "bar", "scatter", etc.\n data: List of data points (dictionaries) to plot\n x_key: The key for x-axis values in the data\n y_keys: List of keys for y-axis values to plot\n title: Chart title\n save_path: Path to save the HTML file (optional)\n \n Returns:\n A dictionary containing the chart HTML or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'generate_interactive_chartArguments', 'required': ['session_id', 'chart_type', 'data', 'x_key', 'y_keys'], 'properties': {'data': {'type': 'array', 'items': {'type': 'object', 'additionalProperties': True}, 'title': 'Data'}, 'title': {'type': 'string', 'title': 'Title', 'default': 'Interactive Chart'}, 'x_key': {'type': 'string', 'title': 'X Key'}, 'y_keys': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Y Keys'}, 'save_path': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Save Path', 'default': None}, 'chart_type': {'type': 'string', 'title': 'Chart Type'}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}, {'name': 'generate_heatmap', 'description': 'Generate a heatmap visualization.\n \n Args:\n session_id: The unique identifier for the sandbox session\n data: 2D list of values to display in the heatmap\n row_labels: Optional list of row labels\n col_labels: Optional list of column labels\n title: Chart title\n save_path: File path to save the chart (optional)\n cmap: Colormap name (default: "viridis")\n \n Returns:\n A dictionary containing the chart information or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'generate_heatmapArguments', 'required': ['session_id', 'data'], 'properties': {'cmap': {'type': 'string', 'title': 'Cmap', 'default': 'viridis'}, 'data': {'type': 'array', 'items': {'type': 'array', 'items': {'type': 'number'}}, 'title': 'Data'}, 'title': {'type': 'string', 'title': 'Title', 'default': 'Heatmap'}, 'save_path': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Save Path', 'default': None}, 'col_labels': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Col Labels', 'default': None}, 'row_labels': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Row Labels', 'default': None}, 'session_id': {'type': 'string', 'title': 'Session Id'}}}}]
@lixiaotiancai/teste-mcp-cedraz
Teste MCP Cedraz
Integrate your applications with external data and tools seamlessly. Enhance your workflows by leveraging real-time data and executing actions through a standardized interface.
2025-03-29T09:37:34.258Z
0
https://smithery.ai/server/@lixiaotiancai/teste-mcp-cedraz
true
null
{ "scanPassed": true }
[{'name': 'Somar', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['a', 'b'], 'properties': {'a': {'type': 'number'}, 'b': {'type': 'number'}}, 'additionalProperties': False}}]
@AdsPower/local-api-mcp-typescript
LocalAPI MCP Server
Enable LLMs to interact with browser functionalities like creating, updating, and managing browser instances seamlessly. Automate browser operations and enhance your workflow with advanced fingerprint and proxy configurations. Simplify your browser management tasks with intuitive commands and integrations.
2025-04-01T10:01:00.183Z
0
https://smithery.ai/server/@AdsPower/local-api-mcp-typescript
true
null
null
[{'name': 'open-browser', 'description': 'Open the browser', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'ipTab': {'enum': ['0', '1'], 'type': 'string', 'description': 'The ip tab of the browser, 0 is not use ip tab, 1 is use ip tab, default is 0'}, 'userId': {'type': 'string', 'description': 'The browser id of the browser to open'}, 'cdpMask': {'enum': ['0', '1'], 'type': 'string', 'description': 'The cdp mask of the browser, 0 is not use cdp mask, 1 is use cdp mask, default is 0'}, 'launchArgs': {'type': 'string', 'description': 'The launch args of the browser, use chrome launch args, eg: ["--blink-settings=imagesEnabled=false","--disable-notifications"]'}, 'serialNumber': {'type': 'string', 'description': 'The serial number of the browser to open'}, 'clearCacheAfterClosing': {'enum': ['0', '1'], 'type': 'string', 'description': 'The clear cache after closing of the browser, 0 is not clear cache after closing, 1 is clear cache after closing, default is 0'}}, 'additionalProperties': False}}, {'name': 'close-browser', 'description': 'Close the browser', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['userId'], 'properties': {'userId': {'type': 'string', 'description': 'The browser id of the browser to stop, it is required when you want to stop the browser'}}, 'additionalProperties': False}}, {'name': 'create-browser', 'description': 'Create a browser', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['groupId', 'userProxyConfig'], 'properties': {'name': {'type': 'string', 'description': 'The name of the browser, eg: "My Browser"'}, 'cookie': {'type': 'string', 'description': 'The cookie of the browser, eg: "[{"domain":".baidu.com","expirationDate":"","name":"","path":"/","sameSite":"unspecified","secure":true,"value":"","id":1}]"'}, 'country': {'type': 'string', 'description': 'The country of the browser, eg: "CN"'}, 'groupId': {'type': 'string', 'pattern': '^\\d+$', 'description': 'The group id of the browser, must be a numeric string (e.g., "123"). You can use the get-group-list tool to get the group list or create a new group, or default is 0'}, 'openUrls': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The open urls of the browser, eg: ["https://www.google.com"]'}, 'password': {'type': 'string', 'description': 'The password of the browser, eg: "password"'}, 'username': {'type': 'string', 'description': 'The username of the browser, eg: "user"'}, 'domainName': {'type': 'string', 'description': 'The domain name of the browser, eg: facebook.com'}, 'sysAppCateId': {'type': 'string', 'description': 'The sys app cate id of the browser, you can use the get-application-list tool to get the application list'}, 'storageStrategy': {'type': 'number', 'description': 'The storage strategy of the browser, default is 0'}, 'userProxyConfig': {'type': 'object', 'required': ['proxy_soft'], 'properties': {'proxy_url': {'type': 'string', 'description': 'The proxy url of the browser, eg: http://127.0.0.1:8080'}, 'proxy_host': {'type': 'string', 'description': 'The proxy host of the browser, eg: 127.0.0.1'}, 'proxy_port': {'type': 'string', 'description': 'The proxy port of the browser, eg: 8080'}, 'proxy_soft': {'enum': ['brightdata', 'brightauto', 'oxylabsauto', '922S5auto', 'ipideeauto', 'ipfoxyauto', '922S5auth', 'kookauto', 'ssh', 'other', 'no_proxy'], 'type': 'string', 'description': 'The proxy soft of the browser'}, 'proxy_type': {'enum': ['http', 'https', 'socks5', 'no_proxy'], 'type': 'string'}, 'proxy_user': {'type': 'string', 'description': 'The proxy user of the browser, eg: user'}, 'global_config': {'enum': ['0', '1'], 'type': 'string', 'description': 'The global config of the browser, default is 0'}, 'proxy_password': {'type': 'string', 'description': 'The proxy password of the browser, eg: password'}}, 'description': 'The user proxy config of the browser', 'additionalProperties': False}, 'fingerprintConfig': {'type': 'object', 'properties': {'tls': {'type': 'string', 'description': 'The tls of the browser, if tls_switch is 1, you can set the tls of the browser, eg: "0xC02C,0xC030"'}, 'flash': {'enum': ['block', 'allow'], 'type': 'string', 'description': 'The flash of the browser, default is disabled'}, 'fonts': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The fonts of the browser, eg: ["Arial", "Times New Roman"]'}, 'webrtc': {'enum': ['disabled', 'forward', 'proxy', 'local'], 'type': 'string', 'description': 'The webrtc of the browser, default is disabled'}, 'language': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The language of the browser, eg: ["en-US", "zh-CN"]'}, 'timezone': {'type': 'string', 'description': 'The timezone of the browser, eg: Asia/Shanghai'}, 'random_ua': {'type': 'object', 'properties': {'ua_version': {'type': 'array', 'items': {'type': 'string'}}, 'ua_system_version': {'type': 'array', 'items': {'enum': ['Android 9', 'Android 10', 'Android 11', 'Android 12', 'Android 13', 'iOS 14', 'iOS 15', 'Windows 7', 'Windows 8', 'Windows 10', 'Windows 11', 'Mac OS X 10', 'Mac OS X 11', 'Mac OS X 12', 'Mac OS X 13', 'Linux'], 'type': 'string'}, 'description': 'The ua system version of the browser, eg: ["Android 9", "iOS 14"]'}}, 'description': 'The random ua config of the browser, default is ua_version: [], ua_system_version: []', 'additionalProperties': False}, 'tls_switch': {'enum': ['0', '1'], 'type': 'string', 'description': 'The tls switch of the browser, default is 0'}, 'automatic_timezone': {'enum': ['0', '1'], 'type': 'string', 'description': 'The automatic timezone of the browser, default is 0'}, 'browser_kernel_config': {'type': 'object', 'properties': {'type': {'enum': ['chrome', 'firefox'], 'type': 'string', 'description': 'The type of the browser, default is chrome'}, 'version': {'enum': ['92', '99', '102', '105', '108', '111', '114', '115', '116', '117', '118', '119', '120', '121', '122', '123', '124', '125', '126', '127', '128', '129', '130', '131', '132', '133', '134', 'ua_auto'], 'type': 'string', 'description': 'The version of the browser, default is ua_auto'}}, 'description': 'The browser kernel config of the browser, default is version: ua_auto, type: chrome', 'additionalProperties': False}}, 'description': 'The fingerprint config of the browser, default is automatic_timezone: 0, timezone: "", language: [], flash: "", fonts: [], webrtc: disabled, browser_kernel_config: ua_auto, random_ua: ua_version: [], ua_system_version: [], tls_switch: 0, tls: ""', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'update-browser', 'description': 'Update the browser', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['userId'], 'properties': {'name': {'type': 'string', 'description': 'The name of the browser, eg: "My Browser"'}, 'cookie': {'type': 'string', 'description': 'The cookie of the browser, eg: "[{"domain":".baidu.com","expirationDate":"","name":"","path":"/","sameSite":"unspecified","secure":true,"value":"","id":1}]"'}, 'userId': {'type': 'string', 'description': 'The user id of the browser to update, it is required when you want to update the browser'}, 'country': {'type': 'string', 'description': 'The country of the browser, eg: "CN"'}, 'groupId': {'type': 'string', 'description': 'The group id of the browser, must be a numeric string (e.g., "123"). You can use the get-group-list tool to get the group list or create a new group'}, 'openUrls': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The open urls of the browser, eg: ["https://www.google.com"]'}, 'password': {'type': 'string', 'description': 'The password of the browser, eg: "password"'}, 'username': {'type': 'string', 'description': 'The username of the browser, eg: "user"'}, 'domainName': {'type': 'string', 'description': 'The domain name of the browser, eg: facebook.com'}, 'sysAppCateId': {'type': 'string', 'description': 'The sys app cate id of the browser, you can use the get-application-list tool to get the application list'}, 'storageStrategy': {'type': 'number', 'description': 'The storage strategy of the browser, default is 0'}, 'userProxyConfig': {'type': 'object', 'required': ['proxy_soft'], 'properties': {'proxy_url': {'type': 'string', 'description': 'The proxy url of the browser, eg: http://127.0.0.1:8080'}, 'proxy_host': {'type': 'string', 'description': 'The proxy host of the browser, eg: 127.0.0.1'}, 'proxy_port': {'type': 'string', 'description': 'The proxy port of the browser, eg: 8080'}, 'proxy_soft': {'enum': ['brightdata', 'brightauto', 'oxylabsauto', '922S5auto', 'ipideeauto', 'ipfoxyauto', '922S5auth', 'kookauto', 'ssh', 'other', 'no_proxy'], 'type': 'string', 'description': 'The proxy soft of the browser'}, 'proxy_type': {'enum': ['http', 'https', 'socks5', 'no_proxy'], 'type': 'string'}, 'proxy_user': {'type': 'string', 'description': 'The proxy user of the browser, eg: user'}, 'global_config': {'enum': ['0', '1'], 'type': 'string', 'description': 'The global config of the browser, default is 0'}, 'proxy_password': {'type': 'string', 'description': 'The proxy password of the browser, eg: password'}}, 'description': 'The user proxy config of the browser', 'additionalProperties': False}, 'fingerprintConfig': {'type': 'object', 'properties': {'tls': {'type': 'string', 'description': 'The tls of the browser, if tls_switch is 1, you can set the tls of the browser, eg: "0xC02C,0xC030"'}, 'flash': {'enum': ['block', 'allow'], 'type': 'string', 'description': 'The flash of the browser, default is disabled'}, 'fonts': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The fonts of the browser, eg: ["Arial", "Times New Roman"]'}, 'webrtc': {'enum': ['disabled', 'forward', 'proxy', 'local'], 'type': 'string', 'description': 'The webrtc of the browser, default is disabled'}, 'language': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The language of the browser, eg: ["en-US", "zh-CN"]'}, 'timezone': {'type': 'string', 'description': 'The timezone of the browser, eg: Asia/Shanghai'}, 'random_ua': {'type': 'object', 'properties': {'ua_version': {'type': 'array', 'items': {'type': 'string'}}, 'ua_system_version': {'type': 'array', 'items': {'enum': ['Android 9', 'Android 10', 'Android 11', 'Android 12', 'Android 13', 'iOS 14', 'iOS 15', 'Windows 7', 'Windows 8', 'Windows 10', 'Windows 11', 'Mac OS X 10', 'Mac OS X 11', 'Mac OS X 12', 'Mac OS X 13', 'Linux'], 'type': 'string'}, 'description': 'The ua system version of the browser, eg: ["Android 9", "iOS 14"]'}}, 'description': 'The random ua config of the browser, default is ua_version: [], ua_system_version: []', 'additionalProperties': False}, 'tls_switch': {'enum': ['0', '1'], 'type': 'string', 'description': 'The tls switch of the browser, default is 0'}, 'automatic_timezone': {'enum': ['0', '1'], 'type': 'string', 'description': 'The automatic timezone of the browser, default is 0'}, 'browser_kernel_config': {'type': 'object', 'properties': {'type': {'enum': ['chrome', 'firefox'], 'type': 'string', 'description': 'The type of the browser, default is chrome'}, 'version': {'enum': ['92', '99', '102', '105', '108', '111', '114', '115', '116', '117', '118', '119', '120', '121', '122', '123', '124', '125', '126', '127', '128', '129', '130', '131', '132', '133', '134', 'ua_auto'], 'type': 'string', 'description': 'The version of the browser, default is ua_auto'}}, 'description': 'The browser kernel config of the browser, default is version: ua_auto, type: chrome', 'additionalProperties': False}}, 'description': 'The fingerprint config of the browser, default is automatic_timezone: 0, timezone: "", language: [], flash: "", fonts: [], webrtc: disabled, browser_kernel_config: ua_auto, random_ua: ua_version: [], ua_system_version: [], tls_switch: 0, tls: ""', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'delete-browser', 'description': 'Delete the browser', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['userIds'], 'properties': {'userIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The user ids of the browsers to delete, it is required when you want to delete the browser'}}, 'additionalProperties': False}}, {'name': 'get-browser-list', 'description': 'Get the list of browsers', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'id': {'type': 'string', 'description': 'The id of the browser'}, 'size': {'type': 'number', 'description': 'The size of the page'}, 'sort': {'enum': ['serial_number', 'last_open_time', 'created_time'], 'type': 'string', 'description': 'The sort of the browser'}, 'order': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'The order of the browser'}, 'groupId': {'type': 'string', 'pattern': '^\\d+$', 'description': 'The group id of the browser, must be a numeric string (e.g., "123"). You can use the get-group-list tool to get the group list'}, 'serialNumber': {'type': 'string', 'description': 'The serial number of the browser'}}, 'additionalProperties': False}}, {'name': 'get-opened-browser', 'description': 'Get the list of opened browsers', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'move-browser', 'description': 'Move browsers to a group', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['groupId', 'userIds'], 'properties': {'groupId': {'type': 'string', 'pattern': '^\\d+$', 'description': 'The target group id, must be a numeric string (e.g., "123"). You can use the get-group-list tool to get the group list'}, 'userIds': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The browser ids to move'}}, 'additionalProperties': False}}, {'name': 'create-group', 'description': 'Create a browser group', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['groupName'], 'properties': {'remark': {'type': 'string', 'description': 'The remark of the group'}, 'groupName': {'type': 'string', 'description': 'The name of the group to create'}}, 'additionalProperties': False}}, {'name': 'update-group', 'description': 'Update the browser group', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['groupId', 'groupName'], 'properties': {'remark': {'type': ['string', 'null'], 'description': 'The new remark of the group'}, 'groupId': {'type': 'string', 'pattern': '^\\d+$', 'description': 'The id of the group to update, must be a numeric string (e.g., "123"). You can use the get-group-list tool to get the group list'}, 'groupName': {'type': 'string', 'description': 'The new name of the group'}}, 'additionalProperties': False}}, {'name': 'get-group-list', 'description': 'Get the list of groups', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'name': {'type': 'string', 'description': 'The name of the group'}, 'size': {'type': 'number', 'description': 'The size of the page'}}, 'additionalProperties': False}}, {'name': 'get-application-list', 'description': 'Get the list of applications', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'size': {'type': 'number', 'description': 'The size of the page'}}, 'additionalProperties': False}}]
@comet-ml/opik-mcp-server
Opik MCP Server
Integrate seamlessly with your IDE and access all Opik features through a standardized protocol. Manage prompts, projects, and metrics efficiently with a unified interface. Leverage multiple transport options for flexible integration into various environments.
2025-03-12T10:09:59.732Z
0
https://smithery.ai/server/@comet-ml/opik-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'list-prompts', 'description': 'Get a list of Opik prompts', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['page', 'size'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'size': {'type': 'number', 'description': 'Number of items per page'}}, 'additionalProperties': False}}, {'name': 'create-prompt', 'description': 'Create a new prompt', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the prompt'}}, 'additionalProperties': False}}, {'name': 'create-prompt-version', 'description': 'Create a new version of a prompt', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'template', 'commit_message'], 'properties': {'name': {'type': 'string', 'description': 'Name of the original prompt'}, 'template': {'type': 'string', 'description': 'Template content for the prompt version'}, 'commit_message': {'type': 'string', 'description': 'Commit message for the prompt version'}}, 'additionalProperties': False}}, {'name': 'get-prompt-by-id', 'description': 'Get a single prompt by ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['promptId'], 'properties': {'promptId': {'type': 'string', 'description': 'ID of the prompt to fetch'}}, 'additionalProperties': False}}, {'name': 'update-prompt', 'description': 'Update a prompt', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['promptId', 'name'], 'properties': {'name': {'type': 'string', 'description': 'New name for the prompt'}, 'promptId': {'type': 'string', 'description': 'ID of the prompt to update'}}, 'additionalProperties': False}}, {'name': 'delete-prompt', 'description': 'Delete a prompt', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['promptId'], 'properties': {'promptId': {'type': 'string', 'description': 'ID of the prompt to delete'}}, 'additionalProperties': False}}, {'name': 'list-projects', 'description': 'Get a list of projects/workspaces', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['page', 'size'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'size': {'type': 'number', 'description': 'Number of items per page'}, 'sortBy': {'type': 'string', 'description': 'Sort projects by this field'}, 'sortOrder': {'type': 'string', 'description': 'Sort order (asc or desc)'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'additionalProperties': False}}, {'name': 'get-project-by-id', 'description': 'Get a single project by ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'projectId': {'type': 'string', 'description': 'ID of the project to fetch'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'additionalProperties': False}}, {'name': 'create-project', 'description': 'Create a new project/workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the project'}, 'description': {'type': 'string', 'description': 'Description of the project'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'additionalProperties': False}}, {'name': 'update-project', 'description': 'Update a project', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'name': {'type': 'string', 'description': 'New project name'}, 'projectId': {'type': 'string', 'description': 'ID of the project to update'}, 'description': {'type': 'string', 'description': 'New project description'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'additionalProperties': False}}, {'name': 'delete-project', 'description': 'Delete a project', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'projectId': {'type': 'string', 'description': 'ID of the project to delete'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'additionalProperties': False}}, {'name': 'list-traces', 'description': 'Get a list of traces', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['page', 'size'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'size': {'type': 'number', 'description': 'Number of items per page'}, 'projectId': {'type': 'string', 'description': 'Project ID to filter traces'}, 'projectName': {'type': 'string', 'description': 'Project name to filter traces'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'additionalProperties': False}}, {'name': 'get-trace-by-id', 'description': 'Get a single trace by ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['traceId'], 'properties': {'traceId': {'type': 'string', 'description': 'ID of the trace to fetch'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'additionalProperties': False}}, {'name': 'get-trace-stats', 'description': 'Get statistics for traces', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'endDate': {'type': 'string', 'description': 'End date in ISO format (YYYY-MM-DD)'}, 'projectId': {'type': 'string', 'description': 'Project ID to filter traces'}, 'startDate': {'type': 'string', 'description': 'Start date in ISO format (YYYY-MM-DD)'}, 'projectName': {'type': 'string', 'description': 'Project name to filter traces'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'additionalProperties': False}}, {'name': 'get-metrics', 'description': 'Get metrics data', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'endDate': {'type': 'string', 'description': 'End date in ISO format (YYYY-MM-DD)'}, 'projectId': {'type': 'string', 'description': 'Optional project ID to filter metrics'}, 'startDate': {'type': 'string', 'description': 'Start date in ISO format (YYYY-MM-DD)'}, 'metricName': {'type': 'string', 'description': 'Optional metric name to filter'}, 'projectName': {'type': 'string', 'description': 'Optional project name to filter metrics'}}, 'additionalProperties': False}}, {'name': 'get-server-info', 'description': 'Get information about the Opik server configuration', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'random_string': {'type': 'string', 'description': 'Dummy parameter for no-parameter tools'}}, 'additionalProperties': False}}, {'name': 'get-opik-help', 'description': "Get contextual help about Opik Comet's capabilities", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['topic'], 'properties': {'topic': {'type': 'string', 'description': 'The topic to get help about (prompts, projects, traces, metrics, or general)'}, 'subtopic': {'type': 'string', 'description': 'Optional subtopic for more specific help'}}, 'additionalProperties': False}}, {'name': 'get-opik-examples', 'description': "Get examples of how to use Opik Comet's API for specific tasks", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['task'], 'properties': {'task': {'type': 'string', 'description': "The task to get examples for (e.g., 'create prompt', 'analyze traces', 'monitor costs')"}}, 'additionalProperties': False}}, {'name': 'get-opik-tracing-info', 'description': "Get information about Opik's tracing capabilities and how to use them", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'topic': {'type': 'string', 'description': "Optional specific tracing topic to get information about (e.g., 'spans', 'distributed', 'multimodal', 'annotations')"}}, 'additionalProperties': False}}]
@falahgs/gemini-data-analysis-research-mcp-server
Gemini Data Analysis & Research
Analyze datasets, generate research papers, and automate email delivery with ease. Leverage advanced AI capabilities for insightful data analysis and professional content creation. Streamline your research and reporting processes directly from your data files.
2025-04-14T13:22:32.096Z
0
https://smithery.ai/server/@falahgs/gemini-data-analysis-research-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'generate-thinking', 'description': 'Generate detailed thinking process text using Gemini Flash 2 model', 'inputSchema': {'type': 'object', 'required': ['prompt'], 'properties': {'prompt': {'type': 'string', 'description': 'Prompt for generating thinking process text'}, 'outputDir': {'type': 'string', 'description': 'Directory to save output responses (optional)'}}}}, {'name': 'send-email', 'description': 'Send an email with AI-generated subject using Gemini Flash 2', 'inputSchema': {'type': 'object', 'required': ['to', 'subjectPrompt', 'text'], 'properties': {'to': {'type': 'string', 'description': 'Recipient email address'}, 'html': {'type': 'string', 'description': 'HTML version of the email (optional)'}, 'text': {'type': 'string', 'description': 'Plain text version of the email'}, 'images': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'data'], 'properties': {'data': {'type': 'string', 'description': 'Base64 encoded image data with mime type (data:image/jpeg;base64,...)'}, 'name': {'type': 'string', 'description': 'Image filename'}}}, 'description': 'Images to attach to the email (optional)'}, 'subjectPrompt': {'type': 'string', 'description': 'Prompt for Gemini to generate email subject'}}}}, {'name': 'analyze-data', 'description': 'Analyze Excel/CSV data using EDA and Gemini AI', 'inputSchema': {'type': 'object', 'required': ['fileData', 'fileName', 'analysisType'], 'properties': {'fileData': {'type': 'string', 'description': 'Base64 encoded file data'}, 'fileName': {'type': 'string', 'description': 'Name of the file (must be .xlsx, .xls, or .csv)'}, 'outputDir': {'type': 'string', 'description': 'Directory to save analysis results (optional)'}, 'analysisType': {'enum': ['basic', 'detailed'], 'type': 'string', 'description': 'Type of analysis to perform'}}}}]
@kazuph/mcp-github-pera1
GitHub MCP Server for Pera1
A Model Context Protocol server that connects GitHub code to Claude.ai utilizing the Pera1 service for code extraction.
2024-12-27T11:45:39.615Z
0
https://smithery.ai/server/@kazuph/mcp-github-pera1
true
null
{ "scanPassed": true }
[{'name': 'github_get_code', 'description': '\nRetrieves code from a GitHub repository URL and combines it into a single file. The URL must start with "https://".\n\nQuery Parameters:\n- dir: Filter files by directory paths (comma-separated)\n Example: ?dir=src/components,tests/unit\n- ext: Filter files by extensions (comma-separated)\n Example: ?ext=ts,tsx,js\n- mode: Display mode\n Example: ?mode=tree (Shows directory structure only)\n- branch: Specify the branch to fetch from (optional)\n Example: ?branch=feature/new-feature\n\nExamples:\n1. For GitHub tree URLs with branch:\n https://github.com/kazuph/pera1/tree/feature/great-branch\n This URL will be automatically parsed to extract the branch information.\n\n2. For specific directory in a branch:\n url: https://github.com/modelcontextprotocol/servers\n dir: src/fetch\n branch: develop\n\nThe tool will correctly parse the repository structure and fetch the files from the specified branch.\n', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'dir': {'type': 'string'}, 'ext': {'type': 'string'}, 'url': {'type': 'string', 'format': 'uri'}, 'mode': {'enum': ['tree'], 'type': 'string'}, 'branch': {'type': 'string'}}, 'additionalProperties': False}}]
@kim-geon-admin/mcp
Model Context Protocol Server
Integrate your applications with real-world data and tools seamlessly. Access files, databases, and APIs while leveraging the power of language models to enhance your workflows. Simplify complex interactions and automate tasks with a standardized approach.
2025-04-05T10:32:40.225Z
0
https://smithery.ai/server/@kim-geon-admin/mcp
true
null
{ "scanPassed": true }
[{'name': 'calculate_bmi', 'description': 'Calculate BMI given weight in kg and height in meters', 'inputSchema': {'type': 'object', 'title': 'calculate_bmiArguments', 'required': ['weight_kg', 'height_m'], 'properties': {'height_m': {'type': 'number', 'title': 'Height M'}, 'weight_kg': {'type': 'number', 'title': 'Weight Kg'}}}}, {'name': 'fetch_weather', 'description': 'Fetch current weather for a city', 'inputSchema': {'type': 'object', 'title': 'fetch_weatherArguments', 'required': ['city'], 'properties': {'city': {'type': 'string', 'title': 'City'}}}}]
@FutureUnreal/mcp-pdf2md
PDF to Markdown Conversion Service
Convert PDF files to structured Markdown format effortlessly. Process local files and URLs in batches while preserving the original document structure and layout. Integrate seamlessly with LLM clients for enhanced functionality.
2025-03-21T20:52:59.092Z
0
https://smithery.ai/server/@FutureUnreal/mcp-pdf2md
true
null
{ "scanPassed": true }
[{'name': 'convert_pdf_url', 'description': '\n Convert PDF URL to Markdown, supports single URL or URL list\n \n Args:\n url: PDF file URL or URL list, can be separated by spaces, commas, or newlines\n enable_ocr: Whether to enable OCR (default: True)\n\n Returns:\n dict: Conversion result information\n ', 'inputSchema': {'type': 'object', 'title': 'convert_pdf_urlArguments', 'required': ['url'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'enable_ocr': {'type': 'boolean', 'title': 'Enable Ocr', 'default': True}}}}, {'name': 'convert_pdf_file', 'description': '\n Convert local PDF file to Markdown, supports single file or file list\n \n Args:\n file_path: PDF file local path or path list, can be separated by spaces, commas, or newlines\n enable_ocr: Whether to enable OCR (default: True)\n\n Returns:\n dict: Conversion result information\n ', 'inputSchema': {'type': 'object', 'title': 'convert_pdf_fileArguments', 'required': ['file_path'], 'properties': {'file_path': {'type': 'string', 'title': 'File Path'}, 'enable_ocr': {'type': 'boolean', 'title': 'Enable Ocr', 'default': True}}}}]
@kukapay/crypto-liquidations-mcp
Crypto Liquidations
Stream real-time cryptocurrency liquidation events from Binance to enable AI agents to react instantly to high-volatility market movements. Retrieve and analyze recent liquidation data with easy-to-use tools and prompts for market trend insights. Stay updated with the latest market activity through a live, in-memory event feed.
2025-05-02T08:01:06.700Z
0
https://smithery.ai/server/@kukapay/crypto-liquidations-mcp
true
null
{ "scanPassed": true }
[{'name': 'get_latest_liquidations', 'description': 'Retrieve the latest liquidation events from Binance in a table format.\n\n Args:\n limit (int): The maximum number of liquidation events to return (default: 10, max: 1000).\n ctx (Context, optional): The MCP context for logging and server interaction. Defaults to None.\n\n Returns:\n str: A Markdown table containing the latest liquidation events, sorted by timestamp in descending order.\n ', 'inputSchema': {'type': 'object', '$defs': {'Context': {'type': 'object', 'title': 'Context', 'properties': {}, 'description': 'Context object providing access to MCP capabilities.\n\nThis provides a cleaner interface to MCP\'s RequestContext functionality.\nIt gets injected into tool and resource functions that request it via type hints.\n\nTo use context in a tool function, add a parameter with the Context type annotation:\n\n```python\n@server.tool()\ndef my_tool(x: int, ctx: Context) -> str:\n # Log messages to the client\n ctx.info(f"Processing {x}")\n ctx.debug("Debug info")\n ctx.warning("Warning message")\n ctx.error("Error message")\n\n # Report progress\n ctx.report_progress(50, 100)\n\n # Access resources\n data = ctx.read_resource("resource://data")\n\n # Get request info\n request_id = ctx.request_id\n client_id = ctx.client_id\n\n return str(x)\n```\n\nThe context parameter name can be anything as long as it\'s annotated with Context.\nThe context is optional - tools that don\'t need it can omit the parameter.'}}, 'title': 'get_latest_liquidationsArguments', 'properties': {'ctx': {'anyOf': [{'$ref': '#/$defs/Context'}, {'type': 'null'}], 'default': None}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}}}}]
@kukapay/crypto-portfolio-mcp
Crypto Portfolio
Track and manage your cryptocurrency portfolio allocations effortlessly. Optimize your investment strategies in real-time with AI-driven insights and analysis. Visualize your portfolio's performance and make informed decisions based on current market trends.
2025-04-05T05:00:24.223Z
0
https://smithery.ai/server/@kukapay/crypto-portfolio-mcp
true
null
{ "scanPassed": true }
[{'name': 'get_portfolio_summary', 'description': '\n Get current portfolio summary with total value using Binance prices.\n \n Returns:\n A string containing a formatted summary of all holdings with current\n prices and total portfolio value in USDT.\n \n Example:\n "Portfolio Summary (Binance Prices):\nBTC/USDT: 0.1 @ $60000.00 = $6000.00\nETH/USDT: 2.0 @ $2000.00 = $4000.00\nTotal Value: $10000.00"\n ', 'inputSchema': {'type': 'object', 'title': 'get_portfolio_summaryArguments', 'properties': {}}}, {'name': 'add_holding', 'description': '\n Add a cryptocurrency holding to the portfolio.\n \n Parameters:\n coin_symbol (str): The trading pair symbol (e.g., "BTC/USDT" or "btc").\n If no "/USDT" is provided, it will be appended automatically.\n Case-insensitive.\n amount (float): The quantity of the cryptocurrency to add.\n Must be a positive number.\n \n Returns:\n A confirmation message indicating the holding was added.\n \n Example:\n add_holding("BTC", 0.1) -> "Added 0.1 BTC/USDT to portfolio"\n ', 'inputSchema': {'type': 'object', 'title': 'add_holdingArguments', 'required': ['coin_symbol', 'amount'], 'properties': {'amount': {'type': 'number', 'title': 'Amount'}, 'coin_symbol': {'type': 'string', 'title': 'Coin Symbol'}}}}, {'name': 'get_price', 'description': '\n Get current price for a cryptocurrency from Binance.\n \n Parameters:\n coin_symbol (str): The trading pair symbol (e.g., "ETH/USDT" or "eth").\n If no "/USDT" is provided, it will be appended automatically.\n Case-insensitive.\n \n Returns:\n A string with the current price in USDT.\n \n Example:\n get_price("ETH") -> "Current price of ETH/USDT on Binance: $2000.50"\n ', 'inputSchema': {'type': 'object', 'title': 'get_priceArguments', 'required': ['coin_symbol'], 'properties': {'coin_symbol': {'type': 'string', 'title': 'Coin Symbol'}}}}, {'name': 'portfolio_value_history', 'description': '\n Generate a chart of portfolio value over time using Binance prices.\n \n Parameters:\n ctx (Context): MCP context object for progress reporting.\n Automatically provided by the MCP framework.\n \n Returns:\n An Image object containing a PNG chart of portfolio value history.\n \n Notes:\n - Uses current prices for historical points (simplified implementation)\n - Chart shows value progression as holdings were added\n ', 'inputSchema': {'type': 'object', 'title': 'portfolio_value_historyArguments', 'properties': {}}}]
@cesarvarela/alpaca-mcp
Alpaca Market Data Server
Provide real-time and historical market data along with broker API access as MCP tools. Enable seamless integration of Alpaca's financial data and trading capabilities into your applications. Access asset information, stock bars, market days, and news through standardized MCP tool calls.
2025-04-22T05:00:23.838Z
0
https://smithery.ai/server/@cesarvarela/alpaca-mcp
true
null
{ "scanPassed": true }
[{'name': 'get-assets', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'assetClass': {'enum': ['us_equity', 'crypto'], 'type': 'string', 'default': 'us_equity'}}, 'additionalProperties': False}}, {'name': 'get-stock-bars', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['symbols', 'start', 'end', 'timeframe'], 'properties': {'end': {'type': 'string'}, 'start': {'type': 'string'}, 'symbols': {'type': 'array', 'items': {'type': 'string'}}, 'timeframe': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-market-days', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['start', 'end'], 'properties': {'end': {'type': 'string'}, 'start': {'type': 'string'}}, 'additionalProperties': False}}, {'name': 'get-news', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['start', 'end', 'symbols'], 'properties': {'end': {'type': 'string'}, 'start': {'type': 'string'}, 'symbols': {'type': 'array', 'items': {'type': 'string'}}}, 'additionalProperties': False}}]
@alejandro-ao/mcp-server-example
MCP Server Example
Build a functional server that integrates with various LLM clients. Connect your AI models to different data sources and tools seamlessly. Enhance your applications with standardized capabilities for better data access and manipulation.
2025-03-15T10:00:27.993Z
0
https://smithery.ai/server/@alejandro-ao/mcp-server-example
true
null
{ "scanPassed": true }
[{'name': 'get_docs', 'description': '\n Search the latest docs for a given query and library.\n Supports langchain, openai, and llama-index.\n\n Args:\n query: The query to search for (e.g. "Chroma DB")\n library: The library to search in (e.g. "langchain")\n\n Returns:\n Text from the docs\n ', 'inputSchema': {'type': 'object', 'title': 'get_docsArguments', 'required': ['query', 'library'], 'properties': {'query': {'type': 'string', 'title': 'Query'}, 'library': {'type': 'string', 'title': 'Library'}}}}]
@felores/cloudinary-mcp-server
Cloudinary Server
Upload images and videos to Cloudinary.
2025-01-08T07:07:16.943Z
0
https://smithery.ai/server/@felores/cloudinary-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'upload', 'description': "Upload media (images/videos) to Cloudinary. For large files, the upload is processed in chunks and returns a streaming response. The uploaded asset will be available at:\n- HTTP: http://res.cloudinary.com/{cloud_name}/{resource_type}/upload/v1/{public_id}.{format}\n- HTTPS: https://res.cloudinary.com/{cloud_name}/{resource_type}/upload/v1/{public_id}.{format}\nwhere cloud_name='dadljfaoz', resource_type is 'image' or 'video', and format is determined by the file extension.", 'inputSchema': {'type': 'object', 'required': ['file'], 'properties': {'file': {'type': 'string', 'description': 'Path to file, URL, or base64 data URI to upload'}, 'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Tags to assign to the uploaded asset'}, 'overwrite': {'type': 'boolean', 'description': 'Whether to overwrite existing assets with the same public ID'}, 'public_id': {'type': 'string', 'description': 'Public ID to assign to the uploaded asset. This will be used in the final URL. If not provided, Cloudinary will generate one.'}, 'resource_type': {'enum': ['image', 'video', 'raw'], 'type': 'string', 'description': 'Type of resource to upload. For videos, the upload will return a streaming response as it processes in chunks.'}}}}]
@ko1ynnky/github-actions-mcp-server
GitHub Actions MCP Server
Manage and operate GitHub Actions workflows seamlessly. Trigger, cancel, and analyze workflows with ease, enhancing your automation capabilities. Experience robust error handling and flexible type validation for a smooth integration with GitHub Actions API.
2025-03-20T16:01:01.684Z
0
https://smithery.ai/server/@ko1ynnky/github-actions-mcp-server
true
null
null
[{'name': 'list_workflows', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'perPage': {'type': 'number', 'description': 'Results per page (max 100)'}}, 'additionalProperties': False}}, {'name': 'get_workflow', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'workflowId'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'workflowId': {'type': 'string', 'description': 'The ID of the workflow or filename (string or number)'}}, 'additionalProperties': False}}, {'name': 'get_workflow_usage', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'workflowId'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'workflowId': {'type': 'string', 'description': 'The ID of the workflow or filename (string or number)'}}, 'additionalProperties': False}}, {'name': 'list_workflow_runs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'actor': {'type': 'string', 'description': "Returns someone's workflow runs. Use the login for the user"}, 'event': {'type': 'string', 'description': 'Returns workflow runs triggered by the event'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': 'Returns workflow runs associated with a branch'}, 'status': {'enum': ['completed', 'action_required', 'cancelled', 'failure', 'neutral', 'skipped', 'stale', 'success', 'timed_out', 'in_progress', 'queued', 'requested', 'waiting', 'pending'], 'type': 'string', 'description': 'Returns workflow runs with the check run status'}, 'created': {'type': 'string', 'description': 'Returns workflow runs created within date range (YYYY-MM-DD)'}, 'perPage': {'type': 'number', 'description': 'Results per page (max 100)'}, 'workflowId': {'type': 'string', 'description': 'The ID of the workflow or filename (string or number)'}, 'checkSuiteId': {'type': 'number', 'description': 'Returns workflow runs with the check_suite_id'}, 'excludePullRequests': {'type': 'boolean', 'description': 'If true, pull requests are omitted from the response'}}, 'additionalProperties': False}}, {'name': 'get_workflow_run', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'runId'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'runId': {'type': 'number', 'description': 'The ID of the workflow run'}}, 'additionalProperties': False}}, {'name': 'get_workflow_run_jobs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'runId'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'runId': {'type': 'number', 'description': 'The ID of the workflow run'}, 'filter': {'enum': ['latest', 'all'], 'type': 'string', 'description': 'Filter jobs by their completed_at date'}, 'perPage': {'type': 'number', 'description': 'Results per page (max 100)'}}, 'additionalProperties': False}}, {'name': 'trigger_workflow', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'workflowId', 'ref'], 'properties': {'ref': {'type': 'string', 'description': 'The reference of the workflow run (branch, tag, or SHA)'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'inputs': {'type': 'object', 'description': 'Input parameters for the workflow', 'additionalProperties': {'type': 'string'}}, 'workflowId': {'type': 'string', 'description': 'The ID of the workflow or filename (string or number)'}}, 'additionalProperties': False}}, {'name': 'cancel_workflow_run', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'runId'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'runId': {'type': 'number', 'description': 'The ID of the workflow run'}}, 'additionalProperties': False}}, {'name': 'rerun_workflow', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'runId'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'runId': {'type': 'number', 'description': 'The ID of the workflow run'}}, 'additionalProperties': False}}]
@DynamicEndpoints/paloalto-device-server
Palo Alto Device Server
Manage your Palo Alto firewalls effortlessly through their REST API. Retrieve system information, perform upgrades, and manage certificates with ease. Streamline your firewall operations and ensure your systems are always up-to-date and secure.
2025-03-28T06:59:57.080Z
0
https://smithery.ai/server/@DynamicEndpoints/paloalto-device-server
true
null
{ "scanPassed": true }
[{'name': 'get_system_info', 'description': 'Get system information from the Palo Alto firewall', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'upgrade_firewall', 'description': 'Upgrade the Palo Alto firewall to the latest PAN-OS version', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'upgrade_ha_firewalls_from_panorama', 'description': 'Upgrade PAN-OS on Multiple HA Firewalls through Panorama', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'check_install_content_updates', 'description': 'Automatically Check for and Install Content Updates', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'manage_certificates', 'description': 'Manage certificates on the Palo Alto firewall', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'run_operational_mode_command', 'description': 'Run an operational mode command on the Palo Alto firewall', 'inputSchema': {'type': 'object', 'required': ['command'], 'properties': {'command': {'type': 'string', 'description': 'Command to run'}}}}]
@199-bio/mcp-wait-timer
Wait Timer Server
Introduce deliberate pauses in your workflows to ensure time-dependent operations complete successfully. Use the `wait` tool to instruct your MCP client to pause for a specified duration, preventing premature execution of subsequent steps. Perfect for web automation, command line operations, and API interactions.
2025-03-31T07:00:44.739Z
0
https://smithery.ai/server/@199-bio/mcp-wait-timer
true
null
{ "scanPassed": true }
[{'name': 'wait', 'description': 'Waits for a specified duration in seconds.', 'inputSchema': {'type': 'object', 'required': ['duration_seconds'], 'properties': {'duration_seconds': {'_def': {'checks': [{'kind': 'min', 'value': 0, 'inclusive': False}], 'coerce': True, 'typeName': 'ZodNumber', 'description': 'The number of seconds to wait'}, '~standard': {'vendor': 'zod', 'version': 1}}}}}]
@burtthecoder/mcp-virustotal
VirusTotal Server
MCP server for VirusTotal API integration, providing comprehensive security analysis tools.
2024-12-20T08:44:30.208Z
0
https://smithery.ai/server/@burtthecoder/mcp-virustotal
true
null
{ "scanPassed": true }
[{'name': 'get_url_report', 'description': 'Get a comprehensive URL analysis report including security scan results and key relationships (communicating files, contacted domains/IPs, downloaded files, redirects, threat actors). Returns both the basic security analysis and automatically fetched relationship data.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'url': {'type': 'string', 'format': 'uri', 'description': 'The URL to analyze'}}, 'additionalProperties': False}}, {'name': 'get_url_relationship', 'description': 'Query a specific relationship type for a URL with pagination support. Choose from 17 relationship types including analyses, communicating files, contacted domains/IPs, downloaded files, graphs, referrers, redirects, and threat actors. Useful for detailed investigation of specific relationship types.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url', 'relationship'], 'properties': {'url': {'type': 'string', 'format': 'uri', 'description': 'The URL to get relationships for'}, 'limit': {'type': 'number', 'default': 10, 'maximum': 40, 'minimum': 1}, 'cursor': {'type': 'string'}, 'relationship': {'enum': ['analyses', 'comments', 'communicating_files', 'contacted_domains', 'contacted_ips', 'downloaded_files', 'graphs', 'last_serving_ip_address', 'network_location', 'referrer_files', 'referrer_urls', 'redirecting_urls', 'redirects_to', 'related_comments', 'related_references', 'related_threat_actors', 'submissions'], 'type': 'string', 'description': 'Type of relationship to query'}}, 'additionalProperties': False}}, {'name': 'get_file_report', 'description': 'Get a comprehensive file analysis report using its hash (MD5/SHA-1/SHA-256). Includes detection results, file properties, and key relationships (behaviors, dropped files, network connections, embedded content, threat actors). Returns both the basic analysis and automatically fetched relationship data.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['hash'], 'properties': {'hash': {'type': 'string', 'pattern': '^[a-fA-F0-9]{32,64}$', 'description': 'MD5, SHA-1 or SHA-256 hash of the file'}}, 'additionalProperties': False}}, {'name': 'get_file_relationship', 'description': 'Query a specific relationship type for a file with pagination support. Choose from 41 relationship types including behaviors, network connections, dropped files, embedded content, execution chains, and threat actors. Useful for detailed investigation of specific relationship types.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['hash', 'relationship'], 'properties': {'hash': {'type': 'string', 'pattern': '^[a-fA-F0-9]{32,64}$', 'description': 'MD5, SHA-1 or SHA-256 hash of the file'}, 'limit': {'type': 'number', 'default': 10, 'maximum': 40, 'minimum': 1}, 'cursor': {'type': 'string'}, 'relationship': {'enum': ['analyses', 'behaviours', 'bundled_files', 'carbonblack_children', 'carbonblack_parents', 'ciphered_bundled_files', 'ciphered_parents', 'clues', 'collections', 'comments', 'compressed_parents', 'contacted_domains', 'contacted_ips', 'contacted_urls', 'dropped_files', 'email_attachments', 'email_parents', 'embedded_domains', 'embedded_ips', 'embedded_urls', 'execution_parents', 'graphs', 'itw_domains', 'itw_ips', 'itw_urls', 'memory_pattern_domains', 'memory_pattern_ips', 'memory_pattern_urls', 'overlay_children', 'overlay_parents', 'pcap_children', 'pcap_parents', 'pe_resource_children', 'pe_resource_parents', 'related_references', 'related_threat_actors', 'similar_files', 'submissions', 'screenshots', 'urls_for_embedded_js', 'votes'], 'type': 'string', 'description': 'Type of relationship to query'}}, 'additionalProperties': False}}, {'name': 'get_ip_report', 'description': 'Get a comprehensive IP address analysis report including geolocation, reputation data, and key relationships (communicating files, historical certificates/WHOIS, resolutions). Returns both the basic analysis and automatically fetched relationship data.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ip'], 'properties': {'ip': {'type': 'string', 'anyOf': [{'format': 'ipv4'}, {'format': 'ipv6'}], 'description': 'IP address to analyze'}}, 'additionalProperties': False}}, {'name': 'get_ip_relationship', 'description': 'Query a specific relationship type for an IP address with pagination support. Choose from 12 relationship types including communicating files, historical SSL certificates, WHOIS records, resolutions, and threat actors. Useful for detailed investigation of specific relationship types.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ip', 'relationship'], 'properties': {'ip': {'type': 'string', 'anyOf': [{'format': 'ipv4'}, {'format': 'ipv6'}], 'description': 'IP address to analyze'}, 'limit': {'type': 'number', 'default': 10, 'maximum': 40, 'minimum': 1}, 'cursor': {'type': 'string'}, 'relationship': {'enum': ['comments', 'communicating_files', 'downloaded_files', 'graphs', 'historical_ssl_certificates', 'historical_whois', 'related_comments', 'related_references', 'related_threat_actors', 'referrer_files', 'resolutions', 'urls'], 'type': 'string', 'description': 'Type of relationship to query'}}, 'additionalProperties': False}}, {'name': 'get_domain_report', 'description': 'Get a comprehensive domain analysis report including DNS records, WHOIS data, and key relationships (SSL certificates, subdomains, historical data). Optionally specify which relationships to include in the report. Returns both the basic analysis and relationship data.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domain'], 'properties': {'domain': {'type': 'string', 'pattern': '^([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}$', 'description': 'Domain name to analyze'}, 'relationships': {'type': 'array', 'items': {'enum': ['caa_records', 'cname_records', 'comments', 'communicating_files', 'downloaded_files', 'historical_ssl_certificates', 'historical_whois', 'immediate_parent', 'mx_records', 'ns_records', 'parent', 'referrer_files', 'related_comments', 'related_references', 'related_threat_actors', 'resolutions', 'soa_records', 'siblings', 'subdomains', 'urls', 'user_votes'], 'type': 'string'}, 'description': 'Optional array of relationships to include in the report'}}, 'additionalProperties': False}}]
@idoru/influxdb-mcp-server
InfluxDB MCP Server
Access and manage your InfluxDB time-series data effortlessly. Execute queries, write data, and utilize templates for common operations with ease. Enhance your AI assistants' capabilities by integrating with InfluxDB through a standardized protocol.
2025-03-17T04:00:57.464Z
0
https://smithery.ai/server/@idoru/influxdb-mcp-server
true
null
null
[{'name': 'write-data', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['org', 'bucket', 'data'], 'properties': {'org': {'type': 'string', 'description': 'The organization name'}, 'data': {'type': 'string', 'description': 'Data in InfluxDB line protocol format'}, 'bucket': {'type': 'string', 'description': 'The bucket name'}, 'precision': {'enum': ['ns', 'us', 'ms', 's'], 'type': 'string', 'description': 'Timestamp precision (ns, us, ms, s)'}}, 'additionalProperties': False}}, {'name': 'query-data', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['org', 'query'], 'properties': {'org': {'type': 'string', 'description': 'The organization name'}, 'query': {'type': 'string', 'description': 'Flux query string'}}, 'additionalProperties': False}}, {'name': 'create-bucket', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'orgID'], 'properties': {'name': {'type': 'string', 'description': 'The bucket name'}, 'orgID': {'type': 'string', 'description': 'The organization ID'}, 'retentionPeriodSeconds': {'type': 'number', 'description': 'Retention period in seconds (optional)'}}, 'additionalProperties': False}}, {'name': 'create-org', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'The organization name'}, 'description': {'type': 'string', 'description': 'Organization description (optional)'}}, 'additionalProperties': False}}]
@antonioevans/context7
Context7
Fetch up-to-date, version-specific code documentation and examples directly from source libraries to enhance your prompts. Eliminate outdated code, hallucinated APIs, and generic answers by integrating real-time library docs into your LLM context. Improve coding accuracy and productivity with seamless access to current documentation.
2025-05-04T06:00:26.985Z
0
https://smithery.ai/server/@antonioevans/context7
true
null
{ "scanPassed": true }
[{'name': 'resolve-library-id', 'description': "Resolves a package name to a Context7-compatible library ID and returns a list of matching libraries.\n\nYou MUST call this function before 'get-library-docs' to obtain a valid Context7-compatible library ID.\n\nWhen selecting the best match, consider:\n- Name similarity to the query\n- Description relevance\n- Code Snippet count (documentation coverage)\n- GitHub Stars (popularity)\n\nReturn the selected library ID and explain your choice. If there are multiple good matches, mention this but proceed with the most relevant one.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['libraryName'], 'properties': {'libraryName': {'type': 'string', 'description': 'Library name to search for and retrieve a Context7-compatible library ID.'}}, 'additionalProperties': False}}, {'name': 'get-library-docs', 'description': "Fetches up-to-date documentation for a library. You must call 'resolve-library-id' first to obtain the exact Context7-compatible library ID required to use this tool.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['context7CompatibleLibraryID'], 'properties': {'topic': {'type': 'string', 'description': "Topic to focus documentation on (e.g., 'hooks', 'routing')."}, 'tokens': {'type': 'number', 'description': 'Maximum number of tokens of documentation to retrieve (default: 10000). Higher values provide more context but consume more tokens.'}, 'context7CompatibleLibraryID': {'type': 'string', 'description': "Exact Context7-compatible library ID (e.g., 'mongodb/docs', 'vercel/nextjs') retrieved from 'resolve-library-id'."}}, 'additionalProperties': False}}]
@disler/just-prompt
Just Prompt
Unify your interactions with multiple LLM providers through a single API. Send prompts from strings or files, and receive responses in markdown format, all while managing multiple models in parallel. Simplify your workflow and enhance productivity with seamless integration of various AI models.
2025-03-31T17:00:27.303Z
0
https://smithery.ai/server/@disler/just-prompt
true
null
{ "scanPassed": true }
[{'name': 'prompt', 'description': 'Send a prompt to multiple LLM models', 'inputSchema': {'type': 'object', 'title': 'PromptSchema', 'required': ['text'], 'properties': {'text': {'type': 'string', 'title': 'Text', 'description': 'The prompt text'}, 'models_prefixed_by_provider': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Models Prefixed By Provider', 'default': None, 'description': "List of models with provider prefixes (e.g., 'openai:gpt-4o' or 'o:gpt-4o'). If not provided, uses default models."}}}}, {'name': 'prompt_from_file', 'description': 'Send a prompt from a file to multiple LLM models', 'inputSchema': {'type': 'object', 'title': 'PromptFromFileSchema', 'required': ['file'], 'properties': {'file': {'type': 'string', 'title': 'File', 'description': 'Path to the file containing the prompt'}, 'models_prefixed_by_provider': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Models Prefixed By Provider', 'default': None, 'description': "List of models with provider prefixes (e.g., 'openai:gpt-4o' or 'o:gpt-4o'). If not provided, uses default models."}}}}, {'name': 'prompt_from_file_to_file', 'description': 'Send a prompt from a file to multiple LLM models and save responses to files', 'inputSchema': {'type': 'object', 'title': 'PromptFromFileToFileSchema', 'required': ['file'], 'properties': {'file': {'type': 'string', 'title': 'File', 'description': 'Path to the file containing the prompt'}, 'output_dir': {'type': 'string', 'title': 'Output Dir', 'default': '.', 'description': 'Directory to save the response files to (default: current directory)'}, 'models_prefixed_by_provider': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Models Prefixed By Provider', 'default': None, 'description': "List of models with provider prefixes (e.g., 'openai:gpt-4o' or 'o:gpt-4o'). If not provided, uses default models."}}}}, {'name': 'list_providers', 'description': 'List all available LLM providers', 'inputSchema': {'type': 'object', 'title': 'ListProvidersSchema', 'properties': {}}}, {'name': 'list_models', 'description': 'List all available models for a specific LLM provider', 'inputSchema': {'type': 'object', 'title': 'ListModelsSchema', 'required': ['provider'], 'properties': {'provider': {'type': 'string', 'title': 'Provider', 'description': "Provider to list models for (e.g., 'openai' or 'o')"}}}}]
@Machine-To-Machine/f1-mcp-server
Formula One Racing Data Server
Provide comprehensive Formula One racing data including event schedules, driver details, telemetry, race results, and performance analysis. Enable AI applications to query and analyze F1 data seamlessly. Access detailed session and championship information to enhance motorsport insights.
2025-04-16T21:34:11.336Z
0
https://smithery.ai/server/@Machine-To-Machine/f1-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'get_event_schedule', 'description': 'Get Formula One race calendar for a specific season', 'inputSchema': {'type': 'object', 'required': ['year'], 'properties': {'year': {'type': 'number', 'description': 'Season year (e.g., 2023)'}}}}, {'name': 'get_event_info', 'description': 'Get detailed information about a specific Formula One Grand Prix', 'inputSchema': {'type': 'object', 'required': ['year', 'identifier'], 'properties': {'year': {'type': 'number', 'description': 'Season year (e.g., 2023)'}, 'identifier': {'type': 'string', 'description': "Event name or round number (e.g., 'Monaco' or '7')"}}}}, {'name': 'get_session_results', 'description': 'Get results for a specific Formula One session', 'inputSchema': {'type': 'object', 'required': ['year', 'event_identifier', 'session_name'], 'properties': {'year': {'type': 'number', 'description': 'Season year (e.g., 2023)'}, 'session_name': {'type': 'string', 'description': "Session name (e.g., 'Race', 'Qualifying', 'Sprint', 'FP1', 'FP2', 'FP3')"}, 'event_identifier': {'type': 'string', 'description': "Event name or round number (e.g., 'Monaco' or '7')"}}}}, {'name': 'get_driver_info', 'description': 'Get information about a specific Formula One driver', 'inputSchema': {'type': 'object', 'required': ['year', 'event_identifier', 'session_name', 'driver_identifier'], 'properties': {'year': {'type': 'number', 'description': 'Season year (e.g., 2023)'}, 'session_name': {'type': 'string', 'description': "Session name (e.g., 'Race', 'Qualifying', 'Sprint', 'FP1', 'FP2', 'FP3')"}, 'event_identifier': {'type': 'string', 'description': "Event name or round number (e.g., 'Monaco' or '7')"}, 'driver_identifier': {'type': 'string', 'description': "Driver identifier (number, code, or name; e.g., '44', 'HAM', 'Hamilton')"}}}}, {'name': 'analyze_driver_performance', 'description': "Analyze a driver's performance in a Formula One session", 'inputSchema': {'type': 'object', 'required': ['year', 'event_identifier', 'session_name', 'driver_identifier'], 'properties': {'year': {'type': 'number', 'description': 'Season year (e.g., 2023)'}, 'session_name': {'type': 'string', 'description': "Session name (e.g., 'Race', 'Qualifying', 'Sprint', 'FP1', 'FP2', 'FP3')"}, 'event_identifier': {'type': 'string', 'description': "Event name or round number (e.g., 'Monaco' or '7')"}, 'driver_identifier': {'type': 'string', 'description': "Driver identifier (number, code, or name; e.g., '44', 'HAM', 'Hamilton')"}}}}, {'name': 'compare_drivers', 'description': 'Compare performance between multiple Formula One drivers', 'inputSchema': {'type': 'object', 'required': ['year', 'event_identifier', 'session_name', 'drivers'], 'properties': {'year': {'type': 'number', 'description': 'Season year (e.g., 2023)'}, 'drivers': {'type': 'string', 'description': "Comma-separated list of driver codes (e.g., 'HAM,VER,LEC')"}, 'session_name': {'type': 'string', 'description': "Session name (e.g., 'Race', 'Qualifying', 'Sprint', 'FP1', 'FP2', 'FP3')"}, 'event_identifier': {'type': 'string', 'description': "Event name or round number (e.g., 'Monaco' or '7')"}}}}, {'name': 'get_telemetry', 'description': 'Get telemetry data for a specific Formula One lap', 'inputSchema': {'type': 'object', 'required': ['year', 'event_identifier', 'session_name', 'driver_identifier'], 'properties': {'year': {'type': 'number', 'description': 'Season year (e.g., 2023)'}, 'lap_number': {'type': 'number', 'description': 'Lap number (optional, gets fastest lap if not provided)'}, 'session_name': {'type': 'string', 'description': "Session name (e.g., 'Race', 'Qualifying', 'Sprint', 'FP1', 'FP2', 'FP3')"}, 'event_identifier': {'type': 'string', 'description': "Event name or round number (e.g., 'Monaco' or '7')"}, 'driver_identifier': {'type': 'string', 'description': "Driver identifier (number, code, or name; e.g., '44', 'HAM', 'Hamilton')"}}}}, {'name': 'get_championship_standings', 'description': 'Get Formula One championship standings', 'inputSchema': {'type': 'object', 'required': ['year'], 'properties': {'year': {'type': 'number', 'description': 'Season year (e.g., 2023)'}, 'round_num': {'type': 'number', 'description': 'Round number (optional, gets latest standings if not provided)'}}}}]
@OutreachToday/cold-outreach
Outreach Today MCP
Set up and manage cold outreach email accounts and domains. Build powerful AI sales agents effortlessly. Trusted by 2000+ B2B companies
2025-03-24T16:08:05.599Z
0
https://smithery.ai/server/@OutreachToday/cold-outreach
true
null
{ "scanPassed": true }
[{'name': 'profile', 'description': 'Get the profile for the current user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'current-user-domains', 'description': 'Get the domains for the current user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'check-available-domains', 'description': 'Check if a domain is available', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The domains to check'}}, 'additionalProperties': False}}, {'name': 'save-domains-choice', 'description': 'Save the domains choice', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains', 'workspaceId', 'redirectDomain', 'contactInfo', 'whoisguard'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The domains to save'}, 'whoisguard': {'type': 'boolean', 'description': 'Whether to enable whois guard'}, 'contactInfo': {'type': 'object', 'required': ['first_name', 'last_name', 'real_address', 'city', 'state_province', 'postal_code', 'country', 'phone', 'email_address', 'organization_name', 'job_title'], 'properties': {'city': {'type': 'string', 'description': 'The city of the contact'}, 'phone': {'type': 'string', 'description': 'The phone of the contact'}, 'country': {'type': 'string', 'description': 'The country of the contact'}, 'job_title': {'type': 'string', 'description': 'The job title of the contact'}, 'last_name': {'type': 'string', 'description': 'The last name of the contact'}, 'first_name': {'type': 'string', 'description': 'The first name of the contact'}, 'postal_code': {'type': 'string', 'description': 'The postal code of the contact'}, 'real_address': {'type': 'string', 'description': 'The real address of the contact'}, 'email_address': {'type': 'string', 'description': 'The email address of the contact'}, 'state_province': {'type': 'string', 'description': 'The state province of the contact'}, 'organization_name': {'type': 'string', 'description': 'The organization name of the contact'}}, 'additionalProperties': False}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}, 'redirectDomain': {'type': 'string', 'description': 'The domain to redirect to'}}, 'additionalProperties': False}}, {'name': 'purchase-dns-hosting', 'description': 'Purchase DNS hosting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains', 'numYears', 'workspaceId', 'redirectDomain'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The domains to purchase DNS hosting for'}, 'numYears': {'type': 'number', 'description': 'The number of years to purchase DNS hosting for'}, 'workspaceId': {'type': 'string', 'description': 'The ID of the workspace to purchase DNS hosting for'}, 'redirectDomain': {'type': 'string', 'description': 'The domain to redirect to'}}, 'additionalProperties': False}}, {'name': 'change-domains-redirects', 'description': 'Change the redirects for a domain', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains', 'redirectDomain', 'workspaceId'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The domains to change redirects for'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}, 'redirectDomain': {'type': 'string', 'description': 'The domain to redirect to'}}, 'additionalProperties': False}}, {'name': 'set-domain-dns-records', 'description': 'Set the DNS records for a domain', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domain', 'workspaceId', 'records'], 'properties': {'domain': {'type': 'string', 'description': 'The domain to set the DNS records for'}, 'records': {'type': 'array', 'items': {'type': 'object', 'required': ['Address', 'AssociatedAppTitle', 'FriendlyName', 'HostId', 'IsActive', 'IsDDNSEnabled', 'MXPref', 'Name', 'TTL', 'Type'], 'properties': {'id': {'type': 'number'}, 'TTL': {'type': 'string'}, 'Name': {'type': 'string'}, 'Type': {'type': 'string'}, 'HostId': {'type': 'string'}, 'MXPref': {'type': 'string'}, 'Address': {'type': 'string'}, 'IsActive': {'type': 'string'}, 'FriendlyName': {'type': 'string'}, 'IsDDNSEnabled': {'type': 'string'}, 'AssociatedAppTitle': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'The DNS records to set'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'replace-restricted-domains', 'description': 'Replace the restricted domains with the new domains', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains', 'workspaceId'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'object', 'required': ['old_domain', 'new_domain'], 'properties': {'new_domain': {'type': 'string'}, 'old_domain': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'The domains to replace'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'current-user-mailboxes', 'description': 'Get the mailboxes for the current user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'save-mailbox-choice', 'description': 'Save the mailbox choice', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['mailboxes', 'workspaceId'], 'properties': {'mailboxes': {'type': 'array', 'items': {'type': 'object', 'required': ['address', 'firstName', 'lastName'], 'properties': {'address': {'type': 'string', 'format': 'email'}, 'lastName': {'type': 'string'}, 'firstName': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'The mailboxes to save'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'update-mailboxes', 'description': 'Update the mailboxes', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['mailboxes', 'firstName', 'lastName'], 'properties': {'lastName': {'type': 'string', 'description': 'The last name of the mailbox'}, 'firstName': {'type': 'string', 'description': 'The first name of the mailbox'}, 'forwardTo': {'type': 'string', 'description': 'The forward to of the mailbox'}, 'mailboxes': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The mailboxes to update'}, 'signature': {'type': 'string', 'description': 'The signature of the mailbox'}, 'workspaceId': {'type': 'number', 'description': 'The workspace id'}}, 'additionalProperties': False}}, {'name': 'upgrade-subscription', 'description': 'Upgrade the subscription', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['newMaxMailboxes', 'workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}, 'newMaxMailboxes': {'type': 'number', 'description': 'The new max mailboxes'}}, 'additionalProperties': False}}, {'name': 'api-keys', 'description': 'Get the API keys for the current user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'workspace-credits', 'description': 'Get the credits for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-subscription-status', 'description': 'Get the subscription status for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-invoices', 'description': 'Get the invoices for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'limit'], 'properties': {'limit': {'type': 'number', 'description': 'The limit of invoices to return'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-payment-method', 'description': 'Get the payment method for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-add-user', 'description': 'Add a user to the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'email', 'role'], 'properties': {'role': {'type': 'string', 'description': 'The role of the user'}, 'email': {'type': 'string', 'format': 'email', 'description': 'The email of the user to add'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-delete-user', 'description': 'Delete a user from the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'userId'], 'properties': {'userId': {'type': 'number', 'description': 'The ID of the user to delete'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-update', 'description': 'Update a workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'project_name'], 'properties': {'description': {'type': 'string', 'description': 'The description of the workspace'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace to update'}, 'project_name': {'type': 'string', 'description': 'The name of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-users', 'description': 'Get the users for a workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace to get users for'}}, 'additionalProperties': False}}, {'name': 'workspace-create', 'description': 'Create a workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_name'], 'properties': {'description': {'type': 'string', 'description': 'The description of the workspace'}, 'project_name': {'type': 'string', 'description': 'The name of the workspace'}}, 'additionalProperties': False}}, {'name': 'health-tests', 'description': 'Get the health tests for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'domains-health', 'description': 'Get the health of the domains', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'domains-dns-records', 'description': 'Get the DNS records for the domains', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'domain'], 'properties': {'domain': {'type': 'string', 'description': 'The domain to get the DNS records for'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}]
@OutreachToday/cold-outreach
Outreach Today MCP
Set up and manage cold outreach email accounts and domains. Build powerful AI sales agents effortlessly. Trusted by 2000+ B2B companies
2025-03-24T16:08:05.599Z
0
https://smithery.ai/server/@OutreachToday/cold-outreach
true
null
{ "scanPassed": true }
[{'name': 'profile', 'description': 'Get the profile for the current user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'current-user-domains', 'description': 'Get the domains for the current user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'check-available-domains', 'description': 'Check if a domain is available', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The domains to check'}}, 'additionalProperties': False}}, {'name': 'save-domains-choice', 'description': 'Save the domains choice', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains', 'workspaceId', 'redirectDomain', 'contactInfo', 'whoisguard'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The domains to save'}, 'whoisguard': {'type': 'boolean', 'description': 'Whether to enable whois guard'}, 'contactInfo': {'type': 'object', 'required': ['first_name', 'last_name', 'real_address', 'city', 'state_province', 'postal_code', 'country', 'phone', 'email_address', 'organization_name', 'job_title'], 'properties': {'city': {'type': 'string', 'description': 'The city of the contact'}, 'phone': {'type': 'string', 'description': 'The phone of the contact'}, 'country': {'type': 'string', 'description': 'The country of the contact'}, 'job_title': {'type': 'string', 'description': 'The job title of the contact'}, 'last_name': {'type': 'string', 'description': 'The last name of the contact'}, 'first_name': {'type': 'string', 'description': 'The first name of the contact'}, 'postal_code': {'type': 'string', 'description': 'The postal code of the contact'}, 'real_address': {'type': 'string', 'description': 'The real address of the contact'}, 'email_address': {'type': 'string', 'description': 'The email address of the contact'}, 'state_province': {'type': 'string', 'description': 'The state province of the contact'}, 'organization_name': {'type': 'string', 'description': 'The organization name of the contact'}}, 'additionalProperties': False}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}, 'redirectDomain': {'type': 'string', 'description': 'The domain to redirect to'}}, 'additionalProperties': False}}, {'name': 'purchase-dns-hosting', 'description': 'Purchase DNS hosting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains', 'numYears', 'workspaceId', 'redirectDomain'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The domains to purchase DNS hosting for'}, 'numYears': {'type': 'number', 'description': 'The number of years to purchase DNS hosting for'}, 'workspaceId': {'type': 'string', 'description': 'The ID of the workspace to purchase DNS hosting for'}, 'redirectDomain': {'type': 'string', 'description': 'The domain to redirect to'}}, 'additionalProperties': False}}, {'name': 'change-domains-redirects', 'description': 'Change the redirects for a domain', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains', 'redirectDomain', 'workspaceId'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The domains to change redirects for'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}, 'redirectDomain': {'type': 'string', 'description': 'The domain to redirect to'}}, 'additionalProperties': False}}, {'name': 'set-domain-dns-records', 'description': 'Set the DNS records for a domain', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domain', 'workspaceId', 'records'], 'properties': {'domain': {'type': 'string', 'description': 'The domain to set the DNS records for'}, 'records': {'type': 'array', 'items': {'type': 'object', 'required': ['Address', 'AssociatedAppTitle', 'FriendlyName', 'HostId', 'IsActive', 'IsDDNSEnabled', 'MXPref', 'Name', 'TTL', 'Type'], 'properties': {'id': {'type': 'number'}, 'TTL': {'type': 'string'}, 'Name': {'type': 'string'}, 'Type': {'type': 'string'}, 'HostId': {'type': 'string'}, 'MXPref': {'type': 'string'}, 'Address': {'type': 'string'}, 'IsActive': {'type': 'string'}, 'FriendlyName': {'type': 'string'}, 'IsDDNSEnabled': {'type': 'string'}, 'AssociatedAppTitle': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'The DNS records to set'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'replace-restricted-domains', 'description': 'Replace the restricted domains with the new domains', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains', 'workspaceId'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'object', 'required': ['old_domain', 'new_domain'], 'properties': {'new_domain': {'type': 'string'}, 'old_domain': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'The domains to replace'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'current-user-mailboxes', 'description': 'Get the mailboxes for the current user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'save-mailbox-choice', 'description': 'Save the mailbox choice', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['mailboxes', 'workspaceId'], 'properties': {'mailboxes': {'type': 'array', 'items': {'type': 'object', 'required': ['address', 'firstName', 'lastName'], 'properties': {'address': {'type': 'string', 'format': 'email'}, 'lastName': {'type': 'string'}, 'firstName': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'The mailboxes to save'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'update-mailboxes', 'description': 'Update the mailboxes', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['mailboxes', 'firstName', 'lastName'], 'properties': {'lastName': {'type': 'string', 'description': 'The last name of the mailbox'}, 'firstName': {'type': 'string', 'description': 'The first name of the mailbox'}, 'forwardTo': {'type': 'string', 'description': 'The forward to of the mailbox'}, 'mailboxes': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The mailboxes to update'}, 'signature': {'type': 'string', 'description': 'The signature of the mailbox'}, 'workspaceId': {'type': 'number', 'description': 'The workspace id'}}, 'additionalProperties': False}}, {'name': 'upgrade-subscription', 'description': 'Upgrade the subscription', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['newMaxMailboxes', 'workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}, 'newMaxMailboxes': {'type': 'number', 'description': 'The new max mailboxes'}}, 'additionalProperties': False}}, {'name': 'api-keys', 'description': 'Get the API keys for the current user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'workspace-credits', 'description': 'Get the credits for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-subscription-status', 'description': 'Get the subscription status for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-invoices', 'description': 'Get the invoices for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'limit'], 'properties': {'limit': {'type': 'number', 'description': 'The limit of invoices to return'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-payment-method', 'description': 'Get the payment method for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-add-user', 'description': 'Add a user to the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'email', 'role'], 'properties': {'role': {'type': 'string', 'description': 'The role of the user'}, 'email': {'type': 'string', 'format': 'email', 'description': 'The email of the user to add'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-delete-user', 'description': 'Delete a user from the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'userId'], 'properties': {'userId': {'type': 'number', 'description': 'The ID of the user to delete'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-update', 'description': 'Update a workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'project_name'], 'properties': {'description': {'type': 'string', 'description': 'The description of the workspace'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace to update'}, 'project_name': {'type': 'string', 'description': 'The name of the workspace'}}, 'additionalProperties': False}}, {'name': 'workspace-users', 'description': 'Get the users for a workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace to get users for'}}, 'additionalProperties': False}}, {'name': 'workspace-create', 'description': 'Create a workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['project_name'], 'properties': {'description': {'type': 'string', 'description': 'The description of the workspace'}, 'project_name': {'type': 'string', 'description': 'The name of the workspace'}}, 'additionalProperties': False}}, {'name': 'health-tests', 'description': 'Get the health tests for the workspace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'domains-health', 'description': 'Get the health of the domains', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId'], 'properties': {'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}, {'name': 'domains-dns-records', 'description': 'Get the DNS records for the domains', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['workspaceId', 'domain'], 'properties': {'domain': {'type': 'string', 'description': 'The domain to get the DNS records for'}, 'workspaceId': {'type': 'number', 'description': 'The ID of the workspace'}}, 'additionalProperties': False}}]
@akiojin/playfab-mcp-server
PlayFab Server
Connect your AI assistant with PlayFab services to access item searches, player profiles, and segment information seamlessly. Enable natural interactions with PlayFab data through your LLM client. Start leveraging PlayFab functionalities effortlessly with this middleware solution.
2025-04-02T09:01:02.869Z
0
https://smithery.ai/server/@akiojin/playfab-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'search_items', 'description': 'PlayFab search items', 'inputSchema': {'type': 'object', 'required': ['count'], 'properties': {'count': {'type': 'number', 'description': 'Number of items to retrieve. This value is optional. Maximum page size is 50. Default value is 10.'}, 'filter': {'type': 'string', 'description': 'An OData filter used to refine the search query (For example: "type eq \'ugc\'"). More info about Filter Complexity limits can be found here: https://learn.microsoft.com/en-us/gaming/playfab/features/economy-v2/catalog/search#limits'}, 'search': {'type': 'string', 'description': 'The text to search for.'}, 'orderBy': {'type': 'string', 'description': 'An OData orderBy used to order the results of the search query. For example: "rating/average asc"'}, 'continuationToken': {'type': 'string', 'description': 'An opaque token used to retrieve the next page of items, if any are available.'}}}}, {'name': 'get_all_segments', 'description': 'PlayFab get all segments', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'get_players_in_segments', 'description': 'Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being called 30 times in one minute. You will be returned an error if you exceed this threshold.', 'inputSchema': {'type': 'object', 'required': ['segmentId'], 'properties': {'segmentId': {'type': 'string', 'description': 'The ID of the segment to retrieve players from.'}, 'continuationToken': {'type': 'string', 'description': 'An opaque token used to retrieve the next page of items, if any are available.'}}}}]
@akiojin/playfab-mcp-server
PlayFab Server
Connect your AI assistant with PlayFab services to access item searches, player profiles, and segment information seamlessly. Enable natural interactions with PlayFab data through your LLM client. Start leveraging PlayFab functionalities effortlessly with this middleware solution.
2025-04-02T09:01:02.869Z
0
https://smithery.ai/server/@akiojin/playfab-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'search_items', 'description': 'PlayFab search items', 'inputSchema': {'type': 'object', 'required': ['count'], 'properties': {'count': {'type': 'number', 'description': 'Number of items to retrieve. This value is optional. Maximum page size is 50. Default value is 10.'}, 'filter': {'type': 'string', 'description': 'An OData filter used to refine the search query (For example: "type eq \'ugc\'"). More info about Filter Complexity limits can be found here: https://learn.microsoft.com/en-us/gaming/playfab/features/economy-v2/catalog/search#limits'}, 'search': {'type': 'string', 'description': 'The text to search for.'}, 'orderBy': {'type': 'string', 'description': 'An OData orderBy used to order the results of the search query. For example: "rating/average asc"'}, 'continuationToken': {'type': 'string', 'description': 'An opaque token used to retrieve the next page of items, if any are available.'}}}}, {'name': 'get_all_segments', 'description': 'PlayFab get all segments', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'get_players_in_segments', 'description': 'Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being called 30 times in one minute. You will be returned an error if you exceed this threshold.', 'inputSchema': {'type': 'object', 'required': ['segmentId'], 'properties': {'segmentId': {'type': 'string', 'description': 'The ID of the segment to retrieve players from.'}, 'continuationToken': {'type': 'string', 'description': 'An opaque token used to retrieve the next page of items, if any are available.'}}}}]
@mhazarabad/email-mcp
Email Automation Server
Automate email operations by sending emails and searching mailboxes programmatically using SMTP and IMAP protocols. Easily integrate with Gmail and other email providers to manage your email workflows efficiently. Simplify email management tasks within your applications or agents.
2025-05-01T10:08:33.299Z
0
https://smithery.ai/server/@mhazarabad/email-mcp
true
null
{ "scanPassed": false }
[{'name': 'send_email', 'description': 'Send an email using SMTP.\n\nParameters:\n- to_email (string, required): The recipient\'s email address. Example: "recipient@example.com"\n- subject (string, required): The subject line of the email. Example: "Meeting Reminder"\n- body (string, required): The content of the email message. Can be plain text.\n- cc (string, optional): List of email addresses to CC. Example: "cc1@example.com, cc2@example.com"\n\nReturns:\n- Confirmation message if the email was sent successfully\n- Error message if the email failed to send\n\nExample usage:\n- Send a simple email: to_email="john@example.com", subject="Hello", body="This is a test email" (MUST be in HTML format)\n- Send with CC: to_email="john@example.com", subject="Meeting", body="Please join" (MUST be in HTML format), cc="team@example.com, team2@example.com"', 'inputSchema': {'type': 'object', 'title': 'send_emailArguments', 'required': ['to_email', 'subject', 'body'], 'properties': {'cc': {'type': 'string', 'title': 'Cc', 'default': '', 'description': "List of email addresses to CC. Example: 'cc1@example.com, cc2@example.com'"}, 'body': {'type': 'string', 'title': 'Body', 'description': 'The content of the email message. MUST be in HTML format.'}, 'subject': {'type': 'string', 'title': 'Subject', 'description': "The subject line of the email. Example: 'Meeting Reminder'"}, 'to_email': {'type': 'string', 'title': 'To Email', 'description': "The recipient's email addresses. Example: 'recipient@example.com, recipient2@example.com'"}}}}, {'name': 'search_mailbox', 'description': 'Search emails in a mailbox using IMAP.\n\nParameters:\n- search_criteria (list of strings, required): The search criteria for the emails. See detailed options below.\n- folder (string, optional): The mailbox folder to search in. Default is "INBOX".\n- limit (integer, optional): Maximum number of results to return. Default is 10.\n\nAvailable search criteria:\n\nBasic Search:\n- ALL - return all messages\n- NEW - match new messages\n- OLD - match old messages\n- RECENT - match messages with the \\RECENT flag set\n\nMessage Status:\n- ANSWERED - match messages with the \\ANSWERED flag set\n- DELETED - match deleted messages\n- FLAGGED - match messages with the \\FLAGGED flag set\n- SEEN - match messages that have been read\n- UNANSWERED - match messages that have not been answered\n- UNDELETED - match messages that are not deleted\n- UNFLAGGED - match messages that are not flagged\n- UNSEEN - match messages which have not been read yet\n\nHeader Fields:\n- BCC "string" - match messages with "string" in the Bcc: field\n- CC "string" - match messages with "string" in the Cc: field\n- FROM "string" - match messages with "string" in the From: field\n- SUBJECT "string" - match messages with "string" in the Subject:\n- TO "string" - match messages with "string" in the To:\n\nContent Search:\n- BODY "string" - match messages with "string" in the body\n- TEXT "string" - match messages with text "string"\n\nDate Search:\n- BEFORE "date" - match messages with Date: before "date"\n- ON "date" - match messages with Date: matching "date"\n- SINCE "date" - match messages with Date: after "date"\n\nKeywords:\n- KEYWORD "string" - match messages with "string" as a keyword\n- UNKEYWORD "string" - match messages that do not have the keyword "string"\n\nReturns:\n- List of matching emails with their details (from, to, subject, date, and body preview)\n- Error message if the search failed\n\nExample usage:\n- Search unread emails: search_criteria="UNSEEN"\n- Search by subject: search_criteria="SUBJECT \'Meeting\'"\n- Search by sender: search_criteria="FROM \'john@example.com\'"\n- Search recent emails: search_criteria="SINCE \'01-Jan-2024\'"\n- Search in specific folder: search_criteria="UNSEEN", folder="Work"\n- Limit results: search_criteria="ALL", limit=5', 'inputSchema': {'type': 'object', 'title': 'search_mailboxArguments', 'required': ['search_criteria'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10, 'description': 'Maximum number of results to return. Default is 10'}, 'folder': {'type': 'string', 'title': 'Folder', 'default': 'INBOX', 'description': "The mailbox folder to search in. Default is 'INBOX'"}, 'search_criteria': {'type': 'array', 'items': {}, 'title': 'Search Criteria', 'description': 'The search criteria for the emails in a list of strings. Available options:\n\nBasic Search:\n- ALL - return all messages\n- NEW - match new messages\n- OLD - match old messages\n- RECENT - match messages with the \\RECENT flag set\n\nMessage Status:\n- ANSWERED - match messages with the \\ANSWERED flag set\n- DELETED - match deleted messages\n- FLAGGED - match messages with the \\FLAGGED flag set\n- SEEN - match messages that have been read\n- UNANSWERED - match messages that have not been answered\n- UNDELETED - match messages that are not deleted\n- UNFLAGGED - match messages that are not flagged\n- UNSEEN - match messages which have not been read yet\n\nHeader Fields:\n- BCC "string" - match messages with "string" in the Bcc: field\n- CC "string" - match messages with "string" in the Cc: field\n- FROM "string" - match messages with "string" in the From: field\n- SUBJECT "string" - match messages with "string" in the Subject:\n- TO "string" - match messages with "string" in the To:\n\nContent Search:\n- BODY "string" - match messages with "string" in the body\n- TEXT "string" - match messages with text "string"\n\nDate Search:\n- BEFORE "date" - match messages with Date: before "date"\n- ON "date" - match messages with Date: matching "date"\n- SINCE "date" - match messages with Date: after "date"\n\nKeywords:\n- KEYWORD "string" - match messages with "string" as a keyword\n- UNKEYWORD "string" - match messages that do not have the keyword "string"\n\nEXAMPLE:\n- ["SUBJECT", "some subject"]\n- ["FROM", "john@example.com"]\n- ["SINCE", "01-Jan-2024"]\n- ["UNSEEN"]\n- ["FLAGGED"]\n- ["TEXT", "some text"]'}}}}]
@mhazarabad/email-mcp
Email Automation Server
Automate email operations by sending emails and searching mailboxes programmatically using SMTP and IMAP protocols. Easily integrate with Gmail and other email providers to manage your email workflows efficiently. Simplify email management tasks within your applications or agents.
2025-05-01T10:08:33.299Z
0
https://smithery.ai/server/@mhazarabad/email-mcp
true
null
{ "scanPassed": false }
[{'name': 'send_email', 'description': 'Send an email using SMTP.\n\nParameters:\n- to_email (string, required): The recipient\'s email address. Example: "recipient@example.com"\n- subject (string, required): The subject line of the email. Example: "Meeting Reminder"\n- body (string, required): The content of the email message. Can be plain text.\n- cc (string, optional): List of email addresses to CC. Example: "cc1@example.com, cc2@example.com"\n\nReturns:\n- Confirmation message if the email was sent successfully\n- Error message if the email failed to send\n\nExample usage:\n- Send a simple email: to_email="john@example.com", subject="Hello", body="This is a test email" (MUST be in HTML format)\n- Send with CC: to_email="john@example.com", subject="Meeting", body="Please join" (MUST be in HTML format), cc="team@example.com, team2@example.com"', 'inputSchema': {'type': 'object', 'title': 'send_emailArguments', 'required': ['to_email', 'subject', 'body'], 'properties': {'cc': {'type': 'string', 'title': 'Cc', 'default': '', 'description': "List of email addresses to CC. Example: 'cc1@example.com, cc2@example.com'"}, 'body': {'type': 'string', 'title': 'Body', 'description': 'The content of the email message. MUST be in HTML format.'}, 'subject': {'type': 'string', 'title': 'Subject', 'description': "The subject line of the email. Example: 'Meeting Reminder'"}, 'to_email': {'type': 'string', 'title': 'To Email', 'description': "The recipient's email addresses. Example: 'recipient@example.com, recipient2@example.com'"}}}}, {'name': 'search_mailbox', 'description': 'Search emails in a mailbox using IMAP.\n\nParameters:\n- search_criteria (list of strings, required): The search criteria for the emails. See detailed options below.\n- folder (string, optional): The mailbox folder to search in. Default is "INBOX".\n- limit (integer, optional): Maximum number of results to return. Default is 10.\n\nAvailable search criteria:\n\nBasic Search:\n- ALL - return all messages\n- NEW - match new messages\n- OLD - match old messages\n- RECENT - match messages with the \\RECENT flag set\n\nMessage Status:\n- ANSWERED - match messages with the \\ANSWERED flag set\n- DELETED - match deleted messages\n- FLAGGED - match messages with the \\FLAGGED flag set\n- SEEN - match messages that have been read\n- UNANSWERED - match messages that have not been answered\n- UNDELETED - match messages that are not deleted\n- UNFLAGGED - match messages that are not flagged\n- UNSEEN - match messages which have not been read yet\n\nHeader Fields:\n- BCC "string" - match messages with "string" in the Bcc: field\n- CC "string" - match messages with "string" in the Cc: field\n- FROM "string" - match messages with "string" in the From: field\n- SUBJECT "string" - match messages with "string" in the Subject:\n- TO "string" - match messages with "string" in the To:\n\nContent Search:\n- BODY "string" - match messages with "string" in the body\n- TEXT "string" - match messages with text "string"\n\nDate Search:\n- BEFORE "date" - match messages with Date: before "date"\n- ON "date" - match messages with Date: matching "date"\n- SINCE "date" - match messages with Date: after "date"\n\nKeywords:\n- KEYWORD "string" - match messages with "string" as a keyword\n- UNKEYWORD "string" - match messages that do not have the keyword "string"\n\nReturns:\n- List of matching emails with their details (from, to, subject, date, and body preview)\n- Error message if the search failed\n\nExample usage:\n- Search unread emails: search_criteria="UNSEEN"\n- Search by subject: search_criteria="SUBJECT \'Meeting\'"\n- Search by sender: search_criteria="FROM \'john@example.com\'"\n- Search recent emails: search_criteria="SINCE \'01-Jan-2024\'"\n- Search in specific folder: search_criteria="UNSEEN", folder="Work"\n- Limit results: search_criteria="ALL", limit=5', 'inputSchema': {'type': 'object', 'title': 'search_mailboxArguments', 'required': ['search_criteria'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10, 'description': 'Maximum number of results to return. Default is 10'}, 'folder': {'type': 'string', 'title': 'Folder', 'default': 'INBOX', 'description': "The mailbox folder to search in. Default is 'INBOX'"}, 'search_criteria': {'type': 'array', 'items': {}, 'title': 'Search Criteria', 'description': 'The search criteria for the emails in a list of strings. Available options:\n\nBasic Search:\n- ALL - return all messages\n- NEW - match new messages\n- OLD - match old messages\n- RECENT - match messages with the \\RECENT flag set\n\nMessage Status:\n- ANSWERED - match messages with the \\ANSWERED flag set\n- DELETED - match deleted messages\n- FLAGGED - match messages with the \\FLAGGED flag set\n- SEEN - match messages that have been read\n- UNANSWERED - match messages that have not been answered\n- UNDELETED - match messages that are not deleted\n- UNFLAGGED - match messages that are not flagged\n- UNSEEN - match messages which have not been read yet\n\nHeader Fields:\n- BCC "string" - match messages with "string" in the Bcc: field\n- CC "string" - match messages with "string" in the Cc: field\n- FROM "string" - match messages with "string" in the From: field\n- SUBJECT "string" - match messages with "string" in the Subject:\n- TO "string" - match messages with "string" in the To:\n\nContent Search:\n- BODY "string" - match messages with "string" in the body\n- TEXT "string" - match messages with text "string"\n\nDate Search:\n- BEFORE "date" - match messages with Date: before "date"\n- ON "date" - match messages with Date: matching "date"\n- SINCE "date" - match messages with Date: after "date"\n\nKeywords:\n- KEYWORD "string" - match messages with "string" as a keyword\n- UNKEYWORD "string" - match messages that do not have the keyword "string"\n\nEXAMPLE:\n- ["SUBJECT", "some subject"]\n- ["FROM", "john@example.com"]\n- ["SINCE", "01-Jan-2024"]\n- ["UNSEEN"]\n- ["FLAGGED"]\n- ["TEXT", "some text"]'}}}}]
@dragonkhoi/ramp-mcp
Ramp MCP
Access your Ramp data seamlessly from any MCP client. Interact with your credit card transactions and spend management tools effortlessly. Enhance your financial insights with a simple command interface.
2025-03-12T23:10:54.775Z
0
https://smithery.ai/server/@dragonkhoi/ramp-mcp
true
null
{ "scanPassed": true }
[{'name': 'get_credit_card_transactions', 'description': 'Retrieve information about your Ramp credit card transactions.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'start': {'type': 'string'}, 'state': {'type': 'string'}, 'card_id': {'type': 'string', 'format': 'uuid'}, 'to_date': {'type': 'string', 'format': 'date-time'}, 'trip_id': {'type': 'string', 'format': 'uuid'}, 'user_id': {'type': 'string', 'format': 'uuid'}, 'limit_id': {'type': 'string', 'format': 'uuid'}, 'entity_id': {'type': 'string', 'format': 'uuid'}, 'from_date': {'type': 'string', 'format': 'date-time'}, 'page_size': {'type': 'number'}, 'max_amount': {'type': ['string', 'number']}, 'min_amount': {'type': ['string', 'number']}, 'sync_ready': {'type': 'boolean'}, 'location_id': {'type': 'string', 'format': 'uuid'}, 'merchant_id': {'type': 'string', 'format': 'uuid'}, 'statement_id': {'type': 'string', 'format': 'uuid'}, 'synced_after': {'type': 'string', 'format': 'date-time'}, 'department_id': {'type': 'string', 'format': 'uuid'}, 'requires_memo': {'type': 'boolean'}, 'sk_category_id': {'type': 'string'}, 'order_by_date_asc': {'type': 'boolean'}, 'order_by_date_desc': {'type': 'boolean'}, 'has_no_sync_commits': {'type': 'boolean'}, 'order_by_amount_asc': {'type': 'boolean'}, 'order_by_amount_desc': {'type': 'boolean'}, 'include_merchant_data': {'type': 'boolean'}}, 'additionalProperties': False}}, {'name': 'get_ramp_statements', 'description': 'Retrieve Ramp statements with optional date filtering and pagination.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'start': {'type': 'string', 'description': 'Token for pagination'}, 'to_date': {'type': 'string', 'description': 'End date in ISO format (YYYY-MM-DD)'}, 'from_date': {'type': 'string', 'description': 'Start date in ISO format (YYYY-MM-DD)'}, 'page_size': {'type': 'number', 'description': 'Number of results per page'}}, 'additionalProperties': False}}]
@dragonkhoi/ramp-mcp
Ramp MCP
Access your Ramp data seamlessly from any MCP client. Interact with your credit card transactions and spend management tools effortlessly. Enhance your financial insights with a simple command interface.
2025-03-12T23:10:54.775Z
0
https://smithery.ai/server/@dragonkhoi/ramp-mcp
true
null
{ "scanPassed": true }
[{'name': 'get_credit_card_transactions', 'description': 'Retrieve information about your Ramp credit card transactions.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'start': {'type': 'string'}, 'state': {'type': 'string'}, 'card_id': {'type': 'string', 'format': 'uuid'}, 'to_date': {'type': 'string', 'format': 'date-time'}, 'trip_id': {'type': 'string', 'format': 'uuid'}, 'user_id': {'type': 'string', 'format': 'uuid'}, 'limit_id': {'type': 'string', 'format': 'uuid'}, 'entity_id': {'type': 'string', 'format': 'uuid'}, 'from_date': {'type': 'string', 'format': 'date-time'}, 'page_size': {'type': 'number'}, 'max_amount': {'type': ['string', 'number']}, 'min_amount': {'type': ['string', 'number']}, 'sync_ready': {'type': 'boolean'}, 'location_id': {'type': 'string', 'format': 'uuid'}, 'merchant_id': {'type': 'string', 'format': 'uuid'}, 'statement_id': {'type': 'string', 'format': 'uuid'}, 'synced_after': {'type': 'string', 'format': 'date-time'}, 'department_id': {'type': 'string', 'format': 'uuid'}, 'requires_memo': {'type': 'boolean'}, 'sk_category_id': {'type': 'string'}, 'order_by_date_asc': {'type': 'boolean'}, 'order_by_date_desc': {'type': 'boolean'}, 'has_no_sync_commits': {'type': 'boolean'}, 'order_by_amount_asc': {'type': 'boolean'}, 'order_by_amount_desc': {'type': 'boolean'}, 'include_merchant_data': {'type': 'boolean'}}, 'additionalProperties': False}}, {'name': 'get_ramp_statements', 'description': 'Retrieve Ramp statements with optional date filtering and pagination.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'start': {'type': 'string', 'description': 'Token for pagination'}, 'to_date': {'type': 'string', 'description': 'End date in ISO format (YYYY-MM-DD)'}, 'from_date': {'type': 'string', 'description': 'Start date in ISO format (YYYY-MM-DD)'}, 'page_size': {'type': 'number', 'description': 'Number of results per page'}}, 'additionalProperties': False}}]
@EthanKang1/ynab-mcp
YNAB MCP
Provide seamless access to your YNAB budget data through MCP-enabled clients. Retrieve user info, budgets, categories, and detailed budget settings to enhance your financial workflows. Empower your applications with real-time budget insights and transaction data.
2025-04-20T01:47:21.512Z
0
https://smithery.ai/server/@EthanKang1/ynab-mcp
true
null
null
[{'name': 'GetUser', 'description': 'Retrieves information about the authenticated YNAB user, including user ID and email.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'ListBudgets', 'description': 'Lists all budgets accessible to the authenticated user, including budget IDs and names.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'GetBudget', 'description': 'Retrieves detailed information about a specific budget, including transactions, categories, and balances. The API returns monetary amounts in milliunits (e.g., 1000 = $1.00). Supports optional date filtering and transaction limiting.', 'inputSchema': {'type': 'object', 'required': ['budget_id'], 'properties': {'end_date': {'type': 'string', 'default': 'current_month_end', 'description': 'End date in YYYY-MM-DD format (client-side filter)'}, 'budget_id': {'type': 'string', 'description': 'The ID of the budget to fetch'}, 'start_date': {'type': 'string', 'default': 'current_month_start', 'description': 'Start date in YYYY-MM-DD format (client-side filter)'}, 'max_transactions': {'type': 'number', 'default': '10', 'description': 'Number of transactions to return'}}}}, {'name': 'GetBudgetCategories', 'description': 'Retrieves all categories defined in the specified budget, including category groups, names, and IDs.', 'inputSchema': {'type': 'object', 'required': ['budget_id'], 'properties': {'budget_id': {'type': 'string', 'description': 'The ID of the budget to fetch'}}}}, {'name': 'GetBudgetSettings', 'description': 'Retrieves settings for the specified budget, including currency format, date format, and other preferences.', 'inputSchema': {'type': 'object', 'required': ['budget_id'], 'properties': {'budget_id': {'type': 'string', 'description': 'The ID of the budget to fetch settings for'}}}}]
@EthanKang1/ynab-mcp
YNAB MCP
Provide seamless access to your YNAB budget data through MCP-enabled clients. Retrieve user info, budgets, categories, and detailed budget settings to enhance your financial workflows. Empower your applications with real-time budget insights and transaction data.
2025-04-20T01:47:21.512Z
0
https://smithery.ai/server/@EthanKang1/ynab-mcp
true
null
null
[{'name': 'GetUser', 'description': 'Retrieves information about the authenticated YNAB user, including user ID and email.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'ListBudgets', 'description': 'Lists all budgets accessible to the authenticated user, including budget IDs and names.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'GetBudget', 'description': 'Retrieves detailed information about a specific budget, including transactions, categories, and balances. The API returns monetary amounts in milliunits (e.g., 1000 = $1.00). Supports optional date filtering and transaction limiting.', 'inputSchema': {'type': 'object', 'required': ['budget_id'], 'properties': {'end_date': {'type': 'string', 'default': 'current_month_end', 'description': 'End date in YYYY-MM-DD format (client-side filter)'}, 'budget_id': {'type': 'string', 'description': 'The ID of the budget to fetch'}, 'start_date': {'type': 'string', 'default': 'current_month_start', 'description': 'Start date in YYYY-MM-DD format (client-side filter)'}, 'max_transactions': {'type': 'number', 'default': '10', 'description': 'Number of transactions to return'}}}}, {'name': 'GetBudgetCategories', 'description': 'Retrieves all categories defined in the specified budget, including category groups, names, and IDs.', 'inputSchema': {'type': 'object', 'required': ['budget_id'], 'properties': {'budget_id': {'type': 'string', 'description': 'The ID of the budget to fetch'}}}}, {'name': 'GetBudgetSettings', 'description': 'Retrieves settings for the specified budget, including currency format, date format, and other preferences.', 'inputSchema': {'type': 'object', 'required': ['budget_id'], 'properties': {'budget_id': {'type': 'string', 'description': 'The ID of the budget to fetch settings for'}}}}]
@juhemcp/jnews-mcp-server
Juhe News Server
Fetch the latest trending news headlines and detailed content effortlessly. Access a variety of news categories including recommendations, domestic, technology, and sports. Enhance your applications with real-time news updates using our easy-to-integrate server.
2025-04-05T08:00:50.479Z
0
https://smithery.ai/server/@juhemcp/jnews-mcp-server
true
null
null
[{'name': 'get_news_list', 'description': '通过新闻类型获取今日热点新闻头条', 'inputSchema': {'type': 'object', 'properties': {'page': {'type': 'number', 'description': '当前页数, 默认1, 最大50'}, 'type': {'type': 'string', 'description': '新闻类型:top(推荐,默认),guonei(国内),guoji(国际),yule(娱乐),tiyu(体育),junshi(军事),keji(科技),caijing(财经),youxi(游戏),qiche(汽车),jiankang(健康)'}, 'page_size': {'type': 'number', 'description': '每页返回新闻条数, 默认20, 最大50'}}}}, {'name': 'get_news_content', 'description': '根据新闻ID获取新闻的详细内容', 'inputSchema': {'type': 'object', 'required': ['uniquekey'], 'properties': {'uniquekey': {'type': 'string', 'description': '新闻ID(gew_news_list中返回的uniquekey)'}}}}]
@juhemcp/jnews-mcp-server
Juhe News Server
Fetch the latest trending news headlines and detailed content effortlessly. Access a variety of news categories including recommendations, domestic, technology, and sports. Enhance your applications with real-time news updates using our easy-to-integrate server.
2025-04-05T08:00:50.479Z
0
https://smithery.ai/server/@juhemcp/jnews-mcp-server
true
null
null
[{'name': 'get_news_list', 'description': '通过新闻类型获取今日热点新闻头条', 'inputSchema': {'type': 'object', 'properties': {'page': {'type': 'number', 'description': '当前页数, 默认1, 最大50'}, 'type': {'type': 'string', 'description': '新闻类型:top(推荐,默认),guonei(国内),guoji(国际),yule(娱乐),tiyu(体育),junshi(军事),keji(科技),caijing(财经),youxi(游戏),qiche(汽车),jiankang(健康)'}, 'page_size': {'type': 'number', 'description': '每页返回新闻条数, 默认20, 最大50'}}}}, {'name': 'get_news_content', 'description': '根据新闻ID获取新闻的详细内容', 'inputSchema': {'type': 'object', 'required': ['uniquekey'], 'properties': {'uniquekey': {'type': 'string', 'description': '新闻ID(gew_news_list中返回的uniquekey)'}}}}]
@cremich/promptz-mcp
promptz.dev MCP Server
Access prompts directly from promptz.dev to streamline your development workflow. Reduce context switching by integrating prompt retrieval seamlessly into your AI assistants. Enhance your productivity with easy access to a variety of prompt templates.
2025-04-05T13:00:26.606Z
0
https://smithery.ai/server/@cremich/promptz-mcp
true
null
{ "scanPassed": true }
[{'name': 'list_prompts', 'description': 'List available prompts from promptz.dev', 'inputSchema': {'type': 'object', 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': "Filter prompts by tags (e.g. ['CLI', 'JavaScript'])"}, 'cursor': {'type': 'string', 'description': 'Pagination token for fetching the next set of results'}}}}, {'name': 'get_prompt', 'description': 'Get a specific prompt by ID or name', 'inputSchema': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'Name of the prompt to retrieve'}}}}, {'name': 'list_rules', 'description': 'List available project rules from promptz.dev', 'inputSchema': {'type': 'object', 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': "Filter rules by tags (e.g. ['CDK', 'React'])"}, 'cursor': {'type': 'string', 'description': 'Pagination token for fetching the next set of results'}}}}, {'name': 'get_rule', 'description': 'Get a specific project rule by name', 'inputSchema': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'Name of the rule to retrieve'}}}}]
@cremich/promptz-mcp
promptz.dev MCP Server
Access prompts directly from promptz.dev to streamline your development workflow. Reduce context switching by integrating prompt retrieval seamlessly into your AI assistants. Enhance your productivity with easy access to a variety of prompt templates.
2025-04-05T13:00:26.606Z
0
https://smithery.ai/server/@cremich/promptz-mcp
true
null
{ "scanPassed": true }
[{'name': 'list_prompts', 'description': 'List available prompts from promptz.dev', 'inputSchema': {'type': 'object', 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': "Filter prompts by tags (e.g. ['CLI', 'JavaScript'])"}, 'cursor': {'type': 'string', 'description': 'Pagination token for fetching the next set of results'}}}}, {'name': 'get_prompt', 'description': 'Get a specific prompt by ID or name', 'inputSchema': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'Name of the prompt to retrieve'}}}}, {'name': 'list_rules', 'description': 'List available project rules from promptz.dev', 'inputSchema': {'type': 'object', 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': "Filter rules by tags (e.g. ['CDK', 'React'])"}, 'cursor': {'type': 'string', 'description': 'Pagination token for fetching the next set of results'}}}}, {'name': 'get_rule', 'description': 'Get a specific project rule by name', 'inputSchema': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'Name of the rule to retrieve'}}}}]
@jtucker/mcp-untappd-server
Untappd Server
Query the Untappd API to find beers and get detailed information about them. Easily integrate beer search capabilities into your applications and enhance user experiences with beer-related data.
2025-03-13T13:00:52.383Z
0
https://smithery.ai/server/@jtucker/mcp-untappd-server
true
null
null
[{'name': 'get_beer_info', 'description': 'Get information about a specific beer by its ID', 'inputSchema': {'type': 'object', 'required': ['beer_id'], 'properties': {'beer_id': {'type': 'string', 'description': 'The ID of the beer'}}}}, {'name': 'search_beer', 'description': 'Search for beers by name', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The name of the beer to search for'}}}}, {'name': 'get_user_checkins', 'description': "Get the authenticated user's check-ins", 'inputSchema': {'type': 'object', 'required': ['user_id'], 'properties': {'limit': {'type': 'number', 'default': 25, 'description': 'The number of check-ins to retrieve'}}}}]
@jtucker/mcp-untappd-server
Untappd Server
Query the Untappd API to find beers and get detailed information about them. Easily integrate beer search capabilities into your applications and enhance user experiences with beer-related data.
2025-03-13T13:00:52.383Z
0
https://smithery.ai/server/@jtucker/mcp-untappd-server
true
null
null
[{'name': 'get_beer_info', 'description': 'Get information about a specific beer by its ID', 'inputSchema': {'type': 'object', 'required': ['beer_id'], 'properties': {'beer_id': {'type': 'string', 'description': 'The ID of the beer'}}}}, {'name': 'search_beer', 'description': 'Search for beers by name', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The name of the beer to search for'}}}}, {'name': 'get_user_checkins', 'description': "Get the authenticated user's check-ins", 'inputSchema': {'type': 'object', 'required': ['user_id'], 'properties': {'limit': {'type': 'number', 'default': 25, 'description': 'The number of check-ins to retrieve'}}}}]
@devassistantai/github-projects
GitHub Projects
Manage GitHub Projects V2 efficiently by interacting with the GitHub Projects API through a set of powerful tools. Perform project, item, task, field, and view management operations seamlessly from your language model or client. Enhance your workflow with tested, production-ready capabilities for project automation and organization.
2025-04-29T05:16:09.737Z
0
https://smithery.ai/server/@devassistantai/github-projects
true
null
{ "scanPassed": true }
[{'name': 'test_connection', 'description': 'Test GitHub API connection and token validity', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list_projects', 'description': 'List GitHub Projects (V2) for a user or organization', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'type'], 'properties': {'type': {'enum': ['user', 'organization'], 'type': 'string', 'description': 'Type of owner (user or organization)'}, 'first': {'type': 'number', 'description': 'Number of projects to return'}, 'owner': {'type': 'string', 'minLength': 1, 'description': 'Username or organization name'}}, 'additionalProperties': False}}, {'name': 'create_project', 'description': 'Create a new GitHub Project (V2) for a user or organization', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'type', 'title'], 'properties': {'type': {'enum': ['user', 'organization'], 'type': 'string', 'description': 'Type of owner (user or organization)'}, 'owner': {'type': 'string', 'minLength': 1, 'description': 'Username or organization name'}, 'title': {'type': 'string', 'minLength': 1, 'description': 'Project title'}, 'layout': {'enum': ['BOARD', 'TABLE'], 'type': 'string', 'description': 'Project layout type (BOARD or TABLE)'}, 'public': {'type': 'boolean', 'description': 'Whether the project is public'}, 'description': {'type': 'string', 'description': 'Project description'}}, 'additionalProperties': False}}, {'name': 'update_project', 'description': 'Update an existing GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'title': {'type': 'string', 'description': 'New project title'}, 'closed': {'type': 'boolean', 'description': 'Whether the project should be closed'}, 'public': {'type': 'boolean', 'description': 'Whether the project should be public'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'description': {'type': 'string', 'description': 'New project description'}}, 'additionalProperties': False}}, {'name': 'toggle_project_archive', 'description': 'Archive or unarchive a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'archived'], 'properties': {'archived': {'type': 'boolean', 'description': 'Whether the project should be archived (true) or unarchived (false)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'update_project_item', 'description': 'Update an existing project item in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'itemId', 'fieldId', 'value'], 'properties': {'value': {'type': 'string', 'description': 'Value to set for the field as a string. For complex values, use JSON format.'}, 'itemId': {'type': 'string', 'minLength': 1, 'description': 'Item ID (GraphQL global ID)'}, 'fieldId': {'type': 'string', 'minLength': 1, 'description': 'Field ID (GraphQL global ID)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'remove_project_item', 'description': 'Remove an item from a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'itemId'], 'properties': {'itemId': {'type': 'string', 'minLength': 1, 'description': 'Item ID (GraphQL global ID)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'list_project_fields', 'description': 'List fields from a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'first': {'type': 'number', 'description': 'Number of fields to return'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'list_project_views', 'description': 'List views from a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'first': {'type': 'number', 'description': 'Number of views to return'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'list_project_items', 'description': 'List items from a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'after': {'type': 'string', 'description': 'Cursor for pagination'}, 'first': {'type': 'number', 'description': 'Number of items to return'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'add_project_item', 'description': 'Add an existing Issue or Pull Request to a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'contentId'], 'properties': {'contentId': {'type': 'string', 'minLength': 1, 'description': 'Content ID (GraphQL global ID of an Issue or Pull Request)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'create_draft_item', 'description': 'Create a draft item in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'title'], 'properties': {'body': {'type': 'string', 'description': 'Body content for the draft item'}, 'title': {'type': 'string', 'minLength': 1, 'description': 'Title for the draft item'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'create_project_field', 'description': 'Create a new field in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'name', 'dataType'], 'properties': {'name': {'type': 'string', 'minLength': 1, 'description': 'Field name'}, 'options': {'type': 'array', 'items': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'minLength': 1}, 'color': {'enum': ['GREEN', 'YELLOW', 'ORANGE', 'RED', 'PURPLE', 'BLUE', 'PINK', 'GRAY'], 'type': 'string'}}, 'additionalProperties': False}, 'description': 'Options for single select fields'}, 'dataType': {'enum': ['TEXT', 'NUMBER', 'DATE', 'SINGLE_SELECT'], 'type': 'string', 'description': 'Field data type'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'create_task', 'description': 'Create a new task (as draft or real issue) in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'title'], 'properties': {'body': {'type': 'string', 'description': 'Task description/body'}, 'title': {'type': 'string', 'minLength': 1, 'description': 'Task title'}, 'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Labels to add to the task'}, 'assignees': {'type': 'array', 'items': {'type': 'string'}, 'description': 'GitHub usernames to assign to the task'}, 'milestone': {'type': 'string', 'description': 'Milestone ID to associate with the task'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'asDraftItem': {'type': 'boolean', 'description': 'Create as draft item instead of real issue (default: false)'}, 'customFields': {'type': 'array', 'items': {'type': 'object', 'required': ['fieldId', 'value'], 'properties': {'value': {'type': 'string', 'description': 'Value to set (format depends on field type)'}, 'fieldId': {'type': 'string', 'description': 'Field ID (GraphQL global ID)'}}, 'additionalProperties': False}, 'description': 'Custom fields to set on the task'}, 'repositoryId': {'type': 'string', 'description': 'Repository ID (optional, required to create a real issue)'}}, 'additionalProperties': False}}, {'name': 'manage_task_status', 'description': 'Update task status and optionally add a comment in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'itemId', 'statusFieldId', 'newStatus'], 'properties': {'itemId': {'type': 'string', 'minLength': 1, 'description': 'Item ID (GraphQL global ID)'}, 'newStatus': {'type': 'string', 'minLength': 1, 'description': 'New status value to set (option name from single select field)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'addComment': {'type': 'boolean', 'description': 'Whether to add a comment about the status change'}, 'commentBody': {'type': 'string', 'description': 'Comment body text (required if addComment is true)'}, 'statusFieldId': {'type': 'string', 'minLength': 1, 'description': 'Status field ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'group_tasks', 'description': 'Group multiple tasks by setting the same field value for all of them in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'groupById', 'items', 'groupValue'], 'properties': {'items': {'type': 'array', 'items': {'type': 'string', 'minLength': 1, 'description': 'Item ID (GraphQL global ID)'}, 'minItems': 1, 'description': 'List of item IDs to group'}, 'groupById': {'type': 'string', 'minLength': 1, 'description': 'Field ID to group by (GraphQL global ID)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'groupValue': {'type': 'string', 'minLength': 1, 'description': 'Value to set for the group field'}}, 'additionalProperties': False}}, {'name': 'convert_draft_to_issue', 'description': 'Convert a draft item to an issue in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'draftId', 'repositoryId'], 'properties': {'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Labels to add to the task'}, 'draftId': {'type': 'string', 'minLength': 1, 'description': 'Draft item ID (GraphQL global ID)'}, 'assignees': {'type': 'array', 'items': {'type': 'string'}, 'description': 'GitHub usernames to assign to the task'}, 'milestone': {'type': 'string', 'description': 'Milestone ID to associate with the task'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'repositoryId': {'type': 'string', 'minLength': 1, 'description': 'Repository ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'get_issue_id', 'description': 'Get the ID of an issue in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'issueNumber'], 'properties': {'repo': {'type': 'string', 'minLength': 1, 'description': 'Repository name'}, 'owner': {'type': 'string', 'minLength': 1, 'description': 'Repository owner (username or organization name)'}, 'issueNumber': {'type': 'integer', 'description': 'Issue number', 'exclusiveMinimum': 0}}, 'additionalProperties': False}}, {'name': 'bulk_add_issues', 'description': 'Bulk add issues to a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'owner', 'repo', 'issueNumbers'], 'properties': {'repo': {'type': 'string', 'minLength': 1, 'description': 'Repository name'}, 'owner': {'type': 'string', 'minLength': 1, 'description': 'Repository owner (username or organization name)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'statusValue': {'type': 'string', 'description': 'Optional status value to set (required if statusFieldId is provided)'}, 'issueNumbers': {'type': 'array', 'items': {'type': 'integer', 'exclusiveMinimum': 0}, 'minItems': 1, 'description': 'List of issue numbers to add'}, 'statusFieldId': {'type': 'string', 'description': 'Optional status field ID to set initial status'}}, 'additionalProperties': False}}]
@devassistantai/github-projects
GitHub Projects
Manage GitHub Projects V2 efficiently by interacting with the GitHub Projects API through a set of powerful tools. Perform project, item, task, field, and view management operations seamlessly from your language model or client. Enhance your workflow with tested, production-ready capabilities for project automation and organization.
2025-04-29T05:16:09.737Z
0
https://smithery.ai/server/@devassistantai/github-projects
true
null
{ "scanPassed": true }
[{'name': 'test_connection', 'description': 'Test GitHub API connection and token validity', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list_projects', 'description': 'List GitHub Projects (V2) for a user or organization', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'type'], 'properties': {'type': {'enum': ['user', 'organization'], 'type': 'string', 'description': 'Type of owner (user or organization)'}, 'first': {'type': 'number', 'description': 'Number of projects to return'}, 'owner': {'type': 'string', 'minLength': 1, 'description': 'Username or organization name'}}, 'additionalProperties': False}}, {'name': 'create_project', 'description': 'Create a new GitHub Project (V2) for a user or organization', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'type', 'title'], 'properties': {'type': {'enum': ['user', 'organization'], 'type': 'string', 'description': 'Type of owner (user or organization)'}, 'owner': {'type': 'string', 'minLength': 1, 'description': 'Username or organization name'}, 'title': {'type': 'string', 'minLength': 1, 'description': 'Project title'}, 'layout': {'enum': ['BOARD', 'TABLE'], 'type': 'string', 'description': 'Project layout type (BOARD or TABLE)'}, 'public': {'type': 'boolean', 'description': 'Whether the project is public'}, 'description': {'type': 'string', 'description': 'Project description'}}, 'additionalProperties': False}}, {'name': 'update_project', 'description': 'Update an existing GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'title': {'type': 'string', 'description': 'New project title'}, 'closed': {'type': 'boolean', 'description': 'Whether the project should be closed'}, 'public': {'type': 'boolean', 'description': 'Whether the project should be public'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'description': {'type': 'string', 'description': 'New project description'}}, 'additionalProperties': False}}, {'name': 'toggle_project_archive', 'description': 'Archive or unarchive a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'archived'], 'properties': {'archived': {'type': 'boolean', 'description': 'Whether the project should be archived (true) or unarchived (false)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'update_project_item', 'description': 'Update an existing project item in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'itemId', 'fieldId', 'value'], 'properties': {'value': {'type': 'string', 'description': 'Value to set for the field as a string. For complex values, use JSON format.'}, 'itemId': {'type': 'string', 'minLength': 1, 'description': 'Item ID (GraphQL global ID)'}, 'fieldId': {'type': 'string', 'minLength': 1, 'description': 'Field ID (GraphQL global ID)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'remove_project_item', 'description': 'Remove an item from a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'itemId'], 'properties': {'itemId': {'type': 'string', 'minLength': 1, 'description': 'Item ID (GraphQL global ID)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'list_project_fields', 'description': 'List fields from a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'first': {'type': 'number', 'description': 'Number of fields to return'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'list_project_views', 'description': 'List views from a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'first': {'type': 'number', 'description': 'Number of views to return'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'list_project_items', 'description': 'List items from a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'after': {'type': 'string', 'description': 'Cursor for pagination'}, 'first': {'type': 'number', 'description': 'Number of items to return'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'add_project_item', 'description': 'Add an existing Issue or Pull Request to a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'contentId'], 'properties': {'contentId': {'type': 'string', 'minLength': 1, 'description': 'Content ID (GraphQL global ID of an Issue or Pull Request)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'create_draft_item', 'description': 'Create a draft item in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'title'], 'properties': {'body': {'type': 'string', 'description': 'Body content for the draft item'}, 'title': {'type': 'string', 'minLength': 1, 'description': 'Title for the draft item'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'create_project_field', 'description': 'Create a new field in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'name', 'dataType'], 'properties': {'name': {'type': 'string', 'minLength': 1, 'description': 'Field name'}, 'options': {'type': 'array', 'items': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'minLength': 1}, 'color': {'enum': ['GREEN', 'YELLOW', 'ORANGE', 'RED', 'PURPLE', 'BLUE', 'PINK', 'GRAY'], 'type': 'string'}}, 'additionalProperties': False}, 'description': 'Options for single select fields'}, 'dataType': {'enum': ['TEXT', 'NUMBER', 'DATE', 'SINGLE_SELECT'], 'type': 'string', 'description': 'Field data type'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'create_task', 'description': 'Create a new task (as draft or real issue) in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'title'], 'properties': {'body': {'type': 'string', 'description': 'Task description/body'}, 'title': {'type': 'string', 'minLength': 1, 'description': 'Task title'}, 'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Labels to add to the task'}, 'assignees': {'type': 'array', 'items': {'type': 'string'}, 'description': 'GitHub usernames to assign to the task'}, 'milestone': {'type': 'string', 'description': 'Milestone ID to associate with the task'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'asDraftItem': {'type': 'boolean', 'description': 'Create as draft item instead of real issue (default: false)'}, 'customFields': {'type': 'array', 'items': {'type': 'object', 'required': ['fieldId', 'value'], 'properties': {'value': {'type': 'string', 'description': 'Value to set (format depends on field type)'}, 'fieldId': {'type': 'string', 'description': 'Field ID (GraphQL global ID)'}}, 'additionalProperties': False}, 'description': 'Custom fields to set on the task'}, 'repositoryId': {'type': 'string', 'description': 'Repository ID (optional, required to create a real issue)'}}, 'additionalProperties': False}}, {'name': 'manage_task_status', 'description': 'Update task status and optionally add a comment in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'itemId', 'statusFieldId', 'newStatus'], 'properties': {'itemId': {'type': 'string', 'minLength': 1, 'description': 'Item ID (GraphQL global ID)'}, 'newStatus': {'type': 'string', 'minLength': 1, 'description': 'New status value to set (option name from single select field)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'addComment': {'type': 'boolean', 'description': 'Whether to add a comment about the status change'}, 'commentBody': {'type': 'string', 'description': 'Comment body text (required if addComment is true)'}, 'statusFieldId': {'type': 'string', 'minLength': 1, 'description': 'Status field ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'group_tasks', 'description': 'Group multiple tasks by setting the same field value for all of them in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'groupById', 'items', 'groupValue'], 'properties': {'items': {'type': 'array', 'items': {'type': 'string', 'minLength': 1, 'description': 'Item ID (GraphQL global ID)'}, 'minItems': 1, 'description': 'List of item IDs to group'}, 'groupById': {'type': 'string', 'minLength': 1, 'description': 'Field ID to group by (GraphQL global ID)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'groupValue': {'type': 'string', 'minLength': 1, 'description': 'Value to set for the group field'}}, 'additionalProperties': False}}, {'name': 'convert_draft_to_issue', 'description': 'Convert a draft item to an issue in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'draftId', 'repositoryId'], 'properties': {'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Labels to add to the task'}, 'draftId': {'type': 'string', 'minLength': 1, 'description': 'Draft item ID (GraphQL global ID)'}, 'assignees': {'type': 'array', 'items': {'type': 'string'}, 'description': 'GitHub usernames to assign to the task'}, 'milestone': {'type': 'string', 'description': 'Milestone ID to associate with the task'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'repositoryId': {'type': 'string', 'minLength': 1, 'description': 'Repository ID (GraphQL global ID)'}}, 'additionalProperties': False}}, {'name': 'get_issue_id', 'description': 'Get the ID of an issue in a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'issueNumber'], 'properties': {'repo': {'type': 'string', 'minLength': 1, 'description': 'Repository name'}, 'owner': {'type': 'string', 'minLength': 1, 'description': 'Repository owner (username or organization name)'}, 'issueNumber': {'type': 'integer', 'description': 'Issue number', 'exclusiveMinimum': 0}}, 'additionalProperties': False}}, {'name': 'bulk_add_issues', 'description': 'Bulk add issues to a GitHub Project (V2)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId', 'owner', 'repo', 'issueNumbers'], 'properties': {'repo': {'type': 'string', 'minLength': 1, 'description': 'Repository name'}, 'owner': {'type': 'string', 'minLength': 1, 'description': 'Repository owner (username or organization name)'}, 'projectId': {'type': 'string', 'minLength': 1, 'description': 'Project ID (GraphQL global ID)'}, 'statusValue': {'type': 'string', 'description': 'Optional status value to set (required if statusFieldId is provided)'}, 'issueNumbers': {'type': 'array', 'items': {'type': 'integer', 'exclusiveMinimum': 0}, 'minItems': 1, 'description': 'List of issue numbers to add'}, 'statusFieldId': {'type': 'string', 'description': 'Optional status field ID to set initial status'}}, 'additionalProperties': False}}]
@alexanimal/tradovate-mcp-server
Tradovate Tools
Manage your trading operations seamlessly. Access and analyze contracts, positions, and market data with ease, while executing trades directly through the Tradovate platform.
2025-03-11T00:22:02.667Z
0
https://smithery.ai/server/@alexanimal/tradovate-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'get_contract_details', 'description': 'Get detailed information about a specific contract by symbol', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string', 'description': 'Symbol of the contract (e.g., ESZ4, NQZ4)'}}}}, {'name': 'list_positions', 'description': 'List all positions for the account', 'inputSchema': {'type': 'object', 'properties': {'accountId': {'type': 'string', 'description': 'Account ID (optional, defaults to primary account)'}}}}, {'name': 'place_order', 'description': 'Place a new order', 'inputSchema': {'type': 'object', 'required': ['symbol', 'action', 'orderType', 'quantity'], 'properties': {'price': {'type': 'number', 'description': 'Price for limit orders'}, 'action': {'enum': ['Buy', 'Sell'], 'type': 'string', 'description': 'Buy or Sell'}, 'symbol': {'type': 'string', 'description': 'Symbol of the contract (e.g., ESZ4, NQZ4)'}, 'quantity': {'type': 'number', 'description': 'Number of contracts'}, 'orderType': {'enum': ['Market', 'Limit', 'Stop', 'StopLimit'], 'type': 'string', 'description': 'Type of order'}, 'stopPrice': {'type': 'number', 'description': 'Stop price for stop orders'}}}}, {'name': 'modify_order', 'description': 'Modify an existing order', 'inputSchema': {'type': 'object', 'required': ['orderId'], 'properties': {'price': {'type': 'number', 'description': 'New price for limit orders'}, 'orderId': {'type': 'string', 'description': 'ID of the order to modify'}, 'quantity': {'type': 'number', 'description': 'New quantity'}, 'stopPrice': {'type': 'number', 'description': 'New stop price for stop orders'}}}}, {'name': 'cancel_order', 'description': 'Cancel an existing order', 'inputSchema': {'type': 'object', 'required': ['orderId'], 'properties': {'orderId': {'type': 'string', 'description': 'ID of the order to cancel'}}}}, {'name': 'liquidate_position', 'description': 'Close an existing position', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string', 'description': 'Symbol of the contract (e.g., ESZ4, NQZ4)'}}}}, {'name': 'get_account_summary', 'description': 'Get account summary information', 'inputSchema': {'type': 'object', 'properties': {'accountId': {'type': 'string', 'description': 'Account ID (optional, defaults to primary account)'}}}}, {'name': 'get_market_data', 'description': 'Get market data for a specific contract', 'inputSchema': {'type': 'object', 'required': ['symbol', 'dataType'], 'properties': {'symbol': {'type': 'string', 'description': 'Symbol of the contract (e.g., ESZ4, NQZ4)'}, 'dataType': {'enum': ['Quote', 'DOM', 'Chart'], 'type': 'string', 'description': 'Type of market data'}, 'chartTimeframe': {'enum': ['1min', '5min', '15min', '30min', '1hour', '4hour', '1day'], 'type': 'string', 'description': 'Timeframe for chart data'}}}}]
@alexanimal/tradovate-mcp-server
Tradovate Tools
Manage your trading operations seamlessly. Access and analyze contracts, positions, and market data with ease, while executing trades directly through the Tradovate platform.
2025-03-11T00:22:02.667Z
0
https://smithery.ai/server/@alexanimal/tradovate-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'get_contract_details', 'description': 'Get detailed information about a specific contract by symbol', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string', 'description': 'Symbol of the contract (e.g., ESZ4, NQZ4)'}}}}, {'name': 'list_positions', 'description': 'List all positions for the account', 'inputSchema': {'type': 'object', 'properties': {'accountId': {'type': 'string', 'description': 'Account ID (optional, defaults to primary account)'}}}}, {'name': 'place_order', 'description': 'Place a new order', 'inputSchema': {'type': 'object', 'required': ['symbol', 'action', 'orderType', 'quantity'], 'properties': {'price': {'type': 'number', 'description': 'Price for limit orders'}, 'action': {'enum': ['Buy', 'Sell'], 'type': 'string', 'description': 'Buy or Sell'}, 'symbol': {'type': 'string', 'description': 'Symbol of the contract (e.g., ESZ4, NQZ4)'}, 'quantity': {'type': 'number', 'description': 'Number of contracts'}, 'orderType': {'enum': ['Market', 'Limit', 'Stop', 'StopLimit'], 'type': 'string', 'description': 'Type of order'}, 'stopPrice': {'type': 'number', 'description': 'Stop price for stop orders'}}}}, {'name': 'modify_order', 'description': 'Modify an existing order', 'inputSchema': {'type': 'object', 'required': ['orderId'], 'properties': {'price': {'type': 'number', 'description': 'New price for limit orders'}, 'orderId': {'type': 'string', 'description': 'ID of the order to modify'}, 'quantity': {'type': 'number', 'description': 'New quantity'}, 'stopPrice': {'type': 'number', 'description': 'New stop price for stop orders'}}}}, {'name': 'cancel_order', 'description': 'Cancel an existing order', 'inputSchema': {'type': 'object', 'required': ['orderId'], 'properties': {'orderId': {'type': 'string', 'description': 'ID of the order to cancel'}}}}, {'name': 'liquidate_position', 'description': 'Close an existing position', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string', 'description': 'Symbol of the contract (e.g., ESZ4, NQZ4)'}}}}, {'name': 'get_account_summary', 'description': 'Get account summary information', 'inputSchema': {'type': 'object', 'properties': {'accountId': {'type': 'string', 'description': 'Account ID (optional, defaults to primary account)'}}}}, {'name': 'get_market_data', 'description': 'Get market data for a specific contract', 'inputSchema': {'type': 'object', 'required': ['symbol', 'dataType'], 'properties': {'symbol': {'type': 'string', 'description': 'Symbol of the contract (e.g., ESZ4, NQZ4)'}, 'dataType': {'enum': ['Quote', 'DOM', 'Chart'], 'type': 'string', 'description': 'Type of market data'}, 'chartTimeframe': {'enum': ['1min', '5min', '15min', '30min', '1hour', '4hour', '1day'], 'type': 'string', 'description': 'Timeframe for chart data'}}}}]
@KS-GEN-AI/confluence-mcp-server
Confluence Communication Server
Interact with Confluence to execute CQL queries and retrieve page content seamlessly. Enhance your workflow by integrating Confluence data directly into your applications. Simplify your Confluence interactions with powerful tools designed for efficiency.
2025-03-09T14:00:38.941Z
0
https://smithery.ai/server/@KS-GEN-AI/confluence-mcp-server
true
null
null
[{'name': 'execute_cql_search', 'description': 'Execute a CQL query on Confluence to search pages', 'inputSchema': {'type': 'object', 'required': ['cql'], 'properties': {'cql': {'type': 'string', 'description': 'CQL query string'}, 'limit': {'type': 'integer', 'default': 10, 'description': 'Number of results to return'}}}}, {'name': 'get_page_content', 'description': 'Get the content of a Confluence page', 'inputSchema': {'type': 'object', 'required': ['pageId'], 'properties': {'pageId': {'type': 'string', 'description': 'Confluence Page ID'}}}}]
@KS-GEN-AI/confluence-mcp-server
Confluence Communication Server
Interact with Confluence to execute CQL queries and retrieve page content seamlessly. Enhance your workflow by integrating Confluence data directly into your applications. Simplify your Confluence interactions with powerful tools designed for efficiency.
2025-03-09T14:00:38.941Z
0
https://smithery.ai/server/@KS-GEN-AI/confluence-mcp-server
true
null
null
[{'name': 'execute_cql_search', 'description': 'Execute a CQL query on Confluence to search pages', 'inputSchema': {'type': 'object', 'required': ['cql'], 'properties': {'cql': {'type': 'string', 'description': 'CQL query string'}, 'limit': {'type': 'integer', 'default': 10, 'description': 'Number of results to return'}}}}, {'name': 'get_page_content', 'description': 'Get the content of a Confluence page', 'inputSchema': {'type': 'object', 'required': ['pageId'], 'properties': {'pageId': {'type': 'string', 'description': 'Confluence Page ID'}}}}]
@aaasoulmate/mcp-weather
Weather Information Enhancer
Enhance Large Language Models with real-time weather data capabilities using an MCP-based system. Connect seamlessly to external weather APIs to provide accurate and up-to-date weather information. Enable LLMs to access and utilize weather data dynamically for improved contextual responses.
2025-04-30T06:00:49.736Z
0
https://smithery.ai/server/@aaasoulmate/mcp-weather
true
null
null
[{'name': 'query_weather', 'description': "\n Input an English city name to get today's weather information.\n :param city: City name (use English names)\n :return: Formatted weather information\n ", 'inputSchema': {'type': 'object', 'title': 'query_weatherArguments', 'required': ['city'], 'properties': {'city': {'type': 'string', 'title': 'City'}}}}]
@aaasoulmate/mcp-weather
Weather Information Enhancer
Enhance Large Language Models with real-time weather data capabilities using an MCP-based system. Connect seamlessly to external weather APIs to provide accurate and up-to-date weather information. Enable LLMs to access and utilize weather data dynamically for improved contextual responses.
2025-04-30T06:00:49.736Z
0
https://smithery.ai/server/@aaasoulmate/mcp-weather
true
null
null
[{'name': 'query_weather', 'description': "\n Input an English city name to get today's weather information.\n :param city: City name (use English names)\n :return: Formatted weather information\n ", 'inputSchema': {'type': 'object', 'title': 'query_weatherArguments', 'required': ['city'], 'properties': {'city': {'type': 'string', 'title': 'City'}}}}]
@vinsidious/whodis-mcp-server
Whodis Domain Availability Server
Check the availability of domain names using WHOIS lookups integrated as an MCP tool. Enable AI assistants and other tools to seamlessly verify domain registration status within their workflows. Provides a CLI interface and detailed logging for easy testing and monitoring.
2025-04-30T21:51:47.025Z
0
https://smithery.ai/server/@vinsidious/whodis-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'check-domain-availability', 'description': 'PURPOSE: Checks the availability of one or more domain names.\n INPUT: An array of domain names.\n OUTPUT: A JSON object containing two arrays: \'available\' (domains that appear to be unregistered) and \'unavailable\' (domains that appear to be registered). Note: Availability checks depend on WHOIS server responses and might not be 100% accurate for all TLDs or due to temporary network issues. Domains where lookup failed are omitted.\n WHEN TO USE: Use this tool when you need to determine if specific domain names can potentially be registered.\n EXAMPLE: { "domains": ["google.com", "example-domain-that-is-likely-free-12345.com"] }', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string', 'minLength': 1}, 'minItems': 1, 'description': 'An array of domain names to check for availability'}}, 'additionalProperties': False}}]
@vinsidious/whodis-mcp-server
Whodis Domain Availability Server
Check the availability of domain names using WHOIS lookups integrated as an MCP tool. Enable AI assistants and other tools to seamlessly verify domain registration status within their workflows. Provides a CLI interface and detailed logging for easy testing and monitoring.
2025-04-30T21:51:47.025Z
0
https://smithery.ai/server/@vinsidious/whodis-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'check-domain-availability', 'description': 'PURPOSE: Checks the availability of one or more domain names.\n INPUT: An array of domain names.\n OUTPUT: A JSON object containing two arrays: \'available\' (domains that appear to be unregistered) and \'unavailable\' (domains that appear to be registered). Note: Availability checks depend on WHOIS server responses and might not be 100% accurate for all TLDs or due to temporary network issues. Domains where lookup failed are omitted.\n WHEN TO USE: Use this tool when you need to determine if specific domain names can potentially be registered.\n EXAMPLE: { "domains": ["google.com", "example-domain-that-is-likely-free-12345.com"] }', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domains'], 'properties': {'domains': {'type': 'array', 'items': {'type': 'string', 'minLength': 1}, 'minItems': 1, 'description': 'An array of domain names to check for availability'}}, 'additionalProperties': False}}]
@pab1it0/adx
Azure Data Explorer Server
Access your Azure Data Explorer clusters and databases through standardized interfaces. Execute KQL queries and explore your data seamlessly with AI assistants. Enhance your data interaction capabilities with interactive tools and authentication support.
2025-03-26T14:59:01.785Z
0
https://smithery.ai/server/@pab1it0/adx
true
null
{ "scanPassed": true }
[{'name': 'execute_query', 'description': 'Executes a Kusto Query Language (KQL) query against the configured Azure Data Explorer database and returns the results as a list of dictionaries.', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'list_tables', 'description': 'Retrieves a list of all tables available in the configured Azure Data Explorer database, including their names, folders, and database associations.', 'inputSchema': {'type': 'object', 'title': 'list_tablesArguments', 'properties': {}}}, {'name': 'get_table_schema', 'description': 'Retrieves the schema information for a specified table in the Azure Data Explorer database, including column names, data types, and other schema-related metadata.', 'inputSchema': {'type': 'object', 'title': 'get_table_schemaArguments', 'required': ['table_name'], 'properties': {'table_name': {'type': 'string', 'title': 'Table Name'}}}}, {'name': 'sample_table_data', 'description': 'Retrieves a random sample of rows from the specified table in the Azure Data Explorer database. The sample_size parameter controls how many rows to return (default: 10).', 'inputSchema': {'type': 'object', 'title': 'sample_table_dataArguments', 'required': ['table_name'], 'properties': {'table_name': {'type': 'string', 'title': 'Table Name'}, 'sample_size': {'type': 'integer', 'title': 'Sample Size', 'default': 10}}}}]
@pab1it0/adx
Azure Data Explorer Server
Access your Azure Data Explorer clusters and databases through standardized interfaces. Execute KQL queries and explore your data seamlessly with AI assistants. Enhance your data interaction capabilities with interactive tools and authentication support.
2025-03-26T14:59:01.785Z
0
https://smithery.ai/server/@pab1it0/adx
true
null
{ "scanPassed": true }
[{'name': 'execute_query', 'description': 'Executes a Kusto Query Language (KQL) query against the configured Azure Data Explorer database and returns the results as a list of dictionaries.', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'list_tables', 'description': 'Retrieves a list of all tables available in the configured Azure Data Explorer database, including their names, folders, and database associations.', 'inputSchema': {'type': 'object', 'title': 'list_tablesArguments', 'properties': {}}}, {'name': 'get_table_schema', 'description': 'Retrieves the schema information for a specified table in the Azure Data Explorer database, including column names, data types, and other schema-related metadata.', 'inputSchema': {'type': 'object', 'title': 'get_table_schemaArguments', 'required': ['table_name'], 'properties': {'table_name': {'type': 'string', 'title': 'Table Name'}}}}, {'name': 'sample_table_data', 'description': 'Retrieves a random sample of rows from the specified table in the Azure Data Explorer database. The sample_size parameter controls how many rows to return (default: 10).', 'inputSchema': {'type': 'object', 'title': 'sample_table_dataArguments', 'required': ['table_name'], 'properties': {'table_name': {'type': 'string', 'title': 'Table Name'}, 'sample_size': {'type': 'integer', 'title': 'Sample Size', 'default': 10}}}}]
@allthatjazzleo/mantrachain-mcp
MantraChain MCP Server
Interact with the MantraChain blockchain seamlessly. Send tokens, delegate to validators, and query balances using a standardized protocol. Simplify your blockchain operations with powerful tools at your fingertips.
2025-04-07T19:00:31.320Z
1
https://smithery.ai/server/@allthatjazzleo/mantrachain-mcp
true
null
{ "scanPassed": true }
[{'name': 'bank-send', 'description': 'Send tokens to another address. Supports sending multiple coins in one transaction.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['recipientAddress', 'coins', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'coins': {'anyOf': [{'type': 'array', 'items': {'type': 'object', 'required': ['amount'], 'properties': {'denom': {'type': 'string'}, 'amount': {'type': 'string'}}, 'additionalProperties': False}}, {'type': 'object', 'required': ['amount'], 'properties': {'denom': {'type': 'string'}, 'amount': {'type': 'string'}}, 'additionalProperties': False}], 'description': 'Array of coins to send, each with denom and amount'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'recipientAddress': {'type': 'string', 'description': 'Address of the recipient'}}, 'additionalProperties': False}}, {'name': 'get-balance', 'description': 'Get balance of an address (defaults to your own address if none provided)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'address': {'type': 'string', 'description': 'Optional address to get balance for, defaults to current address'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'delegate', 'description': 'Delegate/Stake tokens to a validator', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['operatorAddress', 'amount', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'denom': {'type': 'string', 'description': "Optional denomination of the tokens, default is network's default denom"}, 'amount': {'type': 'string', 'description': 'Amount of tokens to delegate'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'operatorAddress': {'type': 'string', 'description': 'Address of the validator to delegate to'}}, 'additionalProperties': False}}, {'name': 'undelegate', 'description': 'Undelegate/Unstake tokens from a validator', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['operatorAddress', 'amount', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'denom': {'type': 'string', 'description': "Optional denomination of the tokens, default is network's default denom"}, 'amount': {'type': 'string', 'description': 'Amount of tokens to undelegate'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'operatorAddress': {'type': 'string', 'description': 'Address of the validator to undelegate from'}}, 'additionalProperties': False}}, {'name': 'claim-rewards', 'description': 'Claim rewards for a specific validator', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['operatorAddress', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'operatorAddress': {'type': 'string', 'description': 'Address of the validator to claim rewards from'}}, 'additionalProperties': False}}, {'name': 'get-validators', 'description': 'Get all validators', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'get-delegations', 'description': 'Get current staking information for an address', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'address': {'type': 'string', 'description': 'Address to query for delegations'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'get-available-rewards', 'description': 'Get all available rewards for an address', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'address': {'type': 'string', 'description': 'Address to query for available rewards'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'get-account-info', 'description': 'Get current account information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'get-block-info', 'description': 'Get block information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'height': {'type': 'number', 'description': 'Optional block height to query, defaults to latest block'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'query-network', 'description': 'Execute a generic network gRPC Gateway query against chain APIs when you cannot find the required information from other tools. You MUST first check the available query/service by reading the openapi specification from the resource `openapi://{networkName}` to understand available query/service, methods, required parameters and body structure.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName', 'path', 'method'], 'properties': {'body': {'description': 'Request body for POST/PUT requests'}, 'path': {'type': 'string', 'description': "API endpoint path from the OpenAPI spec, e.g., '/cosmos/bank/v1beta1/balances/{address}'"}, 'method': {'enum': ['GET', 'POST', 'PUT', 'DELETE'], 'type': 'string', 'description': 'HTTP method to use for the request'}, 'pathParams': {'type': 'object', 'description': 'Path parameters to substitute in the URL path', 'additionalProperties': {'type': 'string'}}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'queryParams': {'type': 'object', 'description': 'Query parameters to add to the request', 'additionalProperties': {'type': 'string'}}}, 'additionalProperties': False}}, {'name': 'ibc-transfer', 'description': 'Send tokens via IBC transfer.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['recipientAddress', 'transferAmount', 'sourceChannel', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'ibcMemo': {'type': 'string', 'description': 'Optional memo for the IBC transfer'}, 'sourcePort': {'type': 'string', 'description': 'Source port for the IBC transfer'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'sourceChannel': {'type': 'string', 'description': 'Source channel for the IBC transfer'}, 'timeoutHeight': {'type': 'object', 'required': ['revisionNumber', 'revisionHeight'], 'properties': {'revisionHeight': {'type': 'number'}, 'revisionNumber': {'type': 'number'}}, 'description': 'Timeout height for the IBC transfer', 'additionalProperties': False}, 'transferAmount': {'type': 'object', 'required': ['denom', 'amount'], 'properties': {'denom': {'type': 'string'}, 'amount': {'type': 'string'}}, 'description': 'Amount to send', 'additionalProperties': False}, 'recipientAddress': {'type': 'string', 'description': 'Address of the recipient'}, 'timeoutTimestamp': {'type': 'number', 'description': 'Timeout timestamp for the IBC transfer'}}, 'additionalProperties': False}}, {'name': 'contract-query', 'description': 'Query a smart contract by executing a read-only function', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'queryMsg', 'networkName'], 'properties': {'queryMsg': {'type': 'object', 'description': 'The query message to send to the contract as a JSON object', 'additionalProperties': {}}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the networks resource'}, 'contractAddress': {'type': 'string', 'description': 'Address of the smart contract to query'}}, 'additionalProperties': False}}, {'name': 'contract-execute', 'description': 'Execute a function on a smart contract that changes state', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'executeMsg', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'funds': {'type': 'array', 'items': {'type': 'object', 'required': ['amount'], 'properties': {'denom': {'type': 'string'}, 'amount': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'Optional funds to send with the execution'}, 'executeMsg': {'type': 'object', 'description': 'The execute message to send to the contract as a JSON object', 'additionalProperties': {}}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check available networks'}, 'contractAddress': {'type': 'string', 'description': 'Address of the smart contract to execute'}}, 'additionalProperties': False}}, {'name': 'dex-get-pools', 'description': 'Get all available liquidity pools from the DEX', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check available networks through `networks://all`'}}, 'additionalProperties': False}}, {'name': 'dex-find-routes', 'description': 'Find available swap routes between two tokens - must first check two tokens are available in the DEX pools by using `dex-get-pools`', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName', 'tokenInDenom', 'tokenOutDenom'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use'}, 'tokenInDenom': {'type': 'string', 'description': 'Denomination of the token to swap from'}, 'tokenOutDenom': {'type': 'string', 'description': 'Denomination of the token to swap to'}}, 'additionalProperties': False}}, {'name': 'dex-simulate-swap', 'description': 'Simulate a token swap to get expected outcome without executing it - must first check two tokens are available in the DEX pools by using `dex-get-pools`', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName', 'tokenInDenom', 'tokenInAmount', 'tokenOutDenom'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use'}, 'tokenInDenom': {'type': 'string', 'description': 'Denomination of the token to swap from'}, 'tokenInAmount': {'type': 'string', 'description': 'Amount of tokens to swap'}, 'tokenOutDenom': {'type': 'string', 'description': 'Denomination of the token to swap to'}}, 'additionalProperties': False}}, {'name': 'dex-swap', 'description': 'Execute a token swap on the DEX - must first check two tokens are available in the DEX pools by using `dex-get-pools`', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName', 'tokenInDenom', 'tokenInAmount', 'tokenOutDenom'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'slippage': {'type': 'string', 'description': "Maximum acceptable slippage percentage (e.g., '1' for 1%)"}, 'networkName': {'type': 'string', 'description': 'Name of the network to use'}, 'tokenInDenom': {'type': 'string', 'description': 'Denomination of the token to swap from'}, 'tokenInAmount': {'type': 'string', 'description': 'Amount of tokens to swap'}, 'tokenOutDenom': {'type': 'string', 'description': 'Denomination of the token to swap to'}}, 'additionalProperties': False}}]
@allthatjazzleo/mantrachain-mcp
MantraChain MCP Server
Interact with the MantraChain blockchain seamlessly. Send tokens, delegate to validators, and query balances using a standardized protocol. Simplify your blockchain operations with powerful tools at your fingertips.
2025-04-07T19:00:31.320Z
1
https://smithery.ai/server/@allthatjazzleo/mantrachain-mcp
true
null
{ "scanPassed": true }
[{'name': 'bank-send', 'description': 'Send tokens to another address. Supports sending multiple coins in one transaction.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['recipientAddress', 'coins', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'coins': {'anyOf': [{'type': 'array', 'items': {'type': 'object', 'required': ['amount'], 'properties': {'denom': {'type': 'string'}, 'amount': {'type': 'string'}}, 'additionalProperties': False}}, {'type': 'object', 'required': ['amount'], 'properties': {'denom': {'type': 'string'}, 'amount': {'type': 'string'}}, 'additionalProperties': False}], 'description': 'Array of coins to send, each with denom and amount'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'recipientAddress': {'type': 'string', 'description': 'Address of the recipient'}}, 'additionalProperties': False}}, {'name': 'get-balance', 'description': 'Get balance of an address (defaults to your own address if none provided)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'address': {'type': 'string', 'description': 'Optional address to get balance for, defaults to current address'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'delegate', 'description': 'Delegate/Stake tokens to a validator', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['operatorAddress', 'amount', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'denom': {'type': 'string', 'description': "Optional denomination of the tokens, default is network's default denom"}, 'amount': {'type': 'string', 'description': 'Amount of tokens to delegate'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'operatorAddress': {'type': 'string', 'description': 'Address of the validator to delegate to'}}, 'additionalProperties': False}}, {'name': 'undelegate', 'description': 'Undelegate/Unstake tokens from a validator', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['operatorAddress', 'amount', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'denom': {'type': 'string', 'description': "Optional denomination of the tokens, default is network's default denom"}, 'amount': {'type': 'string', 'description': 'Amount of tokens to undelegate'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'operatorAddress': {'type': 'string', 'description': 'Address of the validator to undelegate from'}}, 'additionalProperties': False}}, {'name': 'claim-rewards', 'description': 'Claim rewards for a specific validator', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['operatorAddress', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'operatorAddress': {'type': 'string', 'description': 'Address of the validator to claim rewards from'}}, 'additionalProperties': False}}, {'name': 'get-validators', 'description': 'Get all validators', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'get-delegations', 'description': 'Get current staking information for an address', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'address': {'type': 'string', 'description': 'Address to query for delegations'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'get-available-rewards', 'description': 'Get all available rewards for an address', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'address': {'type': 'string', 'description': 'Address to query for available rewards'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'get-account-info', 'description': 'Get current account information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'get-block-info', 'description': 'Get block information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'height': {'type': 'number', 'description': 'Optional block height to query, defaults to latest block'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}}, 'additionalProperties': False}}, {'name': 'query-network', 'description': 'Execute a generic network gRPC Gateway query against chain APIs when you cannot find the required information from other tools. You MUST first check the available query/service by reading the openapi specification from the resource `openapi://{networkName}` to understand available query/service, methods, required parameters and body structure.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName', 'path', 'method'], 'properties': {'body': {'description': 'Request body for POST/PUT requests'}, 'path': {'type': 'string', 'description': "API endpoint path from the OpenAPI spec, e.g., '/cosmos/bank/v1beta1/balances/{address}'"}, 'method': {'enum': ['GET', 'POST', 'PUT', 'DELETE'], 'type': 'string', 'description': 'HTTP method to use for the request'}, 'pathParams': {'type': 'object', 'description': 'Path parameters to substitute in the URL path', 'additionalProperties': {'type': 'string'}}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'queryParams': {'type': 'object', 'description': 'Query parameters to add to the request', 'additionalProperties': {'type': 'string'}}}, 'additionalProperties': False}}, {'name': 'ibc-transfer', 'description': 'Send tokens via IBC transfer.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['recipientAddress', 'transferAmount', 'sourceChannel', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'ibcMemo': {'type': 'string', 'description': 'Optional memo for the IBC transfer'}, 'sourcePort': {'type': 'string', 'description': 'Source port for the IBC transfer'}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments'}, 'sourceChannel': {'type': 'string', 'description': 'Source channel for the IBC transfer'}, 'timeoutHeight': {'type': 'object', 'required': ['revisionNumber', 'revisionHeight'], 'properties': {'revisionHeight': {'type': 'number'}, 'revisionNumber': {'type': 'number'}}, 'description': 'Timeout height for the IBC transfer', 'additionalProperties': False}, 'transferAmount': {'type': 'object', 'required': ['denom', 'amount'], 'properties': {'denom': {'type': 'string'}, 'amount': {'type': 'string'}}, 'description': 'Amount to send', 'additionalProperties': False}, 'recipientAddress': {'type': 'string', 'description': 'Address of the recipient'}, 'timeoutTimestamp': {'type': 'number', 'description': 'Timeout timestamp for the IBC transfer'}}, 'additionalProperties': False}}, {'name': 'contract-query', 'description': 'Query a smart contract by executing a read-only function', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'queryMsg', 'networkName'], 'properties': {'queryMsg': {'type': 'object', 'description': 'The query message to send to the contract as a JSON object', 'additionalProperties': {}}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check what networks are available through the networks resource'}, 'contractAddress': {'type': 'string', 'description': 'Address of the smart contract to query'}}, 'additionalProperties': False}}, {'name': 'contract-execute', 'description': 'Execute a function on a smart contract that changes state', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'executeMsg', 'networkName'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'funds': {'type': 'array', 'items': {'type': 'object', 'required': ['amount'], 'properties': {'denom': {'type': 'string'}, 'amount': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'Optional funds to send with the execution'}, 'executeMsg': {'type': 'object', 'description': 'The execute message to send to the contract as a JSON object', 'additionalProperties': {}}, 'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check available networks'}, 'contractAddress': {'type': 'string', 'description': 'Address of the smart contract to execute'}}, 'additionalProperties': False}}, {'name': 'dex-get-pools', 'description': 'Get all available liquidity pools from the DEX', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use - must first check available networks through `networks://all`'}}, 'additionalProperties': False}}, {'name': 'dex-find-routes', 'description': 'Find available swap routes between two tokens - must first check two tokens are available in the DEX pools by using `dex-get-pools`', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName', 'tokenInDenom', 'tokenOutDenom'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use'}, 'tokenInDenom': {'type': 'string', 'description': 'Denomination of the token to swap from'}, 'tokenOutDenom': {'type': 'string', 'description': 'Denomination of the token to swap to'}}, 'additionalProperties': False}}, {'name': 'dex-simulate-swap', 'description': 'Simulate a token swap to get expected outcome without executing it - must first check two tokens are available in the DEX pools by using `dex-get-pools`', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName', 'tokenInDenom', 'tokenInAmount', 'tokenOutDenom'], 'properties': {'networkName': {'type': 'string', 'description': 'Name of the network to use'}, 'tokenInDenom': {'type': 'string', 'description': 'Denomination of the token to swap from'}, 'tokenInAmount': {'type': 'string', 'description': 'Amount of tokens to swap'}, 'tokenOutDenom': {'type': 'string', 'description': 'Denomination of the token to swap to'}}, 'additionalProperties': False}}, {'name': 'dex-swap', 'description': 'Execute a token swap on the DEX - must first check two tokens are available in the DEX pools by using `dex-get-pools`', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['networkName', 'tokenInDenom', 'tokenInAmount', 'tokenOutDenom'], 'properties': {'memo': {'type': 'string', 'description': 'Optional memo for the transaction'}, 'slippage': {'type': 'string', 'description': "Maximum acceptable slippage percentage (e.g., '1' for 1%)"}, 'networkName': {'type': 'string', 'description': 'Name of the network to use'}, 'tokenInDenom': {'type': 'string', 'description': 'Denomination of the token to swap from'}, 'tokenInAmount': {'type': 'string', 'description': 'Amount of tokens to swap'}, 'tokenOutDenom': {'type': 'string', 'description': 'Denomination of the token to swap to'}}, 'additionalProperties': False}}]
sequential-thinking
Sequential Thinking
Enhances problem-solving by breaking down problems into sequential steps.
2025-01-10T06:38:59.614Z
0
https://smithery.ai/server/sequential-thinking
true
null
{ "scanPassed": true }
[{'name': 'sequential_thinking', 'description': '\n An advanced tool for dynamic and reflective problem-solving through structured thoughts.\n \n Args:\n thought: The content of the current thought\n thought_number: Current position in the sequence\n total_thoughts: Expected total number of thoughts\n next_thought_needed: Whether another thought should follow\n stage: Current thinking stage (e.g., "Problem Definition", "Analysis")\n is_revision: Whether this revises a previous thought\n revises_thought: Number of thought being revised\n branch_from_thought: Starting point for a new thought branch\n branch_id: Identifier for the current branch\n needs_more_thoughts: Whether additional thoughts are needed\n score: Quality score (0.0 to 1.0)\n tags: Categories or labels for the thought\n \n Returns:\n JSON string containing thought analysis and metadata\n ', 'inputSchema': {'type': 'object', 'title': 'sequential_thinkingArguments', 'required': ['thought', 'thought_number', 'total_thoughts', 'next_thought_needed', 'stage'], 'properties': {'tags': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Tags', 'default': None}, 'score': {'anyOf': [{'type': 'number'}, {'type': 'null'}], 'title': 'Score', 'default': None}, 'stage': {'type': 'string', 'title': 'Stage'}, 'thought': {'type': 'string', 'title': 'Thought'}, 'branch_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Branch Id', 'default': None}, 'is_revision': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Is Revision', 'default': None}, 'thought_number': {'type': 'integer', 'title': 'Thought Number'}, 'total_thoughts': {'type': 'integer', 'title': 'Total Thoughts'}, 'revises_thought': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Revises Thought', 'default': None}, 'branch_from_thought': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Branch From Thought', 'default': None}, 'needs_more_thoughts': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Needs More Thoughts', 'default': None}, 'next_thought_needed': {'type': 'boolean', 'title': 'Next Thought Needed'}}}}, {'name': 'get_thinking_summary', 'description': '\n Generate a comprehensive summary of the entire thinking process.\n \n Returns:\n JSON string containing analysis of thought history\n ', 'inputSchema': {'type': 'object', 'title': 'get_thinking_summaryArguments', 'properties': {}}}, {'name': 'clear_thinking_history', 'description': '\n Clear all recorded thoughts and reset the server state.\n \n Returns:\n Confirmation message\n ', 'inputSchema': {'type': 'object', 'title': 'clear_thinking_historyArguments', 'properties': {}}}]
sequential-thinking
Sequential Thinking
Enhances problem-solving by breaking down problems into sequential steps.
2025-01-10T06:38:59.614Z
0
https://smithery.ai/server/sequential-thinking
true
null
{ "scanPassed": true }
[{'name': 'sequential_thinking', 'description': '\n An advanced tool for dynamic and reflective problem-solving through structured thoughts.\n \n Args:\n thought: The content of the current thought\n thought_number: Current position in the sequence\n total_thoughts: Expected total number of thoughts\n next_thought_needed: Whether another thought should follow\n stage: Current thinking stage (e.g., "Problem Definition", "Analysis")\n is_revision: Whether this revises a previous thought\n revises_thought: Number of thought being revised\n branch_from_thought: Starting point for a new thought branch\n branch_id: Identifier for the current branch\n needs_more_thoughts: Whether additional thoughts are needed\n score: Quality score (0.0 to 1.0)\n tags: Categories or labels for the thought\n \n Returns:\n JSON string containing thought analysis and metadata\n ', 'inputSchema': {'type': 'object', 'title': 'sequential_thinkingArguments', 'required': ['thought', 'thought_number', 'total_thoughts', 'next_thought_needed', 'stage'], 'properties': {'tags': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Tags', 'default': None}, 'score': {'anyOf': [{'type': 'number'}, {'type': 'null'}], 'title': 'Score', 'default': None}, 'stage': {'type': 'string', 'title': 'Stage'}, 'thought': {'type': 'string', 'title': 'Thought'}, 'branch_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Branch Id', 'default': None}, 'is_revision': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Is Revision', 'default': None}, 'thought_number': {'type': 'integer', 'title': 'Thought Number'}, 'total_thoughts': {'type': 'integer', 'title': 'Total Thoughts'}, 'revises_thought': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Revises Thought', 'default': None}, 'branch_from_thought': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Branch From Thought', 'default': None}, 'needs_more_thoughts': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Needs More Thoughts', 'default': None}, 'next_thought_needed': {'type': 'boolean', 'title': 'Next Thought Needed'}}}}, {'name': 'get_thinking_summary', 'description': '\n Generate a comprehensive summary of the entire thinking process.\n \n Returns:\n JSON string containing analysis of thought history\n ', 'inputSchema': {'type': 'object', 'title': 'get_thinking_summaryArguments', 'properties': {}}}, {'name': 'clear_thinking_history', 'description': '\n Clear all recorded thoughts and reset the server state.\n \n Returns:\n Confirmation message\n ', 'inputSchema': {'type': 'object', 'title': 'clear_thinking_historyArguments', 'properties': {}}}]
@ngoiyaeric/earthdata-mcp-server
Earthdata MCP Server
Enable efficient dataset discovery and retrieval for geospatial analysis using NASA Earth Data. Interact seamlessly with datasets and data granules to enhance your data-driven projects. Leverage powerful tools to search and analyze Earth data effortlessly.
2025-04-08T13:04:05.994Z
0
https://smithery.ai/server/@ngoiyaeric/earthdata-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'search_earth_datasets', 'description': '\n Search for datasets on NASA Earthdata.\n \n Args:\n search_keywords: Keywords to search for in the dataset titles.\n count: Number of datasets to return.\n temporal: (Optional) Temporal range in the format (date_from, date_to).\n bounding_box: (Optional) Bounding box in the format (lower_left_lon, lower_left_lat, upper_right_lon, upper_right_lat).\n \n Returns:\n list\n List of dataset abstracts.\n ', 'inputSchema': {'type': 'object', 'title': 'search_earth_datasetsArguments', 'required': ['search_keywords', 'count', 'temporal', 'bounding_box'], 'properties': {'count': {'type': 'integer', 'title': 'Count'}, 'temporal': {'anyOf': [{'type': 'array', 'items': {}}, {'type': 'null'}], 'title': 'Temporal'}, 'bounding_box': {'anyOf': [{'type': 'array', 'items': {}}, {'type': 'null'}], 'title': 'Bounding Box'}, 'search_keywords': {'type': 'string', 'title': 'Search Keywords'}}}}, {'name': 'search_earth_datagranules', 'description': '\n Search for data granules on NASA Earthdata.\n \n Args:\n short_name: Short name of the dataset.\n count: Number of data granules to return.\n temporal: (Optional) Temporal range in the format (date_from, date_to).\n bounding_box: (Optional) Bounding box in the format (lower_left_lon, lower_left_lat, upper_right_lon, upper_right_lat).\n \n Returns:\n list\n List of data granules.\n ', 'inputSchema': {'type': 'object', 'title': 'search_earth_datagranulesArguments', 'required': ['short_name', 'count', 'temporal', 'bounding_box'], 'properties': {'count': {'type': 'integer', 'title': 'Count'}, 'temporal': {'anyOf': [{'type': 'array', 'items': {}}, {'type': 'null'}], 'title': 'Temporal'}, 'short_name': {'type': 'string', 'title': 'Short Name'}, 'bounding_box': {'anyOf': [{'type': 'array', 'items': {}}, {'type': 'null'}], 'title': 'Bounding Box'}}}}]
@ngoiyaeric/earthdata-mcp-server
Earthdata MCP Server
Enable efficient dataset discovery and retrieval for geospatial analysis using NASA Earth Data. Interact seamlessly with datasets and data granules to enhance your data-driven projects. Leverage powerful tools to search and analyze Earth data effortlessly.
2025-04-08T13:04:05.994Z
0
https://smithery.ai/server/@ngoiyaeric/earthdata-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'search_earth_datasets', 'description': '\n Search for datasets on NASA Earthdata.\n \n Args:\n search_keywords: Keywords to search for in the dataset titles.\n count: Number of datasets to return.\n temporal: (Optional) Temporal range in the format (date_from, date_to).\n bounding_box: (Optional) Bounding box in the format (lower_left_lon, lower_left_lat, upper_right_lon, upper_right_lat).\n \n Returns:\n list\n List of dataset abstracts.\n ', 'inputSchema': {'type': 'object', 'title': 'search_earth_datasetsArguments', 'required': ['search_keywords', 'count', 'temporal', 'bounding_box'], 'properties': {'count': {'type': 'integer', 'title': 'Count'}, 'temporal': {'anyOf': [{'type': 'array', 'items': {}}, {'type': 'null'}], 'title': 'Temporal'}, 'bounding_box': {'anyOf': [{'type': 'array', 'items': {}}, {'type': 'null'}], 'title': 'Bounding Box'}, 'search_keywords': {'type': 'string', 'title': 'Search Keywords'}}}}, {'name': 'search_earth_datagranules', 'description': '\n Search for data granules on NASA Earthdata.\n \n Args:\n short_name: Short name of the dataset.\n count: Number of data granules to return.\n temporal: (Optional) Temporal range in the format (date_from, date_to).\n bounding_box: (Optional) Bounding box in the format (lower_left_lon, lower_left_lat, upper_right_lon, upper_right_lat).\n \n Returns:\n list\n List of data granules.\n ', 'inputSchema': {'type': 'object', 'title': 'search_earth_datagranulesArguments', 'required': ['short_name', 'count', 'temporal', 'bounding_box'], 'properties': {'count': {'type': 'integer', 'title': 'Count'}, 'temporal': {'anyOf': [{'type': 'array', 'items': {}}, {'type': 'null'}], 'title': 'Temporal'}, 'short_name': {'type': 'string', 'title': 'Short Name'}, 'bounding_box': {'anyOf': [{'type': 'array', 'items': {}}, {'type': 'null'}], 'title': 'Bounding Box'}}}}]
@kukapay/token-minter-mcp
Token Minter
Mint ERC-20 tokens effortlessly across 21 blockchains. Deploy new tokens, check balances, and manage transactions with ease, all through an interactive interface. Simplify your token management and deployment process today!
2025-03-21T03:00:54.849Z
0
https://smithery.ai/server/@kukapay/token-minter-mcp
true
null
null
[{'name': 'deployToken', 'description': 'Deploys a new ERC-20 token on the specified EVM-compatible chain with customizable decimals and initial supply. Returns the transaction hash without waiting for confirmation.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'symbol'], 'properties': {'name': {'type': 'string', 'maxLength': 32, 'minLength': 1, 'description': 'Token name'}, 'symbol': {'type': 'string', 'maxLength': 10, 'minLength': 1, 'description': 'Token symbol'}, 'chainId': {'type': 'number', 'default': 1, 'description': 'Target chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}, 'decimals': {'type': 'number', 'default': 18, 'maximum': 18, 'minimum': 0, 'description': 'Number of decimal places (0-18, default 18)'}, 'initialSupply': {'type': 'number', 'default': 1000000, 'description': 'Initial supply in token units (will be multiplied by 10^decimals, default 1,000,000)', 'exclusiveMinimum': 0}}, 'additionalProperties': False}}, {'name': 'getTokenInfo', 'description': 'Queries information about an existing ERC-20 token, including name, symbol, decimals, and total supply.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address'}}, 'additionalProperties': False}}, {'name': 'getBalance', 'description': 'Queries the native token balance (e.g., ETH or POL) of the current account on the specified chain.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}}, 'additionalProperties': False}}, {'name': 'getTokenBalance', 'description': 'Queries the balance of a specific ERC-20 token for the current account on the specified chain.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address'}}, 'additionalProperties': False}}, {'name': 'transferToken', 'description': 'Transfers a specified amount of ERC-20 tokens to a recipient address and waits for transaction confirmation.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'toAddress', 'amount'], 'properties': {'amount': {'type': 'number', 'description': 'Amount to transfer in token units (will be multiplied by 10^decimals)', 'exclusiveMinimum': 0}, 'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}, 'toAddress': {'type': 'string', 'description': 'Recipient address'}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address'}}, 'additionalProperties': False}}, {'name': 'getTransactionInfo', 'description': 'Retrieves details about a transaction, including sender, recipient, value, status, and deployed contract address if applicable.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'Transaction hash'}, 'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}}, 'additionalProperties': False}}]
@kukapay/token-minter-mcp
Token Minter
Mint ERC-20 tokens effortlessly across 21 blockchains. Deploy new tokens, check balances, and manage transactions with ease, all through an interactive interface. Simplify your token management and deployment process today!
2025-03-21T03:00:54.849Z
0
https://smithery.ai/server/@kukapay/token-minter-mcp
true
null
null
[{'name': 'deployToken', 'description': 'Deploys a new ERC-20 token on the specified EVM-compatible chain with customizable decimals and initial supply. Returns the transaction hash without waiting for confirmation.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'symbol'], 'properties': {'name': {'type': 'string', 'maxLength': 32, 'minLength': 1, 'description': 'Token name'}, 'symbol': {'type': 'string', 'maxLength': 10, 'minLength': 1, 'description': 'Token symbol'}, 'chainId': {'type': 'number', 'default': 1, 'description': 'Target chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}, 'decimals': {'type': 'number', 'default': 18, 'maximum': 18, 'minimum': 0, 'description': 'Number of decimal places (0-18, default 18)'}, 'initialSupply': {'type': 'number', 'default': 1000000, 'description': 'Initial supply in token units (will be multiplied by 10^decimals, default 1,000,000)', 'exclusiveMinimum': 0}}, 'additionalProperties': False}}, {'name': 'getTokenInfo', 'description': 'Queries information about an existing ERC-20 token, including name, symbol, decimals, and total supply.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address'}}, 'additionalProperties': False}}, {'name': 'getBalance', 'description': 'Queries the native token balance (e.g., ETH or POL) of the current account on the specified chain.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}}, 'additionalProperties': False}}, {'name': 'getTokenBalance', 'description': 'Queries the balance of a specific ERC-20 token for the current account on the specified chain.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address'}}, 'additionalProperties': False}}, {'name': 'transferToken', 'description': 'Transfers a specified amount of ERC-20 tokens to a recipient address and waits for transaction confirmation.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'toAddress', 'amount'], 'properties': {'amount': {'type': 'number', 'description': 'Amount to transfer in token units (will be multiplied by 10^decimals)', 'exclusiveMinimum': 0}, 'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}, 'toAddress': {'type': 'string', 'description': 'Recipient address'}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address'}}, 'additionalProperties': False}}, {'name': 'getTransactionInfo', 'description': 'Retrieves details about a transaction, including sender, recipient, value, status, and deployed contract address if applicable.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'Transaction hash'}, 'chainId': {'type': 'number', 'default': 1, 'description': 'Chain ID (e.g., 1 for Ethereum, 137 for Polygon)'}}, 'additionalProperties': False}}]
@franccesco/bloomy-mcp
Bloom Growth
Connect to Bloom Growth's GraphQL API and enable AI assistants to perform operations seamlessly. Query and mutate data effortlessly while retrieving user information and schema details. Enhance your applications with powerful GraphQL capabilities through a standardized interface.
2025-03-09T17:00:51.430Z
0
https://smithery.ai/server/@franccesco/bloomy-mcp
true
null
{ "scanPassed": true }
[{'name': 'get_query_details', 'description': 'Get detailed information about specific GraphQL queries.\n\n Retrieves argument requirements, return type information, descriptions, and\n example usage for the specified queries.\n\n Args:\n query_names: Comma-separated list of query names to get details for\n\n Returns:\n A YAML-formatted string containing detailed information about the requested queries\n ', 'inputSchema': {'type': 'object', 'title': 'get_query_detailsArguments', 'required': ['query_names'], 'properties': {'query_names': {'type': 'string', 'title': 'Query Names'}}}}, {'name': 'get_mutation_details', 'description': 'Get detailed information about specific GraphQL mutations.\n\n Retrieves argument requirements, return type information, descriptions, and\n example usage for the specified mutations.\n\n Args:\n mutation_names: Comma-separated list of mutation names to get details for\n\n Returns:\n A YAML-formatted string containing detailed information about the requested mutations\n ', 'inputSchema': {'type': 'object', 'title': 'get_mutation_detailsArguments', 'required': ['mutation_names'], 'properties': {'mutation_names': {'type': 'string', 'title': 'Mutation Names'}}}}, {'name': 'execute_query', 'description': 'Execute a GraphQL query or mutation with variables.\n\n Parses and executes the provided GraphQL operation string with optional variables.\n\n Args:\n query: Raw GraphQL query or mutation string\n variables: Optional dictionary of variables to use in the operation\n\n Returns:\n Dictionary containing the operation results or an error message string\n\n Raises:\n Exception: Handled internally, returns error message as string\n ', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}, 'variables': {'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}], 'title': 'Variables', 'default': None}}}}, {'name': 'get_authenticated_user_id', 'description': 'Get the ID of the currently authenticated user.\n\n Uses a special mutation to retrieve the ID of the user associated with\n the current API token.\n\n Returns:\n User ID string if successful, None if user not found, or error message string\n\n Raises:\n Exception: Handled internally, returns error message as string\n ', 'inputSchema': {'type': 'object', 'title': 'get_authenticated_user_idArguments', 'properties': {}}}]
@franccesco/bloomy-mcp
Bloom Growth
Connect to Bloom Growth's GraphQL API and enable AI assistants to perform operations seamlessly. Query and mutate data effortlessly while retrieving user information and schema details. Enhance your applications with powerful GraphQL capabilities through a standardized interface.
2025-03-09T17:00:51.430Z
0
https://smithery.ai/server/@franccesco/bloomy-mcp
true
null
{ "scanPassed": true }
[{'name': 'get_query_details', 'description': 'Get detailed information about specific GraphQL queries.\n\n Retrieves argument requirements, return type information, descriptions, and\n example usage for the specified queries.\n\n Args:\n query_names: Comma-separated list of query names to get details for\n\n Returns:\n A YAML-formatted string containing detailed information about the requested queries\n ', 'inputSchema': {'type': 'object', 'title': 'get_query_detailsArguments', 'required': ['query_names'], 'properties': {'query_names': {'type': 'string', 'title': 'Query Names'}}}}, {'name': 'get_mutation_details', 'description': 'Get detailed information about specific GraphQL mutations.\n\n Retrieves argument requirements, return type information, descriptions, and\n example usage for the specified mutations.\n\n Args:\n mutation_names: Comma-separated list of mutation names to get details for\n\n Returns:\n A YAML-formatted string containing detailed information about the requested mutations\n ', 'inputSchema': {'type': 'object', 'title': 'get_mutation_detailsArguments', 'required': ['mutation_names'], 'properties': {'mutation_names': {'type': 'string', 'title': 'Mutation Names'}}}}, {'name': 'execute_query', 'description': 'Execute a GraphQL query or mutation with variables.\n\n Parses and executes the provided GraphQL operation string with optional variables.\n\n Args:\n query: Raw GraphQL query or mutation string\n variables: Optional dictionary of variables to use in the operation\n\n Returns:\n Dictionary containing the operation results or an error message string\n\n Raises:\n Exception: Handled internally, returns error message as string\n ', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}, 'variables': {'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}], 'title': 'Variables', 'default': None}}}}, {'name': 'get_authenticated_user_id', 'description': 'Get the ID of the currently authenticated user.\n\n Uses a special mutation to retrieve the ID of the user associated with\n the current API token.\n\n Returns:\n User ID string if successful, None if user not found, or error message string\n\n Raises:\n Exception: Handled internally, returns error message as string\n ', 'inputSchema': {'type': 'object', 'title': 'get_authenticated_user_idArguments', 'properties': {}}}]
@DynamicEndpoints/paloalto-mcp-server
Palo Alto Networks MCP Server Suite
Manage your Palo Alto Networks firewalls and services seamlessly through a unified API interface. Simplify firewall operations, policy management, and device monitoring with specialized servers tailored for your needs.
2025-03-28T06:59:03.636Z
0
https://smithery.ai/server/@DynamicEndpoints/paloalto-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'get_system_info', 'description': 'Get system information from the Palo Alto firewall', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'list_resources', 'description': 'List resources from a specific category', 'inputSchema': {'type': 'object', 'required': ['category', 'resource_type'], 'properties': {'category': {'enum': ['OBJECTS', 'POLICIES', 'NETWORK', 'DEVICES'], 'type': 'string', 'description': 'Resource category to list'}, 'resource_type': {'type': 'string', 'description': 'Specific resource type within the category'}}}}, {'name': 'view_config_node_values', 'description': 'View configuration node values for XPath on the Palo Alto firewall', 'inputSchema': {'type': 'object', 'required': ['xpath'], 'properties': {'xpath': {'type': 'string', 'description': 'XPath to the configuration node'}}}}, {'name': 'multi_move_clone_configuration', 'description': 'Multi-Move or Multi-Clone the configuration of the Palo Alto firewall', 'inputSchema': {'type': 'object', 'required': ['config_paths', 'new_location', 'action'], 'properties': {'action': {'enum': ['move', 'clone'], 'type': 'string', 'description': 'Action to perform'}, 'config_paths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Paths to the configurations to move or clone'}, 'new_location': {'type': 'string', 'description': 'New location for the configurations'}}}}]
@DynamicEndpoints/paloalto-mcp-server
Palo Alto Networks MCP Server Suite
Manage your Palo Alto Networks firewalls and services seamlessly through a unified API interface. Simplify firewall operations, policy management, and device monitoring with specialized servers tailored for your needs.
2025-03-28T06:59:03.636Z
0
https://smithery.ai/server/@DynamicEndpoints/paloalto-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'get_system_info', 'description': 'Get system information from the Palo Alto firewall', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'list_resources', 'description': 'List resources from a specific category', 'inputSchema': {'type': 'object', 'required': ['category', 'resource_type'], 'properties': {'category': {'enum': ['OBJECTS', 'POLICIES', 'NETWORK', 'DEVICES'], 'type': 'string', 'description': 'Resource category to list'}, 'resource_type': {'type': 'string', 'description': 'Specific resource type within the category'}}}}, {'name': 'view_config_node_values', 'description': 'View configuration node values for XPath on the Palo Alto firewall', 'inputSchema': {'type': 'object', 'required': ['xpath'], 'properties': {'xpath': {'type': 'string', 'description': 'XPath to the configuration node'}}}}, {'name': 'multi_move_clone_configuration', 'description': 'Multi-Move or Multi-Clone the configuration of the Palo Alto firewall', 'inputSchema': {'type': 'object', 'required': ['config_paths', 'new_location', 'action'], 'properties': {'action': {'enum': ['move', 'clone'], 'type': 'string', 'description': 'Action to perform'}, 'config_paths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Paths to the configurations to move or clone'}, 'new_location': {'type': 'string', 'description': 'New location for the configurations'}}}}]
@ivan-saorin/mcp-expr-lang
Expression Evaluation Server
Evaluate complex expressions and perform advanced data manipulations directly within your conversations. Transform, filter, sort, and compute on arrays, objects, strings, and numbers seamlessly. Enhance your AI interactions with powerful expression capabilities.
2025-05-01T22:01:07.441Z
0
https://smithery.ai/server/@ivan-saorin/mcp-expr-lang
true
null
null
[{'name': 'eval', 'description': 'Evaluate an expression', 'inputSchema': {'type': 'object', '$schema': 'https://json-schema.org/draft/2020-12/schema', 'required': ['expression'], 'properties': {'env': {'type': 'object', 'description': 'Optional parameters map'}, 'expression': {'type': 'string', 'description': 'The expression to be evaluated'}}}}]
@ivan-saorin/mcp-expr-lang
Expression Evaluation Server
Evaluate complex expressions and perform advanced data manipulations directly within your conversations. Transform, filter, sort, and compute on arrays, objects, strings, and numbers seamlessly. Enhance your AI interactions with powerful expression capabilities.
2025-05-01T22:01:07.441Z
0
https://smithery.ai/server/@ivan-saorin/mcp-expr-lang
true
null
null
[{'name': 'eval', 'description': 'Evaluate an expression', 'inputSchema': {'type': 'object', '$schema': 'https://json-schema.org/draft/2020-12/schema', 'required': ['expression'], 'properties': {'env': {'type': 'object', 'description': 'Optional parameters map'}, 'expression': {'type': 'string', 'description': 'The expression to be evaluated'}}}}]
@Dosugamea/voicevox-mcp-server
Voicevox Speech Synthesis Server
Provide seamless voice synthesis capabilities compatible with VOICEVOX and similar engines through the Model Context Protocol. Enable agents using Claude 3.7 or other MCP clients to generate speech audio easily. Support both Windows and Docker environments for flexible deployment.
2025-04-23T21:00:55.125Z
0
https://smithery.ai/server/@Dosugamea/voicevox-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'voicevox', 'description': 'VOICEVOXを使用して音声を合成し、ホストコンピュータで再生します', 'inputSchema': {'type': 'object', 'properties': {'text': {'type': 'string', 'description': '合成する文章'}}}}]
@Dosugamea/voicevox-mcp-server
Voicevox Speech Synthesis Server
Provide seamless voice synthesis capabilities compatible with VOICEVOX and similar engines through the Model Context Protocol. Enable agents using Claude 3.7 or other MCP clients to generate speech audio easily. Support both Windows and Docker environments for flexible deployment.
2025-04-23T21:00:55.125Z
0
https://smithery.ai/server/@Dosugamea/voicevox-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'voicevox', 'description': 'VOICEVOXを使用して音声を合成し、ホストコンピュータで再生します', 'inputSchema': {'type': 'object', 'properties': {'text': {'type': 'string', 'description': '合成する文章'}}}}]
@burakdirin/clickhouse-mcp-server
Clickhouse MCP Server
An MCP server implementation that enables Claude AI to interact with Clickhouse databases. Features include secure database connections, query execution, read-only mode support, and multi-query capabilities.
2025-03-17T23:53:27.729Z
30
https://smithery.ai/server/@burakdirin/clickhouse-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'connect_database', 'description': 'Connect to a specific ClickHouse database', 'inputSchema': {'type': 'object', 'title': 'connect_databaseArguments', 'required': ['database'], 'properties': {'database': {'type': 'string', 'title': 'Database'}}}}, {'name': 'execute_query', 'description': 'Execute ClickHouse queries', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}]
@burakdirin/clickhouse-mcp-server
Clickhouse MCP Server
An MCP server implementation that enables Claude AI to interact with Clickhouse databases. Features include secure database connections, query execution, read-only mode support, and multi-query capabilities.
2025-03-17T23:53:27.729Z
30
https://smithery.ai/server/@burakdirin/clickhouse-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'connect_database', 'description': 'Connect to a specific ClickHouse database', 'inputSchema': {'type': 'object', 'title': 'connect_databaseArguments', 'required': ['database'], 'properties': {'database': {'type': 'string', 'title': 'Database'}}}}, {'name': 'execute_query', 'description': 'Execute ClickHouse queries', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}]
@jorgeraad/mcp4gql
mcp4gql
Enable MCP clients to interact seamlessly with any GraphQL API by exposing introspection and query execution tools. Simplify integration by providing a standardized interface to fetch schemas and run operations on your GraphQL endpoint. Securely connect using bearer token authentication if needed.
2025-04-28T00:43:21.077Z
0
https://smithery.ai/server/@jorgeraad/mcp4gql
true
https://spjawbfpwezjfmic…d4819f46f9ea.png
{ "scanPassed": true }
[{'name': 'introspectGraphQLSchema', 'description': 'Fetches the schema of the target GraphQL API using introspection. Returns the schema in JSON format.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'executeGraphQLOperation', 'description': 'Executes an arbitrary GraphQL query or mutation against the target API. Use introspectGraphQLSchema first to understand the available operations.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The GraphQL query string to execute.'}, 'variables': {'type': 'object', 'description': 'An optional object containing variables for the query.', 'additionalProperties': {}}, 'operationName': {'type': 'string', 'description': 'An optional name for the operation, if the query contains multiple operations.'}}, 'additionalProperties': False}}]
@jorgeraad/mcp4gql
mcp4gql
Enable MCP clients to interact seamlessly with any GraphQL API by exposing introspection and query execution tools. Simplify integration by providing a standardized interface to fetch schemas and run operations on your GraphQL endpoint. Securely connect using bearer token authentication if needed.
2025-04-28T00:43:21.077Z
0
https://smithery.ai/server/@jorgeraad/mcp4gql
true
https://spjawbfpwezjfmic…d4819f46f9ea.png
{ "scanPassed": true }
[{'name': 'introspectGraphQLSchema', 'description': 'Fetches the schema of the target GraphQL API using introspection. Returns the schema in JSON format.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'executeGraphQLOperation', 'description': 'Executes an arbitrary GraphQL query or mutation against the target API. Use introspectGraphQLSchema first to understand the available operations.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The GraphQL query string to execute.'}, 'variables': {'type': 'object', 'description': 'An optional object containing variables for the query.', 'additionalProperties': {}}, 'operationName': {'type': 'string', 'description': 'An optional name for the operation, if the query contains multiple operations.'}}, 'additionalProperties': False}}]
@hpohlmann/home-assistant-mcp
Home Assistant Integration
Control your Home Assistant devices effortlessly using AI assistants. Search for entities and manage devices with simple commands, enhancing your smart home experience. Streamline your interactions with Home Assistant through natural language processing.
2025-03-16T08:00:55.342Z
0
https://smithery.ai/server/@hpohlmann/home-assistant-mcp
true
null
null
[{'name': 'control_device', 'description': "Control a Home Assistant entity by turning it on or off.\n \n Args:\n entity_id: The Home Assistant entity ID to control (format: domain.entity)\n state: The desired state ('on' or 'off')\n ", 'inputSchema': {'type': 'object', 'title': 'control_deviceArguments', 'required': ['entity_id', 'state'], 'properties': {'state': {'type': 'string', 'title': 'State'}, 'entity_id': {'type': 'string', 'title': 'Entity Id'}}}}, {'name': 'search_entities', 'description': 'Search for Home Assistant entities matching a natural language description.\n \n Args:\n description: Natural language description of the entity (e.g., "office light", "kitchen fan")\n \n Returns:\n A list of matching entity IDs with their friendly names, or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'search_entitiesArguments', 'required': ['description'], 'properties': {'description': {'type': 'string', 'title': 'Description'}}}}, {'name': 'set_device_color', 'description': 'Set the color and optionally brightness of a light entity.\n \n Args:\n entity_id: The Home Assistant entity ID to control (format: light.entity)\n red: Red component (0-255)\n green: Green component (0-255)\n blue: Blue component (0-255)\n brightness: Optional brightness level (0-255)\n ', 'inputSchema': {'type': 'object', 'title': 'set_device_colorArguments', 'required': ['entity_id', 'red', 'green', 'blue'], 'properties': {'red': {'type': 'integer', 'title': 'Red'}, 'blue': {'type': 'integer', 'title': 'Blue'}, 'green': {'type': 'integer', 'title': 'Green'}, 'entity_id': {'type': 'string', 'title': 'Entity Id'}, 'brightness': {'type': 'integer', 'title': 'Brightness', 'default': None}}}}]
@hpohlmann/home-assistant-mcp
Home Assistant Integration
Control your Home Assistant devices effortlessly using AI assistants. Search for entities and manage devices with simple commands, enhancing your smart home experience. Streamline your interactions with Home Assistant through natural language processing.
2025-03-16T08:00:55.342Z
0
https://smithery.ai/server/@hpohlmann/home-assistant-mcp
true
null
null
[{'name': 'control_device', 'description': "Control a Home Assistant entity by turning it on or off.\n \n Args:\n entity_id: The Home Assistant entity ID to control (format: domain.entity)\n state: The desired state ('on' or 'off')\n ", 'inputSchema': {'type': 'object', 'title': 'control_deviceArguments', 'required': ['entity_id', 'state'], 'properties': {'state': {'type': 'string', 'title': 'State'}, 'entity_id': {'type': 'string', 'title': 'Entity Id'}}}}, {'name': 'search_entities', 'description': 'Search for Home Assistant entities matching a natural language description.\n \n Args:\n description: Natural language description of the entity (e.g., "office light", "kitchen fan")\n \n Returns:\n A list of matching entity IDs with their friendly names, or an error message\n ', 'inputSchema': {'type': 'object', 'title': 'search_entitiesArguments', 'required': ['description'], 'properties': {'description': {'type': 'string', 'title': 'Description'}}}}, {'name': 'set_device_color', 'description': 'Set the color and optionally brightness of a light entity.\n \n Args:\n entity_id: The Home Assistant entity ID to control (format: light.entity)\n red: Red component (0-255)\n green: Green component (0-255)\n blue: Blue component (0-255)\n brightness: Optional brightness level (0-255)\n ', 'inputSchema': {'type': 'object', 'title': 'set_device_colorArguments', 'required': ['entity_id', 'red', 'green', 'blue'], 'properties': {'red': {'type': 'integer', 'title': 'Red'}, 'blue': {'type': 'integer', 'title': 'Blue'}, 'green': {'type': 'integer', 'title': 'Green'}, 'entity_id': {'type': 'string', 'title': 'Entity Id'}, 'brightness': {'type': 'integer', 'title': 'Brightness', 'default': None}}}}]
@formulahendry/mcp-server-code-runner
Code Runner MCP Server
Run code snippets in various programming languages and see the results instantly. Enhance your coding experience by executing code directly within your environment, supporting a wide range of languages. Perfect for testing and debugging code snippets quickly and efficiently.
2025-03-20T21:00:56.714Z
15
https://smithery.ai/server/@formulahendry/mcp-server-code-runner
true
null
{ "scanPassed": true }
[{'name': 'run-code', 'description': 'Run code snippet and return the result.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['code', 'languageId'], 'properties': {'code': {'type': 'string', 'description': 'Code Snippet'}, 'languageId': {'enum': ['javascript', 'php', 'python', 'perl', 'perl6', 'ruby', 'go', 'lua', 'groovy', 'powershell', 'bat', 'shellscript', 'fsharp', 'csharp', 'vbscript', 'typescript', 'coffeescript', 'scala', 'swift', 'julia', 'crystal', 'ocaml', 'r', 'applescript', 'clojure', 'racket', 'scheme', 'ahk', 'autoit', 'dart', 'haskell', 'nim', 'lisp', 'kit', 'v', 'sass', 'scss'], 'type': 'string', 'description': 'Language ID'}}, 'additionalProperties': False}}]
@formulahendry/mcp-server-code-runner
Code Runner MCP Server
Run code snippets in various programming languages and see the results instantly. Enhance your coding experience by executing code directly within your environment, supporting a wide range of languages. Perfect for testing and debugging code snippets quickly and efficiently.
2025-03-20T21:00:56.714Z
15
https://smithery.ai/server/@formulahendry/mcp-server-code-runner
true
null
{ "scanPassed": true }
[{'name': 'run-code', 'description': 'Run code snippet and return the result.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['code', 'languageId'], 'properties': {'code': {'type': 'string', 'description': 'Code Snippet'}, 'languageId': {'enum': ['javascript', 'php', 'python', 'perl', 'perl6', 'ruby', 'go', 'lua', 'groovy', 'powershell', 'bat', 'shellscript', 'fsharp', 'csharp', 'vbscript', 'typescript', 'coffeescript', 'scala', 'swift', 'julia', 'crystal', 'ocaml', 'r', 'applescript', 'clojure', 'racket', 'scheme', 'ahk', 'autoit', 'dart', 'haskell', 'nim', 'lisp', 'kit', 'v', 'sass', 'scss'], 'type': 'string', 'description': 'Language ID'}}, 'additionalProperties': False}}]
@wildfly-extras/wildfly-mcp-server
WildFly MCP Server
Integrate with your AI chatbot to interact with WildFly servers using natural language.
2025-02-12T13:22:25.524Z
0
https://smithery.ai/server/@wildfly-extras/wildfly-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'disableWildFlyLoggingCategory', 'description': 'Disable a logging category for the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': ['loggingCategory'], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}, 'loggingCategory': {'type': 'string'}}}}, {'name': 'enableWildFlyLoggingCategory', 'description': 'Enable a logging category for the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': ['loggingCategory'], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}, 'loggingCategory': {'type': 'string'}}}}, {'name': 'getWildFlyConsumedCPU', 'description': 'Get the percentage of cpu consumed by the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'getWildFlyConsumedMemory', 'description': 'Get the percentage of memory consumed by the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'getWildFlyLogFileContent', 'description': 'Get the log file content of the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}, 'numberOfLines': {'type': 'string', 'description': 'The optional number of log file lines to retrieve. By default the last 200 lines are retrieved. Use `-1` to get all lines.'}}}}, {'name': 'getWildFlyLoggingCategories', 'description': 'Get the list of the enabled logging categories for the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'getWildFlyPrometheusMetrics', 'description': 'Get the metrics (in prometheus format) of the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}}}}, {'name': 'getWildFlyServerConfiguration', 'description': 'Gets the server configuration in JSON format of the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'getWildFlyStatus', 'description': 'Get the status of the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'invokeWildFlyCLIOperation', 'description': 'Invoke a single WildFly CLI operation on the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': ['operation'], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'operation': {'type': 'string'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}]
@wildfly-extras/wildfly-mcp-server
WildFly MCP Server
Integrate with your AI chatbot to interact with WildFly servers using natural language.
2025-02-12T13:22:25.524Z
0
https://smithery.ai/server/@wildfly-extras/wildfly-mcp-server
true
null
{ "scanPassed": true }
[{'name': 'disableWildFlyLoggingCategory', 'description': 'Disable a logging category for the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': ['loggingCategory'], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}, 'loggingCategory': {'type': 'string'}}}}, {'name': 'enableWildFlyLoggingCategory', 'description': 'Enable a logging category for the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': ['loggingCategory'], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}, 'loggingCategory': {'type': 'string'}}}}, {'name': 'getWildFlyConsumedCPU', 'description': 'Get the percentage of cpu consumed by the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'getWildFlyConsumedMemory', 'description': 'Get the percentage of memory consumed by the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'getWildFlyLogFileContent', 'description': 'Get the log file content of the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}, 'numberOfLines': {'type': 'string', 'description': 'The optional number of log file lines to retrieve. By default the last 200 lines are retrieved. Use `-1` to get all lines.'}}}}, {'name': 'getWildFlyLoggingCategories', 'description': 'Get the list of the enabled logging categories for the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'getWildFlyPrometheusMetrics', 'description': 'Get the metrics (in prometheus format) of the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}}}}, {'name': 'getWildFlyServerConfiguration', 'description': 'Gets the server configuration in JSON format of the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'getWildFlyStatus', 'description': 'Get the status of the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}, {'name': 'invokeWildFlyCLIOperation', 'description': 'Invoke a single WildFly CLI operation on the WildFly server running on the provided host and port arguments.', 'inputSchema': {'type': 'object', 'required': ['operation'], 'properties': {'host': {'type': 'string', 'description': 'Optional WildFly server host name. By default localhost is used.'}, 'port': {'type': 'string', 'description': 'Optional WildFly server port. By default 9990 is used.'}, 'userName': {'type': 'string', 'description': 'Optional user name'}, 'operation': {'type': 'string'}, 'userPassword': {'type': 'string', 'description': 'Optional user password'}}}}]
@mcpdotdirect/starknet-mcp-server
Starknet MCP Server
A comprehensive Model Context Protocol (MCP) server for the Starknet blockchain. This server provides AI agents with the ability to interact with Starknet networks, query blockchain data, manage wallets, and interact with smart contracts.
2025-04-18T20:36:44.716Z
0
https://smithery.ai/server/@mcpdotdirect/starknet-mcp-server
true
https://spjawbfpwezjfmic…55d7c7d4d184.png
null
[{'name': 'get_starknet_chain_info', 'description': 'Get information about a Starknet network', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_supported_starknet_networks', 'description': 'Get a list of supported Starknet networks', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get_starknet_eth_balance', 'description': 'Get the ETH balance for a Starknet address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address or Starknet ID (with or without .stark)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_starknet_token_balance', 'description': 'Get the token balance for a Starknet address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'ownerAddress': {'type': 'string', 'description': "Owner's Starknet address or Starknet ID"}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_strk_balance', 'description': 'Get the STRK token balance for a Starknet address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address or Starknet ID (with or without .stark)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_starknet_native_balances', 'description': 'Get all native token balances (ETH and STRK) for a Starknet address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address or Starknet ID (with or without .stark)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'resolve_starknet_name', 'description': 'Get the Starknet ID for an address', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address to lookup (must be a valid address, not a name)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'resolve_starknet_address', 'description': 'Get the address for a Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Starknet ID to lookup (with or without .stark)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_starknet_profile', 'description': 'Get the full Starknet ID profile for an address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address or Starknet ID to lookup'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'validate_starknet_domain', 'description': 'Check if a string is a valid Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domain'], 'properties': {'domain': {'type': 'string', 'description': 'Starknet ID to validate (with or without .stark)'}}, 'additionalProperties': False}}, {'name': 'get_starknet_block', 'description': 'Get information about a specific block', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'blockIdentifier': {'type': 'string', 'description': "Block number, hash, or 'latest'/'pending'. Defaults to 'latest'."}}, 'additionalProperties': False}}, {'name': 'get_starknet_block_transactions', 'description': 'Get transactions in a specific block', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'blockIdentifier': {'type': 'string', 'description': "Block number, hash, or 'latest'/'pending'. Defaults to 'latest'."}}, 'additionalProperties': False}}, {'name': 'get_starknet_transaction', 'description': 'Get details about a transaction', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'Transaction hash'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_starknet_transaction_receipt', 'description': 'Get transaction receipt', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'Transaction hash'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'call_starknet_contract', 'description': 'Call a read-only function on a contract', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'entrypoint'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'calldata': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Call data array (optional)'}, 'entrypoint': {'type': 'string', 'description': 'Function name to call'}, 'resultTypes': {'type': 'array', 'items': {'enum': ['felt', 'uint256', 'address', 'string'], 'type': 'string'}, 'description': "Expected return types for each result value (e.g., ['felt', 'uint256', 'address'])"}, 'contractAddress': {'type': 'string', 'description': 'Contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_contract_class', 'description': 'Get the class (ABI and other information) of a contract', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'contractAddress': {'type': 'string', 'description': 'Contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_token_info', 'description': 'Get information about a token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'check_starknet_nft_ownership', 'description': 'Check if an address owns a specific NFT', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'tokenId', 'ownerAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'tokenId': {'type': 'string', 'description': 'Token ID to check'}, 'ownerAddress': {'type': 'string', 'description': "Owner's Starknet address or Starknet ID to check against"}, 'tokenAddress': {'type': 'string', 'description': 'NFT contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_nft_balance', 'description': 'Get the number of NFTs owned by an address for a specific collection', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'ownerAddress': {'type': 'string', 'description': "Owner's Starknet address or Starknet ID"}, 'tokenAddress': {'type': 'string', 'description': 'NFT contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_token_supply', 'description': 'Get the total supply of a token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'check_starknet_transaction_status', 'description': 'Check if a transaction is confirmed (finalized)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'Transaction hash'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'transfer_starknet_eth', 'description': 'Transfer ETH from one account to another', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey', 'from', 'to', 'amount'], 'properties': {'to': {'type': 'string', 'description': "Recipient's Starknet address or Starknet ID"}, 'from': {'type': 'string', 'description': "Sender's Starknet address"}, 'amount': {'type': 'string', 'description': 'Amount to transfer in ETH (human readable format, not wei)'}, 'maxFee': {'type': 'string', 'description': 'Maximum fee to pay (optional)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'privateKey': {'type': 'string', 'description': 'Private key of the sender account (not stored, only used to sign the transaction)'}}, 'additionalProperties': False}}, {'name': 'transfer_starknet_strk', 'description': 'Transfer STRK from one account to another', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey', 'from', 'to', 'amount'], 'properties': {'to': {'type': 'string', 'description': "Recipient's Starknet address or Starknet ID"}, 'from': {'type': 'string', 'description': "Sender's Starknet address"}, 'amount': {'type': 'string', 'description': 'Amount to transfer in STRK (human readable format, not wei)'}, 'maxFee': {'type': 'string', 'description': 'Maximum fee to pay (optional)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'privateKey': {'type': 'string', 'description': 'Private key of the sender account (not stored, only used to sign the transaction)'}}, 'additionalProperties': False}}, {'name': 'transfer_starknet_token', 'description': 'Transfer ERC20 tokens from one account to another', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey', 'from', 'to', 'tokenAddress', 'amount'], 'properties': {'to': {'type': 'string', 'description': "Recipient's Starknet address or Starknet ID"}, 'from': {'type': 'string', 'description': "Sender's Starknet address"}, 'amount': {'type': 'string', 'description': "Amount to transfer in token's standard units (human readable format, not in smallest unit)"}, 'maxFee': {'type': 'string', 'description': 'Maximum fee to pay (optional)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'privateKey': {'type': 'string', 'description': 'Private key of the sender account (not stored, only used to sign the transaction)'}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'execute_starknet_contract', 'description': 'Execute a contract call (write operation)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey', 'accountAddress', 'contractAddress', 'entrypoint'], 'properties': {'maxFee': {'type': 'string', 'description': 'Maximum fee to pay (optional)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'calldata': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Call data array (optional)'}, 'entrypoint': {'type': 'string', 'description': 'Function name to call'}, 'privateKey': {'type': 'string', 'description': 'Private key of the sender account (not stored, only used to sign the transaction)'}, 'accountAddress': {'type': 'string', 'description': "Sender's Starknet address"}, 'contractAddress': {'type': 'string', 'description': 'Contract address or Starknet ID'}}, 'additionalProperties': False}}]
@mcpdotdirect/starknet-mcp-server
Starknet MCP Server
A comprehensive Model Context Protocol (MCP) server for the Starknet blockchain. This server provides AI agents with the ability to interact with Starknet networks, query blockchain data, manage wallets, and interact with smart contracts.
2025-04-18T20:36:44.716Z
0
https://smithery.ai/server/@mcpdotdirect/starknet-mcp-server
true
https://spjawbfpwezjfmic…55d7c7d4d184.png
null
[{'name': 'get_starknet_chain_info', 'description': 'Get information about a Starknet network', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_supported_starknet_networks', 'description': 'Get a list of supported Starknet networks', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get_starknet_eth_balance', 'description': 'Get the ETH balance for a Starknet address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address or Starknet ID (with or without .stark)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_starknet_token_balance', 'description': 'Get the token balance for a Starknet address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'ownerAddress': {'type': 'string', 'description': "Owner's Starknet address or Starknet ID"}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_strk_balance', 'description': 'Get the STRK token balance for a Starknet address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address or Starknet ID (with or without .stark)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_starknet_native_balances', 'description': 'Get all native token balances (ETH and STRK) for a Starknet address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address or Starknet ID (with or without .stark)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'resolve_starknet_name', 'description': 'Get the Starknet ID for an address', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address to lookup (must be a valid address, not a name)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'resolve_starknet_address', 'description': 'Get the address for a Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Starknet ID to lookup (with or without .stark)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_starknet_profile', 'description': 'Get the full Starknet ID profile for an address or Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Starknet address or Starknet ID to lookup'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'validate_starknet_domain', 'description': 'Check if a string is a valid Starknet ID', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domain'], 'properties': {'domain': {'type': 'string', 'description': 'Starknet ID to validate (with or without .stark)'}}, 'additionalProperties': False}}, {'name': 'get_starknet_block', 'description': 'Get information about a specific block', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'blockIdentifier': {'type': 'string', 'description': "Block number, hash, or 'latest'/'pending'. Defaults to 'latest'."}}, 'additionalProperties': False}}, {'name': 'get_starknet_block_transactions', 'description': 'Get transactions in a specific block', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'blockIdentifier': {'type': 'string', 'description': "Block number, hash, or 'latest'/'pending'. Defaults to 'latest'."}}, 'additionalProperties': False}}, {'name': 'get_starknet_transaction', 'description': 'Get details about a transaction', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'Transaction hash'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'get_starknet_transaction_receipt', 'description': 'Get transaction receipt', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'Transaction hash'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'call_starknet_contract', 'description': 'Call a read-only function on a contract', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress', 'entrypoint'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'calldata': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Call data array (optional)'}, 'entrypoint': {'type': 'string', 'description': 'Function name to call'}, 'resultTypes': {'type': 'array', 'items': {'enum': ['felt', 'uint256', 'address', 'string'], 'type': 'string'}, 'description': "Expected return types for each result value (e.g., ['felt', 'uint256', 'address'])"}, 'contractAddress': {'type': 'string', 'description': 'Contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_contract_class', 'description': 'Get the class (ABI and other information) of a contract', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['contractAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'contractAddress': {'type': 'string', 'description': 'Contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_token_info', 'description': 'Get information about a token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'check_starknet_nft_ownership', 'description': 'Check if an address owns a specific NFT', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'tokenId', 'ownerAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'tokenId': {'type': 'string', 'description': 'Token ID to check'}, 'ownerAddress': {'type': 'string', 'description': "Owner's Starknet address or Starknet ID to check against"}, 'tokenAddress': {'type': 'string', 'description': 'NFT contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_nft_balance', 'description': 'Get the number of NFTs owned by an address for a specific collection', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'ownerAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'ownerAddress': {'type': 'string', 'description': "Owner's Starknet address or Starknet ID"}, 'tokenAddress': {'type': 'string', 'description': 'NFT contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'get_starknet_token_supply', 'description': 'Get the total supply of a token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'check_starknet_transaction_status', 'description': 'Check if a transaction is confirmed (finalized)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['txHash'], 'properties': {'txHash': {'type': 'string', 'description': 'Transaction hash'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}}, 'additionalProperties': False}}, {'name': 'transfer_starknet_eth', 'description': 'Transfer ETH from one account to another', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey', 'from', 'to', 'amount'], 'properties': {'to': {'type': 'string', 'description': "Recipient's Starknet address or Starknet ID"}, 'from': {'type': 'string', 'description': "Sender's Starknet address"}, 'amount': {'type': 'string', 'description': 'Amount to transfer in ETH (human readable format, not wei)'}, 'maxFee': {'type': 'string', 'description': 'Maximum fee to pay (optional)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'privateKey': {'type': 'string', 'description': 'Private key of the sender account (not stored, only used to sign the transaction)'}}, 'additionalProperties': False}}, {'name': 'transfer_starknet_strk', 'description': 'Transfer STRK from one account to another', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey', 'from', 'to', 'amount'], 'properties': {'to': {'type': 'string', 'description': "Recipient's Starknet address or Starknet ID"}, 'from': {'type': 'string', 'description': "Sender's Starknet address"}, 'amount': {'type': 'string', 'description': 'Amount to transfer in STRK (human readable format, not wei)'}, 'maxFee': {'type': 'string', 'description': 'Maximum fee to pay (optional)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'privateKey': {'type': 'string', 'description': 'Private key of the sender account (not stored, only used to sign the transaction)'}}, 'additionalProperties': False}}, {'name': 'transfer_starknet_token', 'description': 'Transfer ERC20 tokens from one account to another', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey', 'from', 'to', 'tokenAddress', 'amount'], 'properties': {'to': {'type': 'string', 'description': "Recipient's Starknet address or Starknet ID"}, 'from': {'type': 'string', 'description': "Sender's Starknet address"}, 'amount': {'type': 'string', 'description': "Amount to transfer in token's standard units (human readable format, not in smallest unit)"}, 'maxFee': {'type': 'string', 'description': 'Maximum fee to pay (optional)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'privateKey': {'type': 'string', 'description': 'Private key of the sender account (not stored, only used to sign the transaction)'}, 'tokenAddress': {'type': 'string', 'description': 'Token contract address or Starknet ID'}}, 'additionalProperties': False}}, {'name': 'execute_starknet_contract', 'description': 'Execute a contract call (write operation)', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['privateKey', 'accountAddress', 'contractAddress', 'entrypoint'], 'properties': {'maxFee': {'type': 'string', 'description': 'Maximum fee to pay (optional)'}, 'network': {'type': 'string', 'description': "Network name (e.g., 'mainnet', 'sepolia'). Defaults to Mainnet."}, 'calldata': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Call data array (optional)'}, 'entrypoint': {'type': 'string', 'description': 'Function name to call'}, 'privateKey': {'type': 'string', 'description': 'Private key of the sender account (not stored, only used to sign the transaction)'}, 'accountAddress': {'type': 'string', 'description': "Sender's Starknet address"}, 'contractAddress': {'type': 'string', 'description': 'Contract address or Starknet ID'}}, 'additionalProperties': False}}]
@kilkelly/nano-currency-mcp-server
Nano Currency Server
Enable AI agents to send Nano currency and retrieve account information seamlessly. This server allows for fast, feeless transactions, empowering your agents to manage digital currency efficiently. Test with small amounts to ensure safe operations in your applications.
2025-04-05T19:00:42.973Z
0
https://smithery.ai/server/@kilkelly/nano-currency-mcp-server
true
null
null
[{'name': 'nano_send', 'description': 'Send a specified amount of Nano currency from a predefined account to a destination Nano address.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['destination_address', 'amount'], 'properties': {'amount': {'type': 'string', 'description': 'Amount of Nano to send (max 0 by default)'}, 'destination_address': {'type': 'string', 'description': 'Nano address to send the nano to'}}, 'additionalProperties': False}}, {'name': 'nano_account_info', 'description': 'Retrieve detailed information about a specific Nano account/address, including balance (in Nano and raw units), representative, and frontier block.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Nano address/account to get information about'}}, 'additionalProperties': False}}, {'name': 'nano_my_account_info', 'description': 'Retrieve detailed information about my Nano account/address, including balance (in Nano and raw units), representative, and frontier block. This is the account that is used to send Nano from.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'block_info', 'description': 'Retrieve detailed information about a specific Nano block.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['hash'], 'properties': {'hash': {'type': 'string', 'description': 'Hash for the Nano block to get information about'}}, 'additionalProperties': False}}]
@kilkelly/nano-currency-mcp-server
Nano Currency Server
Enable AI agents to send Nano currency and retrieve account information seamlessly. This server allows for fast, feeless transactions, empowering your agents to manage digital currency efficiently. Test with small amounts to ensure safe operations in your applications.
2025-04-05T19:00:42.973Z
0
https://smithery.ai/server/@kilkelly/nano-currency-mcp-server
true
null
null
[{'name': 'nano_send', 'description': 'Send a specified amount of Nano currency from a predefined account to a destination Nano address.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['destination_address', 'amount'], 'properties': {'amount': {'type': 'string', 'description': 'Amount of Nano to send (max 0 by default)'}, 'destination_address': {'type': 'string', 'description': 'Nano address to send the nano to'}}, 'additionalProperties': False}}, {'name': 'nano_account_info', 'description': 'Retrieve detailed information about a specific Nano account/address, including balance (in Nano and raw units), representative, and frontier block.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['address'], 'properties': {'address': {'type': 'string', 'description': 'Nano address/account to get information about'}}, 'additionalProperties': False}}, {'name': 'nano_my_account_info', 'description': 'Retrieve detailed information about my Nano account/address, including balance (in Nano and raw units), representative, and frontier block. This is the account that is used to send Nano from.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'block_info', 'description': 'Retrieve detailed information about a specific Nano block.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['hash'], 'properties': {'hash': {'type': 'string', 'description': 'Hash for the Nano block to get information about'}}, 'additionalProperties': False}}]
@skrapeai/skrape-mcp
Skrape MCP Server
Get any website content - Convert webpages into clean, LLM-ready Markdown.
2025-01-27T21:00:32.330Z
0
https://smithery.ai/server/@skrapeai/skrape-mcp
true
null
{ "scanPassed": true }
[{'name': 'get_markdown', 'description': 'Get markdown content from a webpage using skrape.ai', 'inputSchema': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'URL of the webpage to scrape'}, 'options': {'type': 'object', 'default': {'renderJs': True}, 'properties': {'renderJs': {'type': 'boolean', 'default': True, 'description': 'Whether to render the JavaScript content of the website'}}, 'description': 'Additional scraping options'}, 'returnJson': {'type': 'boolean', 'default': False, 'description': 'Whether to return JSON response (true) or raw markdown (false)'}}}}]
@skrapeai/skrape-mcp
Skrape MCP Server
Get any website content - Convert webpages into clean, LLM-ready Markdown.
2025-01-27T21:00:32.330Z
0
https://smithery.ai/server/@skrapeai/skrape-mcp
true
null
{ "scanPassed": true }
[{'name': 'get_markdown', 'description': 'Get markdown content from a webpage using skrape.ai', 'inputSchema': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'URL of the webpage to scrape'}, 'options': {'type': 'object', 'default': {'renderJs': True}, 'properties': {'renderJs': {'type': 'boolean', 'default': True, 'description': 'Whether to render the JavaScript content of the website'}}, 'description': 'Additional scraping options'}, 'returnJson': {'type': 'boolean', 'default': False, 'description': 'Whether to return JSON response (true) or raw markdown (false)'}}}}]
@wopal/mcp-server-hotnews
HotNews Server
A Model Context Protocol server that provides real-time hot trending topics from major Chinese social platforms and news sites.
2024-12-22T16:14:54.083Z
601
https://smithery.ai/server/@wopal/mcp-server-hotnews
false
null
{ "scanPassed": true }
[{'name': 'get_hot_news', 'description': 'Get hot trending lists from various platforms', 'inputSchema': {'type': 'object', 'required': ['sources'], 'properties': {'sources': {'type': 'array', 'items': {'type': 'number', 'maximum': 9, 'minimum': 1}, 'description': 'Available HotNews sources (ID: Platform):\n\n{ID: 1, Platform: "Zhihu Hot List (知乎热榜)"},\n{ID: 2, Platform: "36Kr Hot List (36氪热榜)"},\n{ID: 3, Platform: "Baidu Hot Discussion (百度热点)"},\n{ID: 4, Platform: "Bilibili Hot List (B站热榜)"},\n{ID: 5, Platform: "Weibo Hot Search (微博热搜)"},\n{ID: 6, Platform: "Douyin Hot List (抖音热点)"},\n{ID: 7, Platform: "Hupu Hot List (虎扑热榜)"},\n{ID: 8, Platform: "Douban Hot List (豆瓣热榜)"},\n{ID: 9, Platform: "IT News (IT新闻)"}\n\nExample usage:\n- [3]: Get Baidu Hot Discussion only\n- [1,3,7]: Get hot lists from zhihuHot, Baidu, and huPu\n- [1,2,3,4]: Get hot lists from zhihuHot, 36Kr, Baidu, and Bilibili'}}}}]
@wopal/mcp-server-hotnews
HotNews Server
A Model Context Protocol server that provides real-time hot trending topics from major Chinese social platforms and news sites.
2024-12-22T16:14:54.083Z
601
https://smithery.ai/server/@wopal/mcp-server-hotnews
false
null
{ "scanPassed": true }
[{'name': 'get_hot_news', 'description': 'Get hot trending lists from various platforms', 'inputSchema': {'type': 'object', 'required': ['sources'], 'properties': {'sources': {'type': 'array', 'items': {'type': 'number', 'maximum': 9, 'minimum': 1}, 'description': 'Available HotNews sources (ID: Platform):\n\n{ID: 1, Platform: "Zhihu Hot List (知乎热榜)"},\n{ID: 2, Platform: "36Kr Hot List (36氪热榜)"},\n{ID: 3, Platform: "Baidu Hot Discussion (百度热点)"},\n{ID: 4, Platform: "Bilibili Hot List (B站热榜)"},\n{ID: 5, Platform: "Weibo Hot Search (微博热搜)"},\n{ID: 6, Platform: "Douyin Hot List (抖音热点)"},\n{ID: 7, Platform: "Hupu Hot List (虎扑热榜)"},\n{ID: 8, Platform: "Douban Hot List (豆瓣热榜)"},\n{ID: 9, Platform: "IT News (IT新闻)"}\n\nExample usage:\n- [3]: Get Baidu Hot Discussion only\n- [1,3,7]: Get hot lists from zhihuHot, Baidu, and huPu\n- [1,2,3,4]: Get hot lists from zhihuHot, 36Kr, Baidu, and Bilibili'}}}}]
@mahecode/mcp-react-native-skia
React Native Skia Animation Thinking Tool
Analyze and solve React Native Skia animation challenges with structured thinking. Break down complex problems, explore techniques, and optimize performance for stunning visual effects. Enhance your animation workflow with a systematic approach to design and implementation.
2025-04-04T17:06:49.520Z
0
https://smithery.ai/server/@mahecode/mcp-react-native-skia
true
null
{ "scanPassed": true }
[{'name': 'skiaanimationthinking', 'description': 'A specialized tool for solving React Native Skia animation problems through structured thinking.\nThis tool helps analyze animation challenges and design solutions specifically for React Native Skia.\nEach thought can build on previous insights, explore different animation techniques, or revise approaches as understanding deepens.\n\nWhen to use this tool:\n- Breaking down complex animation problems for React Native Skia\n- Planning performant animations with Reanimated integration\n- Designing custom visual effects and transitions\n- Optimizing animation performance on mobile devices\n- Solving specific animation challenges like gesture response, dynamic paths, or timing issues\n- Planning canvas-based animations with proper memory management\n- Designing complex interactive animations\n\nKey features:\n- You can explore various React Native Skia animation techniques\n- You can consider performance implications of different approaches\n- You can revise previous thoughts as animation requirements become clearer\n- You can branch into different animation strategies\n- You can specify code snippets that demonstrate techniques\n- You can describe visual effects and results\n- You can adjust your thinking as you progress through the problem\n\nParameters explained:\n- thought: Your current thinking step about the animation problem\n- nextThoughtNeeded: True if you need more thinking steps\n- thoughtNumber: Current number in sequence\n- totalThoughts: Current estimate of thoughts needed\n- isRevision: A boolean indicating if this thought revises previous thinking\n- revisesThought: If is_revision is true, which thought number is being reconsidered\n- branchFromThought: If branching, which thought number is the branching point\n- branchId: Identifier for the current branch (if any)\n- needsMoreThoughts: If reaching end but realizing more thoughts needed\n- animationTechnique: The Skia animation technique being considered (e.g., "path interpolation", "reanimated integration", "canvas animations")\n- performanceConsideration: Notes on performance implications of the technique\n- visualEffect: Description of the visual result expected\n- codeSnippet: Example code showing how to implement the technique\n\nYou should:\n1. Start by clearly understanding the animation problem\n2. Break down the problem into logical steps\n3. Explore appropriate React Native Skia techniques for each step\n4. Consider integration with Reanimated when appropriate\n5. Address performance concerns specific to mobile animation\n6. Provide specific code examples that demonstrate techniques\n7. Revise approaches if better solutions become apparent\n8. Consider edge cases and potential issues\n9. Design with a performance-first mindset\n10. Remember that React Native Skia runs on the UI thread\n11. Ensure the solution provides a smooth, visually appealing result', 'inputSchema': {'type': 'object', 'required': ['thought', 'nextThoughtNeeded', 'thoughtNumber', 'totalThoughts'], 'properties': {'thought': {'type': 'string', 'description': 'Your current thinking step about the animation problem'}, 'branchId': {'type': 'string', 'description': 'Branch identifier'}, 'isRevision': {'type': 'boolean', 'description': 'Whether this revises previous thinking'}, 'codeSnippet': {'type': 'string', 'description': 'Example code showing how to implement the technique'}, 'visualEffect': {'type': 'string', 'description': 'Description of the visual result expected'}, 'thoughtNumber': {'type': 'integer', 'minimum': 1, 'description': 'Current thought number'}, 'totalThoughts': {'type': 'integer', 'minimum': 1, 'description': 'Estimated total thoughts needed'}, 'revisesThought': {'type': 'integer', 'minimum': 1, 'description': 'Which thought is being reconsidered'}, 'branchFromThought': {'type': 'integer', 'minimum': 1, 'description': 'Branching point thought number'}, 'needsMoreThoughts': {'type': 'boolean', 'description': 'If more thoughts are needed'}, 'nextThoughtNeeded': {'type': 'boolean', 'description': 'Whether another thought step is needed'}, 'animationTechnique': {'type': 'string', 'description': 'The Skia animation technique being considered'}, 'performanceConsideration': {'type': 'string', 'description': 'Notes on performance implications of the technique'}}}}]
@mahecode/mcp-react-native-skia
React Native Skia Animation Thinking Tool
Analyze and solve React Native Skia animation challenges with structured thinking. Break down complex problems, explore techniques, and optimize performance for stunning visual effects. Enhance your animation workflow with a systematic approach to design and implementation.
2025-04-04T17:06:49.520Z
0
https://smithery.ai/server/@mahecode/mcp-react-native-skia
true
null
{ "scanPassed": true }
[{'name': 'skiaanimationthinking', 'description': 'A specialized tool for solving React Native Skia animation problems through structured thinking.\nThis tool helps analyze animation challenges and design solutions specifically for React Native Skia.\nEach thought can build on previous insights, explore different animation techniques, or revise approaches as understanding deepens.\n\nWhen to use this tool:\n- Breaking down complex animation problems for React Native Skia\n- Planning performant animations with Reanimated integration\n- Designing custom visual effects and transitions\n- Optimizing animation performance on mobile devices\n- Solving specific animation challenges like gesture response, dynamic paths, or timing issues\n- Planning canvas-based animations with proper memory management\n- Designing complex interactive animations\n\nKey features:\n- You can explore various React Native Skia animation techniques\n- You can consider performance implications of different approaches\n- You can revise previous thoughts as animation requirements become clearer\n- You can branch into different animation strategies\n- You can specify code snippets that demonstrate techniques\n- You can describe visual effects and results\n- You can adjust your thinking as you progress through the problem\n\nParameters explained:\n- thought: Your current thinking step about the animation problem\n- nextThoughtNeeded: True if you need more thinking steps\n- thoughtNumber: Current number in sequence\n- totalThoughts: Current estimate of thoughts needed\n- isRevision: A boolean indicating if this thought revises previous thinking\n- revisesThought: If is_revision is true, which thought number is being reconsidered\n- branchFromThought: If branching, which thought number is the branching point\n- branchId: Identifier for the current branch (if any)\n- needsMoreThoughts: If reaching end but realizing more thoughts needed\n- animationTechnique: The Skia animation technique being considered (e.g., "path interpolation", "reanimated integration", "canvas animations")\n- performanceConsideration: Notes on performance implications of the technique\n- visualEffect: Description of the visual result expected\n- codeSnippet: Example code showing how to implement the technique\n\nYou should:\n1. Start by clearly understanding the animation problem\n2. Break down the problem into logical steps\n3. Explore appropriate React Native Skia techniques for each step\n4. Consider integration with Reanimated when appropriate\n5. Address performance concerns specific to mobile animation\n6. Provide specific code examples that demonstrate techniques\n7. Revise approaches if better solutions become apparent\n8. Consider edge cases and potential issues\n9. Design with a performance-first mindset\n10. Remember that React Native Skia runs on the UI thread\n11. Ensure the solution provides a smooth, visually appealing result', 'inputSchema': {'type': 'object', 'required': ['thought', 'nextThoughtNeeded', 'thoughtNumber', 'totalThoughts'], 'properties': {'thought': {'type': 'string', 'description': 'Your current thinking step about the animation problem'}, 'branchId': {'type': 'string', 'description': 'Branch identifier'}, 'isRevision': {'type': 'boolean', 'description': 'Whether this revises previous thinking'}, 'codeSnippet': {'type': 'string', 'description': 'Example code showing how to implement the technique'}, 'visualEffect': {'type': 'string', 'description': 'Description of the visual result expected'}, 'thoughtNumber': {'type': 'integer', 'minimum': 1, 'description': 'Current thought number'}, 'totalThoughts': {'type': 'integer', 'minimum': 1, 'description': 'Estimated total thoughts needed'}, 'revisesThought': {'type': 'integer', 'minimum': 1, 'description': 'Which thought is being reconsidered'}, 'branchFromThought': {'type': 'integer', 'minimum': 1, 'description': 'Branching point thought number'}, 'needsMoreThoughts': {'type': 'boolean', 'description': 'If more thoughts are needed'}, 'nextThoughtNeeded': {'type': 'boolean', 'description': 'Whether another thought step is needed'}, 'animationTechnique': {'type': 'string', 'description': 'The Skia animation technique being considered'}, 'performanceConsideration': {'type': 'string', 'description': 'Notes on performance implications of the technique'}}}}]
@cloudflare/playwright-mcp
Cloudflare Playwright
Automate browser interactions and testing through a powerful MCP server integrated with Playwright and Cloudflare Workers. Execute web navigation, element interaction, and capture screenshots or snapshots to enhance your LLM-driven workflows. Easily deploy and connect to this server to enable rich browser automation capabilities for your agents.
2025-05-03T13:00:38.828Z
0
https://smithery.ai/server/@cloudflare/playwright-mcp
true
null
null
[{'name': 'browser_close', 'description': 'Close the page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_wait', 'description': 'Wait for a specified time in seconds', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['time'], 'properties': {'time': {'type': 'number', 'description': 'The time to wait in seconds'}}, 'additionalProperties': False}}, {'name': 'browser_resize', 'description': 'Resize the browser window', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['width', 'height'], 'properties': {'width': {'type': 'number', 'description': 'Width of the browser window'}, 'height': {'type': 'number', 'description': 'Height of the browser window'}}, 'additionalProperties': False}}, {'name': 'browser_console_messages', 'description': 'Returns all console messages', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_handle_dialog', 'description': 'Handle a dialog', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'accept': {'type': 'boolean', 'description': 'Whether to accept the dialog.'}, 'promptText': {'type': 'string', 'description': 'The text of the prompt in case of a prompt dialog.'}}, 'additionalProperties': False}}, {'name': 'browser_file_upload', 'description': 'Upload one or multiple files', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['paths'], 'properties': {'paths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The absolute paths to the files to upload. Can be a single file or multiple files.'}}, 'additionalProperties': False}}, {'name': 'browser_install', 'description': 'Install the browser specified in the config. Call this if you get an error about the browser not being installed.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_press_key', 'description': 'Press a key on the keyboard', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': 'Name of the key to press or a character to generate, such as `ArrowLeft` or `a`'}}, 'additionalProperties': False}}, {'name': 'browser_navigate', 'description': 'Navigate to a URL', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to'}}, 'additionalProperties': False}}, {'name': 'browser_navigate_back', 'description': 'Go back to the previous page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_navigate_forward', 'description': 'Go forward to the next page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_network_requests', 'description': 'Returns all network requests since loading the page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_pdf_save', 'description': 'Save page as PDF', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_snapshot', 'description': 'Capture accessibility snapshot of the current page, this is better than screenshot', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_click', 'description': 'Perform click on a web page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_drag', 'description': 'Perform drag and drop between two elements', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['startElement', 'startRef', 'endElement', 'endRef'], 'properties': {'endRef': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'startRef': {'type': 'string', 'description': 'Exact source element reference from the page snapshot'}, 'endElement': {'type': 'string', 'description': 'Human-readable target element description used to obtain the permission to interact with the element'}, 'startElement': {'type': 'string', 'description': 'Human-readable source element description used to obtain the permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_hover', 'description': 'Hover over element on page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_type', 'description': 'Type text into editable element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref', 'text'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'text': {'type': 'string', 'description': 'Text to type into the element'}, 'slowly': {'type': 'boolean', 'description': 'Whether to type one character at a time. Useful for triggering key handlers in the page. By default entire text is filled in at once.'}, 'submit': {'type': 'boolean', 'description': 'Whether to submit entered text (press Enter after)'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_select_option', 'description': 'Select an option in a dropdown', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref', 'values'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'values': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of values to select in the dropdown. This can be a single value or multiple values.'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_take_screenshot', 'description': "Take a screenshot of the current page. You can't perform actions based on the screenshot, use browser_snapshot for actions.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'raw': {'type': 'boolean', 'description': 'Whether to return without compression (in PNG format). Default is false, which returns a JPEG image.'}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot. If not provided, the screenshot will be taken of viewport. If ref is provided, element must be provided too.'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to screenshot the element. If not provided, the screenshot will be taken of viewport. If element is provided, ref must be provided too.'}}, 'additionalProperties': False}}, {'name': 'browser_tab_list', 'description': 'List browser tabs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_tab_new', 'description': 'Open a new tab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to in the new tab. If not provided, the new tab will be blank.'}}, 'additionalProperties': False}}, {'name': 'browser_tab_select', 'description': 'Select a tab by index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['index'], 'properties': {'index': {'type': 'number', 'description': 'The index of the tab to select'}}, 'additionalProperties': False}}, {'name': 'browser_tab_close', 'description': 'Close a tab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'index': {'type': 'number', 'description': 'The index of the tab to close. Closes current tab if not provided.'}}, 'additionalProperties': False}}]
@cloudflare/playwright-mcp
Cloudflare Playwright
Automate browser interactions and testing through a powerful MCP server integrated with Playwright and Cloudflare Workers. Execute web navigation, element interaction, and capture screenshots or snapshots to enhance your LLM-driven workflows. Easily deploy and connect to this server to enable rich browser automation capabilities for your agents.
2025-05-03T13:00:38.828Z
0
https://smithery.ai/server/@cloudflare/playwright-mcp
true
null
null
[{'name': 'browser_close', 'description': 'Close the page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_wait', 'description': 'Wait for a specified time in seconds', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['time'], 'properties': {'time': {'type': 'number', 'description': 'The time to wait in seconds'}}, 'additionalProperties': False}}, {'name': 'browser_resize', 'description': 'Resize the browser window', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['width', 'height'], 'properties': {'width': {'type': 'number', 'description': 'Width of the browser window'}, 'height': {'type': 'number', 'description': 'Height of the browser window'}}, 'additionalProperties': False}}, {'name': 'browser_console_messages', 'description': 'Returns all console messages', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_handle_dialog', 'description': 'Handle a dialog', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'accept': {'type': 'boolean', 'description': 'Whether to accept the dialog.'}, 'promptText': {'type': 'string', 'description': 'The text of the prompt in case of a prompt dialog.'}}, 'additionalProperties': False}}, {'name': 'browser_file_upload', 'description': 'Upload one or multiple files', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['paths'], 'properties': {'paths': {'type': 'array', 'items': {'type': 'string'}, 'description': 'The absolute paths to the files to upload. Can be a single file or multiple files.'}}, 'additionalProperties': False}}, {'name': 'browser_install', 'description': 'Install the browser specified in the config. Call this if you get an error about the browser not being installed.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_press_key', 'description': 'Press a key on the keyboard', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': 'Name of the key to press or a character to generate, such as `ArrowLeft` or `a`'}}, 'additionalProperties': False}}, {'name': 'browser_navigate', 'description': 'Navigate to a URL', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to'}}, 'additionalProperties': False}}, {'name': 'browser_navigate_back', 'description': 'Go back to the previous page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_navigate_forward', 'description': 'Go forward to the next page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_network_requests', 'description': 'Returns all network requests since loading the page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_pdf_save', 'description': 'Save page as PDF', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_snapshot', 'description': 'Capture accessibility snapshot of the current page, this is better than screenshot', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_click', 'description': 'Perform click on a web page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_drag', 'description': 'Perform drag and drop between two elements', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['startElement', 'startRef', 'endElement', 'endRef'], 'properties': {'endRef': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'startRef': {'type': 'string', 'description': 'Exact source element reference from the page snapshot'}, 'endElement': {'type': 'string', 'description': 'Human-readable target element description used to obtain the permission to interact with the element'}, 'startElement': {'type': 'string', 'description': 'Human-readable source element description used to obtain the permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_hover', 'description': 'Hover over element on page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_type', 'description': 'Type text into editable element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref', 'text'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'text': {'type': 'string', 'description': 'Text to type into the element'}, 'slowly': {'type': 'boolean', 'description': 'Whether to type one character at a time. Useful for triggering key handlers in the page. By default entire text is filled in at once.'}, 'submit': {'type': 'boolean', 'description': 'Whether to submit entered text (press Enter after)'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_select_option', 'description': 'Select an option in a dropdown', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['element', 'ref', 'values'], 'properties': {'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'values': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Array of values to select in the dropdown. This can be a single value or multiple values.'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}}, 'additionalProperties': False}}, {'name': 'browser_take_screenshot', 'description': "Take a screenshot of the current page. You can't perform actions based on the screenshot, use browser_snapshot for actions.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'raw': {'type': 'boolean', 'description': 'Whether to return without compression (in PNG format). Default is false, which returns a JPEG image.'}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot. If not provided, the screenshot will be taken of viewport. If ref is provided, element must be provided too.'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to screenshot the element. If not provided, the screenshot will be taken of viewport. If element is provided, ref must be provided too.'}}, 'additionalProperties': False}}, {'name': 'browser_tab_list', 'description': 'List browser tabs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'browser_tab_new', 'description': 'Open a new tab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to in the new tab. If not provided, the new tab will be blank.'}}, 'additionalProperties': False}}, {'name': 'browser_tab_select', 'description': 'Select a tab by index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['index'], 'properties': {'index': {'type': 'number', 'description': 'The index of the tab to select'}}, 'additionalProperties': False}}, {'name': 'browser_tab_close', 'description': 'Close a tab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'index': {'type': 'number', 'description': 'The index of the tab to close. Closes current tab if not provided.'}}, 'additionalProperties': False}}]
@bneil/mcp-memory-pouchdb
Knowledge Graph Memory Server
Manage and enhance your interactions with a robust knowledge graph. Capture, store, and retrieve contextual information seamlessly using PouchDB for improved data consistency and performance. Organize your memory data by project-specific paths for better management and retrieval.
2025-03-19T19:49:59.736Z
0
https://smithery.ai/server/@bneil/mcp-memory-pouchdb
true
null
{ "scanPassed": true }
[{'name': 'get_current_time', 'description': 'Get the current time', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'create_entities', 'description': 'Create multiple new entities in the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['entities'], 'properties': {'entities': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'entityType', 'observations'], 'properties': {'name': {'type': 'string', 'description': 'The name of the entity'}, 'entityType': {'type': 'string', 'description': 'The type of the entity'}, 'observations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of observation contents associated with the entity'}}}}}}}, {'name': 'create_relations', 'description': 'Create multiple new relations between entities in the knowledge graph. Relations should be in active voice', 'inputSchema': {'type': 'object', 'required': ['relations'], 'properties': {'relations': {'type': 'array', 'items': {'type': 'object', 'required': ['from', 'to', 'relationType'], 'properties': {'to': {'type': 'string', 'description': 'The name of the entity where the relation ends'}, 'from': {'type': 'string', 'description': 'The name of the entity where the relation starts'}, 'relationType': {'type': 'string', 'description': 'The type of the relation'}}}}}}}, {'name': 'add_observations', 'description': 'Add new observations to existing entities in the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['observations'], 'properties': {'observations': {'type': 'array', 'items': {'type': 'object', 'required': ['entityName', 'contents'], 'properties': {'contents': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of observation contents to add'}, 'entityName': {'type': 'string', 'description': 'The name of the entity to add the observations to'}}}}}}}, {'name': 'delete_entities', 'description': 'Delete multiple entities and their associated relations from the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['entityNames'], 'properties': {'entityNames': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of entity names to delete'}}}}, {'name': 'delete_observations', 'description': 'Delete specific observations from entities in the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['deletions'], 'properties': {'deletions': {'type': 'array', 'items': {'type': 'object', 'required': ['entityName', 'observations'], 'properties': {'entityName': {'type': 'string', 'description': 'The name of the entity containing the observations'}, 'observations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of observations to delete'}}}}}}}, {'name': 'delete_relations', 'description': 'Delete multiple relations from the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['relations'], 'properties': {'relations': {'type': 'array', 'items': {'type': 'object', 'required': ['from', 'to', 'relationType'], 'properties': {'to': {'type': 'string', 'description': 'The name of the entity where the relation ends'}, 'from': {'type': 'string', 'description': 'The name of the entity where the relation starts'}, 'relationType': {'type': 'string', 'description': 'The type of the relation'}}}, 'description': 'An array of relations to delete'}}}}, {'name': 'read_graph', 'description': 'Read the entire knowledge graph', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'search_nodes', 'description': 'Search for nodes in the knowledge graph based on a query', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The search query to match against entity names, types, and observation content'}}}}, {'name': 'open_nodes', 'description': 'Open specific nodes in the knowledge graph by their names', 'inputSchema': {'type': 'object', 'required': ['names'], 'properties': {'names': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of entity names to retrieve'}}}}]
@bneil/mcp-memory-pouchdb
Knowledge Graph Memory Server
Manage and enhance your interactions with a robust knowledge graph. Capture, store, and retrieve contextual information seamlessly using PouchDB for improved data consistency and performance. Organize your memory data by project-specific paths for better management and retrieval.
2025-03-19T19:49:59.736Z
0
https://smithery.ai/server/@bneil/mcp-memory-pouchdb
true
null
{ "scanPassed": true }
[{'name': 'get_current_time', 'description': 'Get the current time', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'create_entities', 'description': 'Create multiple new entities in the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['entities'], 'properties': {'entities': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'entityType', 'observations'], 'properties': {'name': {'type': 'string', 'description': 'The name of the entity'}, 'entityType': {'type': 'string', 'description': 'The type of the entity'}, 'observations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of observation contents associated with the entity'}}}}}}}, {'name': 'create_relations', 'description': 'Create multiple new relations between entities in the knowledge graph. Relations should be in active voice', 'inputSchema': {'type': 'object', 'required': ['relations'], 'properties': {'relations': {'type': 'array', 'items': {'type': 'object', 'required': ['from', 'to', 'relationType'], 'properties': {'to': {'type': 'string', 'description': 'The name of the entity where the relation ends'}, 'from': {'type': 'string', 'description': 'The name of the entity where the relation starts'}, 'relationType': {'type': 'string', 'description': 'The type of the relation'}}}}}}}, {'name': 'add_observations', 'description': 'Add new observations to existing entities in the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['observations'], 'properties': {'observations': {'type': 'array', 'items': {'type': 'object', 'required': ['entityName', 'contents'], 'properties': {'contents': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of observation contents to add'}, 'entityName': {'type': 'string', 'description': 'The name of the entity to add the observations to'}}}}}}}, {'name': 'delete_entities', 'description': 'Delete multiple entities and their associated relations from the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['entityNames'], 'properties': {'entityNames': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of entity names to delete'}}}}, {'name': 'delete_observations', 'description': 'Delete specific observations from entities in the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['deletions'], 'properties': {'deletions': {'type': 'array', 'items': {'type': 'object', 'required': ['entityName', 'observations'], 'properties': {'entityName': {'type': 'string', 'description': 'The name of the entity containing the observations'}, 'observations': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of observations to delete'}}}}}}}, {'name': 'delete_relations', 'description': 'Delete multiple relations from the knowledge graph', 'inputSchema': {'type': 'object', 'required': ['relations'], 'properties': {'relations': {'type': 'array', 'items': {'type': 'object', 'required': ['from', 'to', 'relationType'], 'properties': {'to': {'type': 'string', 'description': 'The name of the entity where the relation ends'}, 'from': {'type': 'string', 'description': 'The name of the entity where the relation starts'}, 'relationType': {'type': 'string', 'description': 'The type of the relation'}}}, 'description': 'An array of relations to delete'}}}}, {'name': 'read_graph', 'description': 'Read the entire knowledge graph', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'search_nodes', 'description': 'Search for nodes in the knowledge graph based on a query', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The search query to match against entity names, types, and observation content'}}}}, {'name': 'open_nodes', 'description': 'Open specific nodes in the knowledge graph by their names', 'inputSchema': {'type': 'object', 'required': ['names'], 'properties': {'names': {'type': 'array', 'items': {'type': 'string'}, 'description': 'An array of entity names to retrieve'}}}}]
@ADEOSec/mcp-shodan
Shodan MCP Server
Leverage Shodan's powerful API capabilities to enhance your cybersecurity operations. Perform network intelligence tasks such as host lookups, vulnerability analysis, and network scanning with ease. Streamline your workflows with integrated tools and prompt templates designed for cybersecurity professionals.
2025-03-20T08:29:50.382Z
0
https://smithery.ai/server/@ADEOSec/mcp-shodan
true
null
null
[{'name': 'host-info', 'description': 'Get detailed information about a host from Shodan', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ip'], 'properties': {'ip': {'type': 'string', 'description': 'IP address to look up'}, 'minify': {'type': 'boolean', 'description': 'Return only basic host information (default: false)'}, 'history': {'type': 'boolean', 'description': 'Include historical information (default: false)'}}, 'additionalProperties': False}}, {'name': 'dns-lookup', 'description': 'Resolve hostnames to IP addresses', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['hostnames'], 'properties': {'hostnames': {'type': 'string', 'description': "Comma-separated list of hostnames to resolve (e.g., 'google.com,facebook.com')"}}, 'additionalProperties': False}}, {'name': 'reverse-dns', 'description': 'Look up hostnames for IP addresses', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ips'], 'properties': {'ips': {'type': 'string', 'description': "Comma-separated list of IP addresses (e.g., '8.8.8.8,1.1.1.1')"}}, 'additionalProperties': False}}, {'name': 'domain-info', 'description': 'Get DNS entries and subdomains for a domain', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domain'], 'properties': {'domain': {'type': 'string', 'description': "Domain name to look up (e.g., 'example.com')"}}, 'additionalProperties': False}}, {'name': 'hello', 'description': 'Test if the Shodan MCP server is working', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'search-host', 'description': 'Search Shodan', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'page': {'type': 'number', 'description': 'Page number for results (1 credit per page after 1st)'}, 'query': {'type': 'string', 'description': "Shodan search query (e.g. 'apache country:DE')"}, 'facets': {'type': 'string', 'description': 'Comma-separated list of properties to get summary information'}}, 'additionalProperties': False}}, {'name': 'search-host-count', 'description': 'Search Shodan without Results', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': "Shodan search query (e.g. 'apache country:DE')"}, 'facets': {'type': 'string', 'description': 'Comma-separated list of properties to get summary information'}}, 'additionalProperties': False}}, {'name': 'list-search-facets', 'description': 'List all search facets', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-search-filters', 'description': 'List all filters that can be used when searching', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'search-tokens', 'description': 'Break the search query into tokens', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'Shodan search query to analyze'}}, 'additionalProperties': False}}, {'name': 'list-ports', 'description': 'List all ports that Shodan is crawling on the Internet', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-protocols', 'description': 'List all protocols that can be used for scanning', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'request-scan', 'description': 'Request Shodan to scan an IP/network', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ips'], 'properties': {'ips': {'type': 'string', 'description': "Comma-separated list of IPs or networks in CIDR notation (e.g. '8.8.8.8,1.1.1.1/24')"}}, 'additionalProperties': False}}, {'name': 'get-scan-status', 'description': 'Get the status of a scan request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'The unique scan ID returned by request-scan'}}, 'additionalProperties': False}}, {'name': 'list-scans', 'description': 'Get list of all submitted scans', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-triggers', 'description': 'List available triggers for network alerts', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'create-alert', 'description': 'Create a network alert for monitoring', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'filters'], 'properties': {'name': {'type': 'string', 'description': 'Name of the alert'}, 'expires': {'type': 'number', 'description': 'Number of seconds the alert should be active (optional)'}, 'filters': {'type': 'object', 'properties': {'ip': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of IP addresses to monitor'}, 'port': {'type': 'array', 'items': {'type': 'number'}, 'description': 'List of ports to monitor'}}, 'description': 'Filters to apply (can include IP addresses and ports)', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'get-alert-info', 'description': 'Get information about a specific alert', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Alert ID to get information about'}}, 'additionalProperties': False}}, {'name': 'delete-alert', 'description': 'Delete a network alert', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Alert ID to delete'}}, 'additionalProperties': False}}, {'name': 'edit-alert', 'description': 'Edit an existing alert', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Alert ID to edit'}, 'name': {'type': 'string', 'description': 'New name for the alert'}, 'filters': {'type': 'object', 'properties': {'ip': {'type': 'array', 'items': {'type': 'string'}, 'description': 'New list of IP addresses to monitor'}, 'port': {'type': 'array', 'items': {'type': 'number'}, 'description': 'New list of ports to monitor'}}, 'description': 'New filters to apply', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'list-alerts', 'description': 'List all active alerts', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-queries', 'description': 'List saved search queries', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'number', 'description': 'Page number of results (default: 1)'}, 'sort': {'enum': ['votes', 'timestamp'], 'type': 'string', 'description': 'Sort queries by (votes or timestamp)'}, 'order': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'Sort order (asc or desc)'}}, 'additionalProperties': False}}, {'name': 'search-queries', 'description': 'Search through saved queries', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'page': {'type': 'number', 'description': 'Page number of results (default: 1)'}, 'query': {'type': 'string', 'description': 'Search term to find queries'}}, 'additionalProperties': False}}, {'name': 'list-query-tags', 'description': 'List popular tags for saved queries', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'size': {'type': 'number', 'description': 'Number of tags to return (default: 10)'}}, 'additionalProperties': False}}, {'name': 'get-profile', 'description': 'Get account profile information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-api-info', 'description': 'Get API subscription information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-billing', 'description': 'Get billing profile information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-http-headers', 'description': "View the HTTP headers that you're sending in requests", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-my-ip', 'description': 'View your current IP address', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}]
@ADEOSec/mcp-shodan
Shodan MCP Server
Leverage Shodan's powerful API capabilities to enhance your cybersecurity operations. Perform network intelligence tasks such as host lookups, vulnerability analysis, and network scanning with ease. Streamline your workflows with integrated tools and prompt templates designed for cybersecurity professionals.
2025-03-20T08:29:50.382Z
0
https://smithery.ai/server/@ADEOSec/mcp-shodan
true
null
null
[{'name': 'host-info', 'description': 'Get detailed information about a host from Shodan', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ip'], 'properties': {'ip': {'type': 'string', 'description': 'IP address to look up'}, 'minify': {'type': 'boolean', 'description': 'Return only basic host information (default: false)'}, 'history': {'type': 'boolean', 'description': 'Include historical information (default: false)'}}, 'additionalProperties': False}}, {'name': 'dns-lookup', 'description': 'Resolve hostnames to IP addresses', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['hostnames'], 'properties': {'hostnames': {'type': 'string', 'description': "Comma-separated list of hostnames to resolve (e.g., 'google.com,facebook.com')"}}, 'additionalProperties': False}}, {'name': 'reverse-dns', 'description': 'Look up hostnames for IP addresses', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ips'], 'properties': {'ips': {'type': 'string', 'description': "Comma-separated list of IP addresses (e.g., '8.8.8.8,1.1.1.1')"}}, 'additionalProperties': False}}, {'name': 'domain-info', 'description': 'Get DNS entries and subdomains for a domain', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['domain'], 'properties': {'domain': {'type': 'string', 'description': "Domain name to look up (e.g., 'example.com')"}}, 'additionalProperties': False}}, {'name': 'hello', 'description': 'Test if the Shodan MCP server is working', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'search-host', 'description': 'Search Shodan', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'page': {'type': 'number', 'description': 'Page number for results (1 credit per page after 1st)'}, 'query': {'type': 'string', 'description': "Shodan search query (e.g. 'apache country:DE')"}, 'facets': {'type': 'string', 'description': 'Comma-separated list of properties to get summary information'}}, 'additionalProperties': False}}, {'name': 'search-host-count', 'description': 'Search Shodan without Results', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': "Shodan search query (e.g. 'apache country:DE')"}, 'facets': {'type': 'string', 'description': 'Comma-separated list of properties to get summary information'}}, 'additionalProperties': False}}, {'name': 'list-search-facets', 'description': 'List all search facets', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-search-filters', 'description': 'List all filters that can be used when searching', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'search-tokens', 'description': 'Break the search query into tokens', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'Shodan search query to analyze'}}, 'additionalProperties': False}}, {'name': 'list-ports', 'description': 'List all ports that Shodan is crawling on the Internet', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-protocols', 'description': 'List all protocols that can be used for scanning', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'request-scan', 'description': 'Request Shodan to scan an IP/network', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['ips'], 'properties': {'ips': {'type': 'string', 'description': "Comma-separated list of IPs or networks in CIDR notation (e.g. '8.8.8.8,1.1.1.1/24')"}}, 'additionalProperties': False}}, {'name': 'get-scan-status', 'description': 'Get the status of a scan request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'The unique scan ID returned by request-scan'}}, 'additionalProperties': False}}, {'name': 'list-scans', 'description': 'Get list of all submitted scans', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-triggers', 'description': 'List available triggers for network alerts', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'create-alert', 'description': 'Create a network alert for monitoring', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'filters'], 'properties': {'name': {'type': 'string', 'description': 'Name of the alert'}, 'expires': {'type': 'number', 'description': 'Number of seconds the alert should be active (optional)'}, 'filters': {'type': 'object', 'properties': {'ip': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of IP addresses to monitor'}, 'port': {'type': 'array', 'items': {'type': 'number'}, 'description': 'List of ports to monitor'}}, 'description': 'Filters to apply (can include IP addresses and ports)', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'get-alert-info', 'description': 'Get information about a specific alert', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Alert ID to get information about'}}, 'additionalProperties': False}}, {'name': 'delete-alert', 'description': 'Delete a network alert', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Alert ID to delete'}}, 'additionalProperties': False}}, {'name': 'edit-alert', 'description': 'Edit an existing alert', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'description': 'Alert ID to edit'}, 'name': {'type': 'string', 'description': 'New name for the alert'}, 'filters': {'type': 'object', 'properties': {'ip': {'type': 'array', 'items': {'type': 'string'}, 'description': 'New list of IP addresses to monitor'}, 'port': {'type': 'array', 'items': {'type': 'number'}, 'description': 'New list of ports to monitor'}}, 'description': 'New filters to apply', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'list-alerts', 'description': 'List all active alerts', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'list-queries', 'description': 'List saved search queries', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'number', 'description': 'Page number of results (default: 1)'}, 'sort': {'enum': ['votes', 'timestamp'], 'type': 'string', 'description': 'Sort queries by (votes or timestamp)'}, 'order': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'Sort order (asc or desc)'}}, 'additionalProperties': False}}, {'name': 'search-queries', 'description': 'Search through saved queries', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'page': {'type': 'number', 'description': 'Page number of results (default: 1)'}, 'query': {'type': 'string', 'description': 'Search term to find queries'}}, 'additionalProperties': False}}, {'name': 'list-query-tags', 'description': 'List popular tags for saved queries', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'size': {'type': 'number', 'description': 'Number of tags to return (default: 10)'}}, 'additionalProperties': False}}, {'name': 'get-profile', 'description': 'Get account profile information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-api-info', 'description': 'Get API subscription information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-billing', 'description': 'Get billing profile information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-http-headers', 'description': "View the HTTP headers that you're sending in requests", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-my-ip', 'description': 'View your current IP address', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}]
@CccZss/mcp-test
mcp-test
Enhance your applications with dynamic integration of external data and tools. Utilize a standardized protocol to interact with real-world resources and actions seamlessly. Empower your LLMs to reference and manipulate data securely and efficiently.
2025-03-21T02:00:58.320Z
0
https://smithery.ai/server/@CccZss/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'}}}}]
@CccZss/mcp-test
mcp-test
Enhance your applications with dynamic integration of external data and tools. Utilize a standardized protocol to interact with real-world resources and actions seamlessly. Empower your LLMs to reference and manipulate data securely and efficiently.
2025-03-21T02:00:58.320Z
0
https://smithery.ai/server/@CccZss/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'}}}}]
@alimo7amed93/webhook-tester-mcp
Webhook Tester
Automate and manage webhook tokens, inspect incoming requests, and perform analytics without writing custom API integrations. Create, fetch, and delete webhooks seamlessly while enabling webhook observability and automated testing. Enhance your webhook workflows with modular tools accessible via Claude structured prompts.
2025-04-24T14:00:54.383Z
0
https://smithery.ai/server/@alimo7amed93/webhook-tester-mcp
true
null
{ "scanPassed": true }
[{'name': 'create_new_webhook', 'description': '', 'inputSchema': {'type': 'object', 'title': 'create_new_webhookArguments', 'required': ['title'], 'properties': {'title': {'type': 'string', 'title': 'Title'}, 'payload': {'type': 'string', 'title': 'Payload', 'default': '{}'}, 'content_type': {'type': 'string', 'title': 'Content Type', 'default': 'application/json'}, 'response_code': {'type': 'string', 'title': 'Response Code', 'default': '200'}, 'response_delay': {'type': 'integer', 'title': 'Response Delay', 'default': 0}}}}, {'name': 'list_all_webhooks', 'description': '', 'inputSchema': {'type': 'object', 'title': 'list_all_webhooksArguments', 'properties': {}}}, {'name': 'get_webhook_details', 'description': '', 'inputSchema': {'type': 'object', 'title': 'get_webhook_detailsArguments', 'required': ['webhook_id'], 'properties': {'webhook_id': {'type': 'string', 'title': 'Webhook Id'}}}}, {'name': 'delete_webhook', 'description': '', 'inputSchema': {'type': 'object', 'title': 'delete_webhookArguments', 'required': ['webhook_id'], 'properties': {'webhook_id': {'type': 'string', 'title': 'Webhook Id'}}}}]
@alimo7amed93/webhook-tester-mcp
Webhook Tester
Automate and manage webhook tokens, inspect incoming requests, and perform analytics without writing custom API integrations. Create, fetch, and delete webhooks seamlessly while enabling webhook observability and automated testing. Enhance your webhook workflows with modular tools accessible via Claude structured prompts.
2025-04-24T14:00:54.383Z
0
https://smithery.ai/server/@alimo7amed93/webhook-tester-mcp
true
null
{ "scanPassed": true }
[{'name': 'create_new_webhook', 'description': '', 'inputSchema': {'type': 'object', 'title': 'create_new_webhookArguments', 'required': ['title'], 'properties': {'title': {'type': 'string', 'title': 'Title'}, 'payload': {'type': 'string', 'title': 'Payload', 'default': '{}'}, 'content_type': {'type': 'string', 'title': 'Content Type', 'default': 'application/json'}, 'response_code': {'type': 'string', 'title': 'Response Code', 'default': '200'}, 'response_delay': {'type': 'integer', 'title': 'Response Delay', 'default': 0}}}}, {'name': 'list_all_webhooks', 'description': '', 'inputSchema': {'type': 'object', 'title': 'list_all_webhooksArguments', 'properties': {}}}, {'name': 'get_webhook_details', 'description': '', 'inputSchema': {'type': 'object', 'title': 'get_webhook_detailsArguments', 'required': ['webhook_id'], 'properties': {'webhook_id': {'type': 'string', 'title': 'Webhook Id'}}}}, {'name': 'delete_webhook', 'description': '', 'inputSchema': {'type': 'object', 'title': 'delete_webhookArguments', 'required': ['webhook_id'], 'properties': {'webhook_id': {'type': 'string', 'title': 'Webhook Id'}}}}]