agent daemon
Project description
agentd
View sample configs in the config/ directory
to run:
uvx agentd config.yaml
Built using mcp-subscribe a way for agents to subscribe to any MCP's tools
MCP with chat completions
Building this I realized building an MCP Client with which to use your servers is too complex. Enter patch_openai_with_mcp.
Just wrap the openai client and pass it mcp_servers=[…]. You can use the MCPServerStdio or MCPServerSSE classes from openai-agents. I'm not sure why openai hadn't done this yet to be honest so I decided to scratch my own itch.
Example:
from agents.mcp.server import MCPServerStdio
from agentd.patch import patch_openai_with_mcp
from openai import OpenAI
fs_server = MCPServerStdio(
params={
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp/"],
},
cache_tools_list=True
)
client = patch_openai_with_mcp(OpenAI()) # Get the patched client back
response = client.chat.completions.create(
#model="gpt-4o",
#model="claude-3-5-sonnet-20240620",
model="gemini/gemini-2.0-flash",
messages=[
{"role": "user", "content": "List the files in /tmp/ using the tool"}
],
mcp_servers=[fs_server],
mcp_strict=True
)
print(response.choices[0].message.content)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentd-0.1.6.tar.gz.
File metadata
- Download URL: agentd-0.1.6.tar.gz
- Upload date:
- Size: 114.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b36b6cec8cb0c4d71b195728726d831261d29f25d4c1b1b9db99b3dc3a6aa0be
|
|
| MD5 |
577b662c9e582774c6c0743073b6adad
|
|
| BLAKE2b-256 |
1a7af20d65f317ee2b3d63e5fa29f5dd8fe78f37ed9221108bd3fa4a19b8861e
|
File details
Details for the file agentd-0.1.6-py3-none-any.whl.
File metadata
- Download URL: agentd-0.1.6-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d8d9f83d7f5794c97003490fdfd72e4edbb36b83df749448b83bbb8a27a4f61
|
|
| MD5 |
400f1a929f64751e5582cf7c35f68e20
|
|
| BLAKE2b-256 |
b3749db952f64e79d9df7d1af086a471cec55f72f5f3a1a33affba971cb984a7
|