mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-06 16:21:54 +00:00
feat: Implement support for MCP Servers (Claude Tools) - Part 1 Stdio Servers
feat: (draft) support MCP Servers feat: install npx for local MCP Servers execution feat: add nest-asyncio as direct dependency feat: add pdf2image to requirements.txt feat: add local nginx for playwright file access feat: MCP Server Support (Part 1: local stdio servers)
This commit is contained in:
parent
929ea85158
commit
e671b496ec
12 changed files with 657 additions and 25 deletions
|
|
@ -85,4 +85,4 @@ class Message(ApiHandler):
|
|||
id=message_id,
|
||||
)
|
||||
|
||||
return context.communicate(UserMessage(message, attachment_paths)), context
|
||||
return context.communicate(UserMessage(message, attachment_paths)), context
|
||||
|
|
|
|||
|
|
@ -3,9 +3,11 @@ from flask import Request, Response
|
|||
|
||||
from python.helpers import settings
|
||||
|
||||
from typing import Any
|
||||
|
||||
|
||||
class SetSettings(ApiHandler):
|
||||
async def process(self, input: dict, request: Request) -> dict | Response:
|
||||
async def process(self, input: dict[Any, Any], request: Request) -> dict[Any, Any] | Response:
|
||||
set = settings.convert_in(input)
|
||||
set = settings.set_settings(set)
|
||||
return {"settings": set}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue