tech-icons
Provides access to AWS cloud technology icons for use in architecture diagrams, including services across compute, storage, networking, and more.
Provides access to Google Cloud Platform (GCP) technology icons for use in architecture diagrams, including services across compute, storage, networking, and more.
Provides access to Kubernetes and container ecosystem icons for use in architecture diagrams, including cluster components, workloads, and networking.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tech-iconssearch for AWS Lambda icon"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
tech-icons
English | δΈζ
The missing icon layer for AI-assisted architecture diagramming. Give your LLMs the power to see and place cloud icons across AWS, Azure, GCP, Kubernetes, on-prem infrastructure, and 20+ other vendors β directly, without switching tabs or hunting through vendor docs.
β¨ Features
π Multi-Tier Search β Exact ID β Keyword β Fuzzy β Semantic embedding search, layered for precision and recall
π¨ Dual Format Support β SVG and PNG icons across 21 vendors. Parameterized:
image_type="svg"(default) orimage_type="png", with automatic fallbackπ Cross-Vendor Concepts β
compare_icons("kubernetes")returns the K8s icon from AWS, Azure, GCP, and Kubernetes vendor in one callπ Streamable HTTP + stdio β Run locally (
stdio) or as a web service (--transport http), or both (--transport dual)π₯οΈ Built-in Web UI β
--weblaunches a local icon browser (FastAPI + SPA) for visual explorationπ¦ Zero Build, Works Everywhere β Icons are bundled in the wheel; no local build step, works with
uvxdirectlyβ‘ FastMCP Framework β Modern decorator-based tool registration with automatic JSON Schema generation
π§© Extensible β
format="ppt_master"generates placeholders for ppt-master;format="inline_group"composes directly into SVG architecture diagrams
Related MCP server: diagram-ai-generator
π Table of Contents
π Quick Start
Run directly (no install needed)
# stdio MCP server β ready for Claude Desktop, Cursor, etc.
uvx tech-icons
# With semantic search (sentence-transformers embeddings)
uvx --with 'tech-icons[semantic]' tech-icons
# Launch the web icon browser
uvx --with 'tech-icons[web]' tech-icons --web --open
# Run as a Streamable HTTP service
uvx --with 'tech-icons[web]' tech-icons --transport http --port 8000Run from this repository (development)
git clone https://github.com/zhiweio/tech-icons.git
cd tech-icons
uv run tech-iconsThat's it. The published wheel bundles the full icon catalog (~1.4 MB metadata + SVGs)βno local build step, no asset download.
π¦ Installation & Requirements
Requirement | Details |
Python | β₯ 3.10 |
Package Manager | uv (recommended), pip, pipx |
Core Dependencies |
|
Web UI (optional) |
|
Semantic Search (optional) |
|
Everything |
|
# Install with all features
uvx --with 'tech-icons[all]' tech-icons
# Or install globally
uv tool install 'tech-icons[all]'
tech-icons --webExtras at a glance
Extra | Adds | When to use |
none | Core MCP server (stdio) | Claude Desktop, Cursor, any MCP client |
| FastAPI + uvicorn |
|
| sentence-transformers | Tier-4 semantic search for vague queries |
| both of the above | Full functionality |
π§ Usage Modes
tech-icons supports five distinct operating modes, selected by CLI flags:
tech-icons # stdio MCP (default)
tech-icons --transport http --port 8000 # Streamable HTTP MCP
tech-icons --transport dual # stdio + HTTP simultaneously
tech-icons --web --open # Local browser UI
tech-icons --ppt-master aws --target ./icons/ # Bulk icon export1. MCP Server (stdio)
The default mode. The server reads MCP JSON-RPC messages from stdin and writes responses to stdout. This is what MCP clients like Claude Desktop and Cursor expect.
uvx tech-icons
# or with semantic search:
uvx --with 'tech-icons[semantic]' tech-iconsHow it works: The client process spawns uvx tech-icons as a child process, communicates via stdin/stdout. One process per client session. No ports, no networkβpure local IPC.
2. MCP Server (Streamable HTTP)
Run as a persistent HTTP service. Multiple clients can connect simultaneously. Uses the Streamable HTTP protocol for full bidirectional communication including streaming responses.
uvx --with 'tech-icons[web]' tech-icons --transport http --host 0.0.0.0 --port 8000How it works: Uvicorn ASGI server starts, serving the MCP endpoint at http://host:port/mcp. Clients connect over HTTP/2 with streaming support. The server stays runningβstart once, many clients connect.
3. Dual Transport (stdio + HTTP)
Run both transports simultaneously on a single process with a shared engine instance. Perfect for development workflows where you want local IDE integration and a network-accessible service.
uvx --with 'tech-icons[web]' tech-icons --transport dual --port 8000How it works: asyncio.gather() runs run_stdio_async() and run_http_async() concurrently. Both share the same SearchEngine instance (loaded once). Use Ctrl+C to stop.
4. Web UI
Launch a local icon browser with full-text search, vendor/category filters, paginated catalog, and SVG preview/download.
uvx --with 'tech-icons[web]' tech-icons --web --port 8765 --openOpens http://127.0.0.1:8765 in your browser. The web UI uses the same SearchEngine class as the MCP serverβno logic duplication.
5. PPT-Master Export
Batch-export SVG icons into a ppt-master template directory. Supports vendor names, comma-separated icon IDs, or all.
# Export a single vendor
uvx tech-icons --ppt-master aws --target ./templates/icons/
# Export specific icons
uvx tech-icons --ppt-master aws/compute/lambda,gcp/compute/cloud-run
# Export everything
uvx tech-icons --ppt-master all
# Use symlinks (no file copy overhead)
uvx tech-icons --ppt-master aws --symlinkπ₯οΈ MCP Client Configuration
Claude Desktop / Claude Code
{
"mcpServers": {
"tech-icons": {
"command": "uvx",
"args": ["tech-icons"]
}
}
}With semantic search
{
"mcpServers": {
"tech-icons": {
"command": "uvx",
"args": ["--with", "tech-icons[semantic]", "tech-icons"]
}
}
}Streamable HTTP (remote / self-hosted)
{
"mcpServers": {
"tech-icons": {
"url": "http://your-server:8000/mcp",
"transport": "http"
}
}
}Cursor / Windsurf / other MCP-compatible editors
Use the same stdio configuration as Claude Desktop above. For HTTP transport, check your editor's MCP documentation for HTTP endpoint support.
π³ Docker
Pre-built Docker image with both MCP server and Web UI modes. Choose via the SERVER_MODE environment variable.
Quick Start
# Build the image
docker build -t tech-icons .
# Run as MCP Streamable HTTP server (default)
docker run -p 8765:8765 tech-icons
# Run as Web UI (icon browser)
docker run -p 8765:8765 -e SERVER_MODE=web tech-iconsdocker-compose
# MCP server mode
docker compose --profile mcp up -d
# Web UI mode
docker compose --profile web up -dEnvironment Variables
Variable | Default | Description |
|
|
|
|
| Bind address (always |
|
| Listen port |
|
| Python log level |
Claude Desktop Configuration (Docker)
Connect Claude Desktop to a containerized tech-icons via Streamable HTTP:
{
"mcpServers": {
"tech-icons": {
"type": "streamableHttp",
"url": "http://localhost:8765/mcp"
}
}
}Note: The container binds
0.0.0.0:8765. If running the container on a remote host, replacelocalhostwith the host's IP address.
π οΈ Tools & API Reference
tech-icons exposes 7 tools, 1 resource, and cross-vendor concept groups:
Tools
Tool | Parameters | Returns | Description |
|
|
| Multi-tier search: exact ID β keyword β fuzzy β semantic |
|
|
| Full metadata: vendor, category, name, aliases, tags, description, path |
|
|
| Icon content in chosen format and image type (SVG or PNG); |
|
|
| All icon categories, optionally filtered by vendor |
| none |
| Vendor name β icon count mapping (21 vendors) |
| none |
| Cross-vendor concept names (e.g., |
|
|
| Icons from all vendors for a concept, grouped by vendor |
All parameters with Annotated[type, "description"] type hints auto-generate JSON Schema via FastMCP.
Resource
URI | MIME Type | Content |
|
| Full 5,200+ entry icon catalog with all metadata |
LLM Usage Examples
Find an icon for a specific AWS service:
search_icons(query="Lambda")Compare Kubernetes icons across clouds:
compare_icons(concept="kubernetes")Get a data URI for embedding in an HTML architecture diagram:
get_icon_image(id="gcp/compute/cloud-run", format="data_uri")Get a PNG icon for a Kubernetes component:
get_icon_image(id="kubernetes/compute/pod", image_type="png", format="data_uri")List all Azure database services:
search_icons(query="database", vendor="azure", category="databases")Explore the full catalog:
read_resource("icon://catalog")π¨ Format Options
Each format serves a distinct integration scenario:
Format | Output | Use Case | Example |
| SVG XML string | Inspection, direct embedding |
|
| Absolute filesystem path | Local tooling, file references |
|
| Base64-encoded SVG | Binary transport, JSON payloads |
|
|
| HTML |
|
|
| Direct SVG composition in diagrams |
|
|
| ppt-master skill placeholder |
|
| Text summary + | Download the SVG file | Text + |
π·οΈ Icon ID Convention
All icons follow a consistent canonical ID format:
{vendor}/{category}/{name}Examples:
aws/compute/lambdaβ AWS Lambdaazure/databases/cosmos-dbβ Azure Cosmos DBgcp/serverless-computing/cloud-runβ Cloud Runmicrosoft/365/teamsβ Microsoft Teamscncf/orchestration/kubernetesβ Kubernetesdevicon/framework/reactβ React
IDs are lowercase, with hyphens for multi-word names. Use list_categories(vendor="aws") to explore available categories for a vendor.
ποΈ Architecture & Design
Key Design Decisions
Single SearchEngine, multiple interfaces β The
SearchEngineclass has one instance. The MCP server, FastAPI web app, and ppt-master CLI all wrap itβno logic duplication.Tiered search with early termination β Search stops at the first tier that returns β₯
limitresults. Most queries hit Tier 1 (exact ID) or Tier 2 (keyword index) and never reach fuzzy or semanticβfast and cheap.Bundled catalog in wheel β
icons.json,keyword_index.json, and SVGs are packaged viahatchling.importlib.resources.files()resolves paths at runtime, works in both dev (uv run) and installed (uvx,pipx) environments.Lazy loading β The engine loads catalog data from disk only on first access (
_ensure_loaded()). In stdio mode,engine.load()is called explicitly beforemcp.run().FastMCP decorator pattern β Each tool is a standalone function decorated with
@mcp.tool. Python type hints (Annotated[str, "desc"],Literal["aws", ...]) auto-generate JSON Schema. No manualinputSchemawriting.Cross-vendor concept registry β
enrichments.yamldefines technology concepts (e.g., "kubernetes") and maps them to icon IDs across vendors. Concept metadata is loaded on engine initialization and available asengine.concepts.
Technology Stack
Component | Technology | Rationale |
MCP Framework | FastMCP 3.4 | Decorator-based, auto Schema, stdio+HTTP dual transport |
Search Engine | Custom (4-tier) | Exact β keyword β fuzzy β semantic, early termination |
Fuzzy Matching | rapidfuzz | Token-sort ratio scoring, C-accelerated |
Semantic Search | sentence-transformers | all-MiniLM-L6-v2, optional extra |
Web UI | FastAPI + SPA | Shared engine instance, CORS-enabled |
Build System | hatchling | PEP 517, supports bundling data files |
Package Manager | uv | Fast resolver, |
π Integrations
ppt-master
The ppt_master format generates <use data-icon="tech-icons/..."/> elements compatible with ppt-master's embed_icons.py hook. Use --ppt-master to bulk-export icons:
uvx tech-icons --ppt-master aws --target ./templates/icons/
uvx tech-icons --ppt-master aws/compute/lambda,gcp/compute/cloud-run --symlinkArchitecture Diagrams
Use format="data_uri" for HTML <img> tags, or format="inline_group" for direct SVG <g> element composition:
<!-- data_uri: embed in HTML -->
<img src="DATA_URI_OUTPUT" alt="AWS Lambda" class="tech-icon--md" />
<!-- inline_group: embed in SVG canvas -->
<svg viewBox="0 0 800 400">
<g transform="translate(50, 50)">
INLINE_GROUP_OUTPUT
</g>
</svg>See docs/integration-arch-diagram.md for complete examples with CSS styling, multi-cloud layouts, and vendor color conventions.
Semantic Search
Add [semantic] extra to enable the 4th search tier. Useful for vague queries ("that thing for serverless") where keyword matching falls short:
uvx --with 'tech-icons[semantic]' tech-icons㪠Development
# Clone and set up
git clone https://github.com/zhiweio/tech-icons.git
cd tech-icons
uv sync --group dev
# Run tests
uv run pytest tests/ -v
# Lint + type check
uv run ruff check tech_icons/ tests/
uv run mypy tech_icons/
# Format
uv run ruff format tech_icons/ tests/
# All checks (format + lint + typecheck + test)
make allProject Structure
tech-icons-abilities/
βββ tech_icons/ # Main package
β βββ server.py # FastMCP server + CLI (main entry point)
β βββ search.py # 4-tier search engine
β βββ formats.py # 6 SVG output format adapters
β βββ concepts.py # Cross-vendor concept registry
β βββ normalize.py # SVG normalization & catalog generation
β βββ _paths.py # Runtime path resolution (importlib.resources)
β βββ web/
β β βββ app.py # FastAPI HTTP API
β β βββ static/ # SPA frontend (index.html + assets)
β βββ bridges/
β β βββ ppt_master.py # ppt-master icon export bridge
β βββ catalog/ # Pre-built data files (bundled in wheel)
β β βββ icons.json # 3,140+ entries with full metadata
β β βββ keyword_index.json # Inverted keyword index
β β βββ embeddings.npz # Sentence embeddings (optional)
β β βββ embedding_ids.json # Embedding-to-ID mapping
β β βββ enrichments.yaml # Cross-vendor concept definitions
β βββ icons/ # Bundled SVG files (~3,140 files)
βββ tests/ # pytest test suite (258+ tests)
βββ scripts/
β βββ build_catalog.py # Catalog build pipeline
β βββ normalize_icons.py # SVG normalization script
βββ docs/ # Documentation, screenshots
βββ pyproject.toml # Build config, dependencies, tooling
βββ Makefile # Development task runner
βββ README.md # This fileRunning Tests
uv run pytest tests/ -v # All tests
uv run pytest tests/test_server.py -v # Server-specific
uv run pytest tests/ -v --cov # With coverageTooling
Formatter: ruff (line-length: 120)
Linter: ruff (E, W, F, I, N, UP, B, A, S, T20, RUF)
Type checker: mypy (disallow-untyped-defs)
Test runner: pytest + pytest-asyncio (asyncio_mode=auto)
β FAQ
Q: Do I need to build the catalog locally?
A: No. icons.json and SVGs are bundled in the wheel. uvx tech-icons works immediately.
Q: How is this different from the AWS/Azure/GCP icon libraries? A: tech-icons aggregates icons from 6 vendors into a single, searchable MCP server with consistent IDs and a cross-vendor concept system. Instead of hunting through multiple icon sets, you ask the LLM and it retrieves the right icon.
Q: Can I use this without an MCP client?
A: Yes. Use --web for a browser UI, --transport http for a REST-ish API, or import SearchEngine directly in Python (from tech_icons import SearchEngine).
Q: Does semantic search require GPU?
A: No. The default all-MiniLM-L6-v2 model runs on CPU. Embeddings are precomputedβonly the query vector is generated at runtime.
Q: Can I add my own icons or vendors?
A: Yes. Put SVG files under assets/your-vendor-*, update tech_icons/normalize.py with a collector function, then run scripts/build_catalog.py. See Development above.
Q: What MCP protocol version does this support?
A: FastMCP 3.4 supports MCP protocol version 2025-03-26. All transports (stdio, Streamable HTTP) use this protocol.
π Icon Sources & Attributions
tech-icons aggregates icons from the following sources. The project itself (server, search engine, tooling) is MIT-licensed, but the bundled icon files retain their original licenses and terms. Please review each source's license before redistributing or modifying the icons.
Source | Vendor(s) | License / Terms | Notes |
| AWS Terms of Service | Free to use for architecture diagrams. | |
| Free to use for architecture diagrams. | ||
| Google Cloud Brand Guidelines | Free to use for architecture diagrams. | |
| |||
| |||
| |||
| |||
| |||
| Trademarks owned by CNCF and respective projects. | ||
| Icon fonts and SVGs for software technologies. | ||
| Flat, colored technology icons. | ||
| PNG icons from the Python diagrams library (also supplements |
Note: This project does not claim ownership of any bundled icon files. The icons are provided as-is from their respective upstream sources for convenience in AI-assisted diagramming workflows. The MIT license of this project applies to the server code, search engine, tooling, and documentation β not to the third-party icon assets.
π License
Project code (server, search engine, tooling, docs): MIT Β© zhiweio
Bundled icons: Each icon set retains its original license and terms as listed in Icon Sources & Attributions.
Available Tools
7 toolscompare_iconsA
Get all vendor icons for a concept (e.g., 'kubernetes' returns the K8s icon from AWS, Azure, and GCP).
Use list_concepts first to discover names.
| Name | Required | Description | Default |
|---|---|---|---|
| concept | Yes | Concept group name (e.g., kubernetes, serverless) |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden; it clearly indicates a read operation returning multiple items. Although minimal, it is sufficient for this simple tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Only two sentences: first states purpose with example, second provides usage tip. No redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with an output schema and clear prerequisite, the description covers everything needed for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already describes 'concept' as 'Concept group name'. The description adds an example but no additional semantic value beyond what the schema provides, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'Get all vendor icons for a concept' and distinguishes from siblings like get_icon and search_icons by specifying cross-vendor comparison with an example (kubernetes).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit prerequisite instruction to 'Use list_concepts first', guiding the agent on proper sequencing, though it doesn't mention when not to use or compare directly to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_iconA
Get full details for a specific icon by its canonical ID.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Icon ID (e.g., aws/compute/lambda) |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must disclose traits. It only says 'Get full details' without specifying what details are included, whether it's read-only, or any side effects. Minimal disclosure beyond basic operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with verb and resource, no extraneous information. Highly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and output schema, description is adequate but could be improved by mentioning that it returns icon metadata (e.g., name, vendor, category). Output schema partially compensates.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and already describes the id parameter with an example. The description adds 'by its canonical ID' which reinforces meaning but does not add significant new semantics beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Get', resource 'full details for a specific icon', and constraint 'by its canonical ID'. It effectively distinguishes from siblings like compare_icons, list_*, and search_icons.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you have a specific icon ID and need details, but does not explicitly state when not to use or suggest alternatives. The context from sibling names aids differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_icon_imageB
Get icon image content in a specified format and image type (SVG or PNG).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Icon ID (e.g., aws/compute/lambda) | |
| format | No | Output format | raw |
| image_type | No | Image format to serve (svg or png, default: svg). Falls back to available format. | svg |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description does not disclose behavioral traits such as read-only nature, required permissions, or side effects. It only restates the parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, concise, and front-loaded with the verb 'Get'. Every word is necessary and no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description should explain return values (e.g., what each format returns). It does not mention the return type, error conditions, or behavior when format is 'download'. Incomplete for a 3-parameter tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% so baseline is 3. The description adds minimal context by naming the image types (SVG, PNG), which is also implied by the schema's enum. No additional meaning beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Get' with a clear target 'icon image content' and mentions the two image types (SVG or PNG). It differentiates from sibling tools like get_icon (likely returns metadata) and compare_icons.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. For example, it does not clarify when to use format vs image_type or how it differs from get_icon.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesB
List all available icon categories, optionally filtered by vendor.
| Name | Required | Description | Default |
|---|---|---|---|
| vendor | No | Filter by vendor |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No behavioral details beyond basic listing. No disclosure of read-only nature, output format, or filtering semantics. With no annotations, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise single sentence that conveys the core functionality. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple listing tool with one optional parameter and an output schema, the description is sufficient. Minor omission: doesn't state default behavior when no vendor filter is applied.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description's mention of filtering echoes the schema's parameter description. With 100% schema coverage, no additional semantic value is added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the action (list) and the resource (icon categories), and mentions optional filtering by vendor. Differentiates from sibling tools like list_vendors and list_concepts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs siblings such as list_concepts or list_vendors. The description only states functionality without contextual usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_conceptsA
List all cross-vendor concept group names (e.g., kubernetes, serverless, object-storage).
Use compare_icons to retrieve the icons in a group.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations and minimal description. Does not disclose side effects, pagination, or ordering. However, output schema may cover return structure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with purpose, no filler words. Efficient and clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters and existing output schema, description is sufficient but could mention ordering or uniqueness for completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters, so description adds meaning by stating it lists concept group names, which is appropriate baseline for zero parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'List all cross-vendor concept group names' with examples like kubernetes, serverless. Distinct from siblings by directing to compare_icons for icons.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says to use compare_icons for icons, implying this tool only lists names. Does not detail when not to use, but context from siblings provides some guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_vendorsA
List all vendors with their icon counts.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must disclose behavior. It implies read-only ('list') but does not mention if there are limits, pagination, or ordering. For a simple parameterless tool, this is minimally adequate but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no superfluous words. It is front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with zero parameters and an output schema (present), the description is completeβit specifies what is listed and that counts are included. No additional context seems necessary.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has no parameters; the description adds 'with their icon counts,' which clarifies what the response includes beyond the empty schema. Baseline for zero parameters is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List all vendors') and what is included ('with their icon counts'), distinguishing it from sibling tools like list_categories and list_concepts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives (e.g., search_icons) or any prerequisites. The description is too brief to provide usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_iconsA
Search cloud tech icons by query. Supports exact ID, keyword, fuzzy, and semantic matching.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return (default 10) | |
| query | Yes | Search query (name, ID, or description) | |
| vendor | No | Filter by vendor: aws, azure, gcp, microsoft, cncf, devicon, developer | |
| category | No | Filter by category (e.g., compute, databases) |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full transparency burden. It discloses support for multiple search modes (exact, keyword, fuzzy, semantic), adding value beyond schema. However, it does not mention pagination, rate limits, or result handling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two very concise sentences with no fluff. Key information (verb, resource, search modes) is front-loaded. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given output schema existence and 4 parameters, the description is adequate but incomplete. It misses guidance on when to use this vs siblings like get_icon or list_categories, and lacks details on sorting or default behavior. Still functional.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema descriptions cover all parameters (100% coverage). The description adds context by specifying matching types, enhancing the query parameter's meaning. Does not detail other parameters beyond schema, but the added value justifies above-baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool's function: 'Search cloud tech icons by query.' It specifies supported matching types (exact ID, keyword, fuzzy, semantic), distinguishing it from siblings like get_icon (single icon) and compare_icons (comparison).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or when-not-to-use guidance. Usage is implied via search capabilities, but no mention of alternatives like get_icon for exact ID or list_categories for browsing. The description lacks context for choosing this tool over siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool serves a clearly distinct purpose: listing vendors, categories, concepts, searching, getting icon details, getting icon images, and comparing icons across vendors. There is no ambiguity or overlap.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., list_vendors, get_icon, search_icons). The naming is predictable and uniform.
Seven tools is appropriate for a read-only icon service. It covers discovery (list_*, search_icons), retrieval (get_icon, get_icon_image), and cross-vendor comparison (compare_icons) without being excessive or insufficient.
The tool surface fully supports browsing and retrieval of cloud tech icons: vendors, categories, concepts, search, icon details, image downloads, and cross-vendor comparison. No obvious gaps for the domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
327 dev tools via REST API and MCP. Generate Dockerfiles, schemas, K8s, APIs, and more.
Search 161,000+ free hand-drawn icons and fetch ready-to-embed SVG or PNG from any MCP client.
Search 77,000+ MCP servers ranked by real adoption data to find the right one for any task.
Hosted MCP server for AWS cloud spend: service breakdowns, anomalies, savings and forecasts.
Related MCP Servers
- AlicenseBqualityDmaintenanceMCP server that allows FE/UI/Designers to retrieve SVG icons via the Iconify API by simply asking LLMs rather than manually searching websites.3304MIT
- AlicenseNot gradedqualityCmaintenanceProfessional AI-powered architecture diagram generator with multi-cloud support and MCP server integration. Generates beautiful, accurate diagrams with provider-specific icons for AWS, Azure, GCP, Kubernetes, and more.10MIT
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server for semantic SVG icon search. Generate infographic SVG icons by keyword β over 100,000 icons with semantic search support.120MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for generating architecture diagrams with official vendor icons from natural language descriptions. Provides tools to validate specs, render diagrams, search icon catalog, and list available services.3MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zhiweio/tech-icons'
If you have feedback or need assistance with the MCP directory API, please join our Discord server