From 4bac5e4c46fc57c9fb88241ee94dcd928266c4f5 Mon Sep 17 00:00:00 2001 From: hamzanajam7 <148826498+hamzanajam@users.noreply.github.com> Date: Sat, 7 Feb 2026 14:49:04 -0500 Subject: [PATCH] docs(getting-started): fix project structure tree for tools and mcp_server location Co-authored-by: Cursor --- docs/getting-started.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index c1940524..66697949 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -93,12 +93,12 @@ hive/ │ └── pyproject.toml # Package metadata │ ├── tools/ # MCP Tools Package +│ ├── mcp_server.py # MCP server entry point │ └── src/aden_tools/ # Tools for agent capabilities -│ ├── tools/ # Individual tool implementations -│ │ ├── web_search_tool/ -│ │ ├── web_scrape_tool/ -│ │ └── file_system_toolkits/ -│ └── mcp_server.py # HTTP MCP server +│ └── tools/ # Individual tool implementations +│ ├── web_search_tool/ +│ ├── web_scrape_tool/ +│ └── file_system_toolkits/ │ ├── exports/ # Agent Packages (user-generated, not in repo) │ └── your_agent/ # Your agents created via /hive