a month ago
3D Filament DB is a community database of 3D printer filaments with search, pricing, and store availability. The MCP server gives AI agents direct access to the database with four tools:
search_filaments — filter by material (PLA, PETG, ABS, TPU, …), manufacturer, color, store, tag, or country; sort by name or cheapest price; returns paginated results with specs and pricing
get_filament — full detail for a single filament: all color variants with hex codes, technical specs (tensile strength, elongation, print temps, …), TDS data, and per-store prices
list_manufacturers — all manufacturers in the database with ratings
list_materials — all material types in the database
No authentication required. Free to use.
Server Config
{
"mcpServers": {
"3d-filament-db": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://3dfilamentdb.xyz/mcp"
]
}
}
}