mirror of
https://github.com/Mintplex-Labs/anythingllm-docs.git
synced 2026-07-21 09:15:22 -04:00
[GH-ISSUE #163] MCP Documentation doesn't provide working examples #58
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @scottybo on GitHub (May 6, 2025).
Original GitHub issue: https://github.com/Mintplex-Labs/anythingllm-docs/issues/163
In the MCP documentation example file on https://docs.anythingllm.com/mcp-compatibility/overview#example-configuration-file it provides a few examples, such as the face generator.
This works fine on Docker (in terms of the MCP server starting) but the face generator agent doesn't actually work.
It says it generates an image, but it's not actually being stored anywhere on the server. So when you attempt to visit the link generated, you're not able to actually view the image.
The link generated is
https://myanythingllmurl.com/workspace/dcs-tests/t/images/1746524581758.pngIt also seems that's it's not possible to actually define the default arguments in the MCP server settings:
So trying to actually follow the documentation doesn't result in a working solution.
@timothycarambat commented on GitHub (May 6, 2025):
It wrote an image to
./imagesin the host container probably in theseverfolderhttps://docs.anythingllm.com/mcp-compatibility/docker#writing-files-to-the-host-machine
In this case you want to specify the output dir is
/app/server/storage/imagesand then it will write to a folder on your host mapped volumeMCP Documentation doesn't provide working examplesto [GH-ISSUE #163] MCP Documentation doesn't provide working examples