Gradio MCP endpoint
stringclasses 217
values | Tool name
stringlengths 9
69
| Tool description
stringlengths 0
3.57k
| Tool inputs
stringlengths 0
333
| Space name
stringclasses 218
values | HF Space URL
stringclasses 218
values | Likes
int64 0
116
| Created at
stringdate 2025-06-01 15:26:20
2025-06-11 12:39:01
| Tags
stringclasses 63
values |
---|---|---|---|---|---|---|---|---|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_get_visitors_by_program_id
|
获取指定客户端ID下的观察者配置文件 返回的格式为: ```json { "status": "成功", "message": "获取客户端列表成功", "data": [ { "name": "stcp1-visitor", "type": "stcp", "serverName": "stcp", "secretKey": "key", "bindAddr" = "127.0.0.1", "bindPort" = 6000 } ] } ``` - `status`: 操作状态,成功或失败 - `message`: 操作信息 - `data`: 客户端列表,格式为json数组,每个元素包含以下 - `name`: 观察者名称 - `type`: 观察者类型 - `serverName`: 服务名称 - `secretKey`: 观察者的认证密钥,用于安全通信 - `bindAddr`: 绑定到本地的IP - `bindPort`: 绑定到本地的端口号. Returns: 包含状态和信息的json, 格式为`{"status": "成功"|"失败", "message": "消息", "data": 数据, json格式, 如失败data为None}`
|
program_id
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_get_visitor_by_name
|
获取指定客户端ID下的指定name的观察者配置文件 返回的格式为: ```json { "status": "成功", "message": "获取观察者成功", "data": [ { "name": "stcp1-visitor", "type": "stcp", "serverName": "stcp", "secretKey": "key", "bindAddr" = "127.0.0.1", "bindPort" = 6000 } ] } ``` - `status`: 操作状态,成功或失败 - `message`: 操作信息 - `data`: 客户端列表,格式为json数组,每个元素包含以下 - `name`: 观察者名称 - `type`: 观察者类型 - `serverName`: 服务名称 - `secretKey`: 观察者的认证密钥,用于安全通信 - `bindAddr`: 绑定到本地的IP - `bindPort`: 绑定到本地的端口号. Returns: 包含状态和信息的json, 格式为`{"status": "成功"|"失败", "message": "消息", "data": 数据, json格式, 如失败data为None}`
|
program_id, visitor_name
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_new_visitor
|
新建指定客户端 ID 下的观察者配置 传入参数示例(不是全部): - program_id: 客户端 ID,整数或字符串 - data: 新观察者配置,JSON 字符串。必须包含以下字段: - name: 观察者名称,和要修改的name一致 - type: 观察者类型,和要修改的type一致 - serverName: 服务端名称,用于关联后端服务 - secretKey: 认证密钥,用于安全通信 - bindAddr: 绑定的本地 IP 地址(例如 "127.0.0.1") - bindPort: 绑定的本地端口(整数, 65535 以内) 返回的格式: ```json { "status": "成功"|"失败", "message": "提示信息" } ```. Returns: 操作结果,格式 `{"status": "成功"|"失败", "message": "具体信息"}`
|
program_id, data
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_update_visitor_by_name
|
修改指定客户端 ID 下的观察者配置 传入参数示例(不是全部): - program_id: 客户端 ID,整数或字符串 - data: 观察者配置,JSON 字符串。必须包含以下字段: - name: 观察者名称,和要修改的name一致 - type: 观察者类型,和要修改的type一致 - serverName: 服务名称 - secretKey: 认证密钥,用于安全通信 - bindAddr: 绑定的本地 IP 地址(例如 "127.0.0.1") - bindPort: 绑定的本地端口(整数, 65535 以内) 返回的格式: ```json { "status": "成功"|"失败", "message": "提示信息" } ```. Returns: 操作结果,格式 `{"status": "成功"|"失败", "message": "具体信息"}`
|
program_id, data
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_delete_visitor_by_name
|
删除指定观察者 返回的格式: ```json { "status": "成功"|"失败", "message": "提示信息" } ```. Returns: 返回操作结果
|
program_id, visitor_name
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_list_programs
|
返回frpc客户端列表 返回的格式为: ```json { "status": "成功", "message": "获取客户端列表成功", "data": [ { "id": 0, "name": "示例 HK", "description": "连接HK的客户端", "status": "运行", }, ] } ``` - `status`: 操作状态,成功或失败 - `message`: 操作信息 - `data`: 客户端列表,格式为json数组,每个元素包含以下 - `id`: 客户端唯一标识 - `name`: 用户给客户端备注的名字 - `description`: 用户给的客户端备注,选填 - `status`: 客户端状态,目前有三种:运行、停止和为运行 - `运行`: 客户端正在运行 - `停止`: 客户端已停止 - `未运行`: 客户端在MCP服务器启动后没运行过. Returns: 包含状态和信息的json, 格式为`{"status": "成功"|"失败", "message": "消息", "data": 数据, json格式, 如失败data为Nano}`
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_program_controller
|
根据指定操作控制FRPC客户端程序 支持的操作类型包括: - 启动(start):创建并运行新的客户端实例 - 停止(stop):终止正在运行的客户端实例 - 重启(restart):先停止后启动客户端 - 热重载(reload):在运行时更新配置 请求参数示例: ```json { "program_id": "1", "action": "start" } ``` 返回值格式: ```json { "status": "成功|失败", "message": "操作描述信息", } ``` 异常处理逻辑: 1. 程序ID不存在:触发数据库查询失败 2. 非法操作类型:触发不支持的操作类型错误 3. 文件缺失:启动时检查可执行文件和配置文件存在性 4. ID格式错误:字符串ID转数字失败时触发. Returns: 包含状态和信息的JSON对象,格式为:, {, "成功|失败",, "描述操作结果的具体信息",, }
|
program_id, action
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_delete_program
|
根据客户端ID删除客户端及其配置文件 注意: 使用这个函数之前一定要得到用户的肯定!丢失的数据无法复原!. Returns: 包含状态和信息的json, 格式为`{"status": "成功"|"失败", "message": "内容"}`
|
program_id
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_get_client_config_by_id
|
根据ID获取单个客户端配置 注意这里修改的不是隧道(proxy)和观察者(visitor)的配置信息,client_configs接口仅处理client与server的连接配置。 返回格式(不是全部参数): ```json { "status": "成功", "message": "获取客户端配置成功", "data": { "serverAddr" = "127.0.0.1", "serverPort" = 25566, } } ``` - `status`: 请求状态,成功或失败 - `message`: 请求结果的描述信息 - `data`: 客户端配置 - `serverAddr`: 服务器地址 - `serverPort`: 服务器端. Returns: 包含请求状态、消息和客户端配置的字典
|
program_id
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_new_client_config
|
创建指定客户端ID的配置文件 注意这里修改的不是隧道(proxy)和观察者(visitor)的配置信息,client_configs接口仅处理client与server的连接配置。 请求示例(不是全部参数): - program_id = "0" - data = { "serverAddr": "127.0.0.1", "serverPort": 7000, "webServer": { # webServer不是必要配置,如果用户没说,就不要配置webServer "addr": "127.0.0.1", "port": 7400, "user": "admin", "password": "admin" } } 返回格式: ```json { "status": "成功", "message": "获取客户端配置成功", } ``` - `status`: 请求状态,成功或失败 - `message`: 请求结果的描述信息. Returns: 包含请求状态、消息和客户端配置的字典
|
program_id, data
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_update_client_config
|
修改指定客户端ID的配置文件 注意这里修改的不是隧道(proxy)和观察者(visitor)的配置信息,client_configs接口仅处理client与server的连接配置。 请求示例(不是全部参数): - program_id = "0" - data = {"serverAddr": "127.0.0.1", "serverPort": 7000} 返回格式: ```json { "status": "成功", "message": "获取客户端配置成功", } ``` - `status`: 请求状态,成功或失败 - `message`: 请求结果的描述信息. Returns: 包含请求状态、消息和客户端配置的字典
|
program_id, data
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-frpc-centralized-panel-mcp.hf.space/gradio_api/mcp/sse
|
frpc_centralized_panel_mcp_delete_client_config
|
删除指定客户端ID的配置 **注意**:这里修改的不是隧道(proxy)和观察者(visitor)的配置信息,client_configs接口仅处理client与server的连接配置。 **注意**:删除行为会导致数据丢失,一定要用户确认后再删除! 返回格式: ```json { "status": "成功", "message": "获取客户端配置成功", } ``` - `status`: 请求状态,成功或失败 - `message`: 请求结果的描述信息. Returns: 操作结果
|
program_id
|
frpc-centralized-panel-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/frpc-centralized-panel-mcp
| 0 |
2025-06-10T20:49:12.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_reload_chat_app
|
persona_val, comp_val
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
|
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_reload_chat_app_
|
persona_val, comp_val
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
|
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_log_user_message
|
text_input
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
|
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_interact_with_agent
|
messages
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
|
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_lambda
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
||
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_log_user_message_
|
text_input
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
|
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_interact_with_agent_
|
messages
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
|
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_lambda_
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
||
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_set_example_prompt
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
||
https://agents-mcp-hackathon-finario-ai-agent-and-mcp.hf.space/gradio_api/mcp/sse
|
Finario_AI_Agent_and_MCP_SimpleTool
|
param_0
|
Finario-AI-Agent-and-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Finario-AI-Agent-and-MCP
| 0 |
2025-06-10T21:05:54.000Z
|
gradio, agent-demo-track, mcp-server-track, finance, events, ai-agent, mcp-server, region:us
|
|
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_start_and_update
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
||
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_handle_player_input
|
Handle player input and return DM response
|
message, history
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_lambda
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
||
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_handle_player_input_
|
Handle player input and return DM response
|
message, history
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_lambda_
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
||
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_reset_game
|
Reset the game state
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
|
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_ask
|
Ask the D&D narrative agent a question.
|
question
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_lambda__
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
||
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_ask_
|
Ask the D&D rule agent a question.
|
question
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
https://agents-mcp-hackathon-dmagent.hf.space/gradio_api/mcp/sse
|
dmagent_lambda___
|
dmagent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/dmagent
| 0 |
2025-06-10T21:15:16.000Z
|
gradio, mcp-server-track, agent-demo-track, mcp-server, region:us
|
||
https://agents-mcp-hackathon-mcp-brawlstats.hf.space/gradio_api/mcp/sse
|
mcp_brawlstats_save_brawlstars_key
|
Store a Brawl Stars API key in server memory for later use. This should be the **first** tool called in a session. Once the key is saved, subsequent calls to `get_recent_battles` can access the API without requiring the LLM (or user) to resend the long token. Returns: Status message —, • "✅ API key saved in server memory" on success, • "❌ No key provided" if the argument was empty
|
api_key
|
mcp-brawlstats
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/mcp-brawlstats
| 0 |
2025-06-10T21:28:09.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-mcp-brawlstats.hf.space/gradio_api/mcp/sse
|
mcp_brawlstats_get_recent_battles
|
Retrieve a player's 25 most-recent Brawl Stars battles. Call `save_brawlstars_key` **once** beforehand to cache the API key. Returns: On success –, {, "#TAG",, <int>, # number of battles returned, <list[dict]> # raw JSON from Supercell, }, On failure –, "<human-readable message>" }
|
player_tag
|
mcp-brawlstats
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/mcp-brawlstats
| 0 |
2025-06-10T21:28:09.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-phoneafriend.hf.space/gradio_api/mcp/sse
|
PhoneAFriend_get_advice
|
Get advice for a problem from IRC-based advisors. Returns: The advice from the advisor
|
description, binary_file
|
PhoneAFriend
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/PhoneAFriend
| 0 |
2025-06-10T21:29:03.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-phoneafriend.hf.space/gradio_api/mcp/sse
|
PhoneAFriend_start_server
|
Start the server and update the status.
|
PhoneAFriend
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/PhoneAFriend
| 0 |
2025-06-10T21:29:03.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
|
https://agents-mcp-hackathon-phoneafriend.hf.space/gradio_api/mcp/sse
|
PhoneAFriend_stop_server
|
Stop the server and update the status.
|
PhoneAFriend
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/PhoneAFriend
| 0 |
2025-06-10T21:29:03.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
|
https://agents-mcp-hackathon-db-mcp.hf.space/gradio_api/mcp/sse
|
db_mcp_test_database_connection
|
Test database connection and update connection status
|
db_url
|
db-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/db-mcp
| 0 |
2025-06-10T21:46:49.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-db-mcp.hf.space/gradio_api/mcp/sse
|
db_mcp_save_database_url
|
Save the database URL to state
|
db_url
|
db-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/db-mcp
| 0 |
2025-06-10T21:46:49.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-db-mcp.hf.space/gradio_api/mcp/sse
|
db_mcp_gradio_query_interface
|
query
|
db-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/db-mcp
| 0 |
2025-06-10T21:46:49.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
|
https://agents-mcp-hackathon-db-mcp.hf.space/gradio_api/mcp/sse
|
db_mcp_gradio_schema_interface
|
db-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/db-mcp
| 0 |
2025-06-10T21:46:49.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
||
https://agents-mcp-hackathon-db-mcp.hf.space/gradio_api/mcp/sse
|
db_mcp_gradio_er_interface
|
db-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/db-mcp
| 0 |
2025-06-10T21:46:49.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
||
https://agents-mcp-hackathon-spacebuilder.hf.space/gradio_api/mcp/sse
|
SpaceBuilder_create_space
|
ui_api_token_from_textbox, space_name_ui, owner_ui, sdk_ui, markdown_input
|
SpaceBuilder
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/SpaceBuilder
| 0 |
2025-06-10T21:46:55.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-spacebuilder.hf.space/gradio_api/mcp/sse
|
SpaceBuilder_handle_load_space_files_list
|
token_from_ui, space_name, owner_name
|
SpaceBuilder
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/SpaceBuilder
| 0 |
2025-06-10T21:46:55.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-spacebuilder.hf.space/gradio_api/mcp/sse
|
SpaceBuilder_handle_file_selected_for_editing
|
token_from_ui, space_name, owner_name
|
SpaceBuilder
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/SpaceBuilder
| 0 |
2025-06-10T21:46:55.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-spacebuilder.hf.space/gradio_api/mcp/sse
|
SpaceBuilder_update_space_file
|
ui_api_token_from_textbox, space_name_ui, owner_ui, file_path_in_repo, file_content, commit_message_ui
|
SpaceBuilder
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/SpaceBuilder
| 0 |
2025-06-10T21:46:55.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-italy-business-info-mcp.hf.space/gradio_api/mcp/sse
|
italy_business_info_mcp_get_eu_company_info
|
vat, purpose
|
italy_business_info_mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/italy_business_info_mcp
| 0 |
2025-06-10T21:59:18.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-italy-business-info-mcp.hf.space/gradio_api/mcp/sse
|
italy_business_info_mcp_get_property_valuation
|
address, property_type, contract_type, purpose
|
italy_business_info_mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/italy_business_info_mcp
| 0 |
2025-06-10T21:59:18.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-italy-business-info-mcp.hf.space/gradio_api/mcp/sse
|
italy_business_info_mcp_get_credit_score
|
cf
|
italy_business_info_mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/italy_business_info_mcp
| 0 |
2025-06-10T21:59:18.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-linkedin-mcp.hf.space/gradio_api/mcp/sse
|
LinkedIn_MCP_get_profile_data
|
Fetch LinkedIn profile data for the given username. Returns: A dictionary containing the profile data
|
username
|
LinkedIn-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/LinkedIn-MCP
| 0 |
2025-06-10T22:10:46.000Z
|
gradio, mcp-server, region:us
|
https://agents-mcp-hackathon-linkedin-mcp.hf.space/gradio_api/mcp/sse
|
LinkedIn_MCP_search_people
|
Search for people on LinkedIn. Returns: A dictionary containing the search results or an error message if the request fails.
|
keywords, start_index, geo_id, school_id, first_name, last_name, school_keywords, title_keywords, company_keywords
|
LinkedIn-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/LinkedIn-MCP
| 0 |
2025-06-10T22:10:46.000Z
|
gradio, mcp-server, region:us
|
https://agents-mcp-hackathon-linkedin-mcp.hf.space/gradio_api/mcp/sse
|
LinkedIn_MCP_get_profile_posts
|
Fetch LinkedIn profile posts for the given username. Returns: A dictionary containing the profile posts
|
username, start_index, pagination_token, newer_than
|
LinkedIn-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/LinkedIn-MCP
| 0 |
2025-06-10T22:10:46.000Z
|
gradio, mcp-server, region:us
|
https://agents-mcp-hackathon-linkedin-mcp.hf.space/gradio_api/mcp/sse
|
LinkedIn_MCP_get_profile_comments
|
Fetch comments from a given LinkedIn profile. Returns: A dictionary containing the profile comments
|
username
|
LinkedIn-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/LinkedIn-MCP
| 0 |
2025-06-10T22:10:46.000Z
|
gradio, mcp-server, region:us
|
https://agents-mcp-hackathon-linkedin-mcp.hf.space/gradio_api/mcp/sse
|
LinkedIn_MCP_get_similar_profiles
|
Fetch similar profiles to the given LinkedIn username. Returns: A dictionary containing similar profiles
|
username
|
LinkedIn-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/LinkedIn-MCP
| 0 |
2025-06-10T22:10:46.000Z
|
gradio, mcp-server, region:us
|
https://agents-mcp-hackathon-linkedin-mcp.hf.space/gradio_api/mcp/sse
|
LinkedIn_MCP_get_company_details
|
Fetch company details for the given LinkedIn username. Returns: A dictionary containing the company details
|
username
|
LinkedIn-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/LinkedIn-MCP
| 0 |
2025-06-10T22:10:46.000Z
|
gradio, mcp-server, region:us
|
https://agents-mcp-hackathon-linkedin-mcp.hf.space/gradio_api/mcp/sse
|
LinkedIn_MCP_search_companies
|
Search for companies on LinkedIn. Returns: A dictionary containing the search results or an error message if the request fails.
|
keywords, geo_id, company_size, has_jobs, industry_id, page
|
LinkedIn-MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/LinkedIn-MCP
| 0 |
2025-06-10T22:10:46.000Z
|
gradio, mcp-server, region:us
|
https://agents-mcp-hackathon-sec-edgar-mcp.hf.space/gradio_api/mcp/sse
|
sec_edgar_mcp_get_today_date
|
MCP function to get today's date Returns today's date in YYYY-MM-DD format
|
sec-edgar-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/sec-edgar-mcp
| 0 |
2025-06-10T23:02:27.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
|
https://agents-mcp-hackathon-sec-edgar-mcp.hf.space/gradio_api/mcp/sse
|
sec_edgar_mcp_show_available_10k_by_year
|
Before fetching the actual reports, this function checks and returns the available financial report sheets for a list of companies for a given year. Returns: A dictionary mapping company identifiers to their available financial report sheets.
|
lookups, years
|
sec-edgar-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/sec-edgar-mcp
| 0 |
2025-06-10T23:02:27.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-sec-edgar-mcp.hf.space/gradio_api/mcp/sse
|
sec_edgar_mcp_show_available_10k_by_date_range
|
Before fetching the actual reports, this function checks and returns the available financial report sheets for a list of companies for a given date range. Returns: A dictionary mapping company identifiers to their available financial report sheets.
|
lookups, start_date, end_date
|
sec-edgar-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/sec-edgar-mcp
| 0 |
2025-06-10T23:02:27.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-sec-edgar-mcp.hf.space/gradio_api/mcp/sse
|
sec_edgar_mcp_get_company_10k_by_year
|
Fetch year(s) 10-K financial reports for a list of companies and specified sheets. Caveat the sheets names is likely to differ between companies, years, and filings, so it's important to check available sheets first. And batch fetch sheets only if you are sure the sheets names are the same across companies, years, and filings. When applicable, remember to use the report date to align with financial reports from other companies. Returns: A dictionary mapping company identifiers to their financial reports.
|
lookups, years, sheets
|
sec-edgar-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/sec-edgar-mcp
| 0 |
2025-06-10T23:02:27.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-sec-edgar-mcp.hf.space/gradio_api/mcp/sse
|
sec_edgar_mcp_show_available_10q_by_quarters
|
Before fetching the actual reports, this function checks and returns the available financial report sheets for a list of companies for given quarters from 10-Q filings. Caveat the quarter used here is the quarter of when 10-Q is filed to SEC in calendar year system, not the company's fiscal year. Remember to use the report date to align with financial reports from other companies. Returns: A dictionary mapping company identifiers to their available financial report sheets.
|
lookups, quarters
|
sec-edgar-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/sec-edgar-mcp
| 0 |
2025-06-10T23:02:27.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-sec-edgar-mcp.hf.space/gradio_api/mcp/sse
|
sec_edgar_mcp_show_available_10q_by_date_range
|
Before fetching the actual reports, this function checks and returns the available financial report sheets for a list of companies for a given date range from 10-Q filings. Caveat the quarter in the returned dictionary key is the quarter of when 10-Q is filed to SEC in calendar year system, not the company's fiscal year. Remember to use the report date to align with financial reports from other companies. Returns: A dictionary mapping company identifiers to their available financial report sheets.
|
lookups, start_date, end_date
|
sec-edgar-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/sec-edgar-mcp
| 0 |
2025-06-10T23:02:27.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-sec-edgar-mcp.hf.space/gradio_api/mcp/sse
|
sec_edgar_mcp_get_company_10q_by_quarter
|
Fetch financial reports for company(s) within given calendar quarter(s) and specified sheets from 10-Q filings. Caveat the sheets names is likely to differ between companies, quarters, and filings, so it's important to check available sheets first. And batch fetch sheets only if you are sure the sheets names are the same across companies, quarters, and filings. When applicable, remember to use the report date to align with financial reports from other companies. Returns: A dictionary mapping company identifiers to their financial reports.
|
lookups, quarters, sheets
|
sec-edgar-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/sec-edgar-mcp
| 0 |
2025-06-10T23:02:27.000Z
|
gradio, mcp-server-track, mcp-server, region:us
|
https://agents-mcp-hackathon-youtube-analyzer-pro.hf.space/gradio_api/mcp/sse
|
youtube_analyzer_pro_lambda
|
video_id, comment_limit
|
youtube-analyzer-pro
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/youtube-analyzer-pro
| 0 |
2025-06-10T23:21:08.000Z
|
gradio, agent-demo-track, youtube, sentiment-analysis, ai-agents, mcp, mcp-server, region:us
|
|
https://agents-mcp-hackathon-youtube-analyzer-pro.hf.space/gradio_api/mcp/sse
|
youtube_analyzer_pro_lambda_
|
channel_input, max_videos
|
youtube-analyzer-pro
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/youtube-analyzer-pro
| 0 |
2025-06-10T23:21:08.000Z
|
gradio, agent-demo-track, youtube, sentiment-analysis, ai-agents, mcp, mcp-server, region:us
|
|
https://agents-mcp-hackathon-youtube-analyzer-pro.hf.space/gradio_api/mcp/sse
|
youtube_analyzer_pro_lambda__
|
channel_input, max_videos
|
youtube-analyzer-pro
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/youtube-analyzer-pro
| 0 |
2025-06-10T23:21:08.000Z
|
gradio, agent-demo-track, youtube, sentiment-analysis, ai-agents, mcp, mcp-server, region:us
|
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpstore_memory
|
Universal memory storage interface - supports memvid, vector, or dual storage modes.
|
text, client_id, metadata
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpbuild_memory_video
|
Build a memory video from stored chunks using memvid.
|
client_id, memory_name
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpsearch_memory
|
Universal memory search interface with performance comparison in dual mode.
|
query, client_id, memory_name, top_k
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpchat_with_memory
|
Universal chat interface with stored memory context.
|
query, client_id, memory_name
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcplist_memories
|
Universal memory listing interface.
|
client_id
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpget_memory_stats
|
Get aggregated memory statistics with performance comparison in dual mode.
|
client_id
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpdelete_memory
|
Universal memory deletion interface.
|
client_id, memory_name
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpset_storage_mode
|
Set storage mode for runtime configuration.
|
mode, client_id
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpstore_document
|
Store document content in memory chunks.
|
content, doc_type, client_id
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpsave_to_hf_dataset
|
Save all client memory data to a specific HuggingFace dataset.
|
client_id, dataset_name, private
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpload_from_hf_dataset
|
Load client memory data from a specific HuggingFace dataset.
|
client_id, dataset_name
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcplist_hf_datasets
|
List available HuggingFace datasets for the current user. Returns: str: JSON string with available datasets
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpcreate_hf_dataset
|
Create a new HuggingFace dataset for memory storage.
|
dataset_name, private, description
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpget_storage_info
|
Get storage handler information and connection status. Returns: str: JSON string with storage information
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcpbackup_client_data
|
Backup all client data to HuggingFace dataset.
|
client_id
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-memvid-mcp.hf.space/gradio_api/mcp/sse
|
memvid_mcprestore_client_data
|
Restore client data from HuggingFace dataset.
|
client_id
|
memvid-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/memvid-mcp
| 0 |
2025-06-10T23:58:25.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, model-context-protocol, video-memory, semantic-search, ai-agents, memvid, faiss, huggingface, mcp-server, region:us
|
https://agents-mcp-hackathon-mindvault-agent.hf.space/gradio_api/mcp/sse
|
MindVault_Agent_crawl_and_store
|
url
|
MindVault_Agent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/MindVault_Agent
| 0 |
2025-06-11T00:12:11.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-mindvault-agent.hf.space/gradio_api/mcp/sse
|
MindVault_Agent_memvid_chat
|
user_input
|
MindVault_Agent
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/MindVault_Agent
| 0 |
2025-06-11T00:12:11.000Z
|
gradio, mcp-server, region:us
|
|
https://agents-mcp-hackathon-pbc-cell-classifier-mcp.hf.space/gradio_api/mcp/sse
|
pbc_cell_classifier_mcp_main_classification_fn
|
Main function called by gr.Interface. Expects PIL Image from gr.Image(type="pil") but handles edge cases.
|
image_input_from_gradio
|
pbc-cell-classifier-mcp
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/pbc-cell-classifier-mcp
| 0 |
2025-06-11T00:57:31.000Z
|
gradio, mcp-server-track, Agents-MCP-Hackathon, mcp-server, region:us
|
https://agents-mcp-hackathon-travel-documentation-mcp.hf.space/gradio_api/mcp/sse
|
Travel_Documentation_MCP_get_requirements
|
Analyze the documentation requirment for user's travel plan. Returns: Contains the comprehensive documentation requires and suggestions based on the user input
|
from_country, to_country, trip_duration, trip_purpose
|
Travel_Documentation_MCP
|
https://huggingface.co/spaces/Agents-MCP-Hackathon/Travel_Documentation_MCP
| 0 |
2025-06-11T04:12:24.000Z
|
gradio, mcp-server, region:us
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.