Skip to main content
Glama


πŸ“¦ ν”„λ‘œμ νŠΈ κ°œμš”

  • Ideogram API (v3.0)λ₯Ό MCP μ„œλ²„λ₯Ό 톡해 μ‚¬μš©ν•  μˆ˜μžˆλŠ” TypeScript 도ꡬ

  • 이미지 생성, μŠ€νƒ€μΌ μ°Έμ‘°, 맀직 ν”„λ‘¬ν”„νŠΈ, μ’…νš‘λΉ„, λͺ¨λΈ 선택 λ“± λ‹€κΈ°λŠ₯

  • Claude Desktop 및 기타 MCP ν΄λΌμ΄μ–ΈνŠΈμ—μ„œ μ¦‰μ‹œ μ‚¬μš© OK


Related MCP server: OpenAI MCP

⚑️ ν€΅μŠ€νƒ€νŠΈ

Claude Desktopμ΄λ‚˜ λ‹€λ₯Έ MCP ν΄λΌμ΄μ–ΈνŠΈμ™€ 폭속 연계λ₯Ό μ›ν•œλ‹€λ©΄,
μ•„λž˜ JSON 슀 λ‹ˆνŽ«μ„ μ„€μ • νŒŒμΌμ— 볡사 OK ✨

{
  "mcpServers": {
    "ideogram": {
      "command": "npx",
      "args": [
        "@sunwood-ai-labs/ideagram-mcp-server"
      ],
      "env": {
        "IDEOGRAM_API_KEY": "your_api_key_here"
      }
    }
  }
}

πŸ› οΈ MCP 툴 사양

generate_image

νŒŒλΌλ―Έν„° 일람(μ΅œμ‹ νŒ)

λ§€κ°œλ³€μˆ˜

κΈˆν˜•

μ„€λͺ…

ν•„μˆ˜/선택

λΉ„κ³ 

prompt

λ¬Έμžμ—΄

이미지 생성 ν”„λ‘¬ν”„νŠΈ(μ˜μ–΄ ꢌμž₯)

ν•„μˆ˜

aspect_ratio

λ¬Έμžμ—΄

μ’…νš‘λΉ„(예: "1x1", "16x9", "4x3" λ“±)

선택

15μ’…λ₯˜

resolution

λ¬Έμžμ—΄

해상도(곡식 λ¬Έμ„œ μ°Έμ‘°, 총 69μ’…)

선택

seed

integer

λ‚œμˆ˜ μ‹œλ“œ(μž¬ν˜„μ„± λ‹΄λ³΄μš©)

선택

0~2147483647

magic_prompt

λ¬Έμžμ—΄

맀직 ν”„λ‘¬ν”„νŠΈ("AUTO"

"ON"

"OFF")

rendering_speed

λ¬Έμžμ—΄

v3용 λ Œλ”λ§ 속도("TURBO"

"DEFAULT"

"QUALITY")

style_codes

string[]

8자 μŠ€νƒ€μΌ μ½”λ“œ λ°°μ—΄

선택

style_type

λ¬Έμžμ—΄

μŠ€νƒ€μΌ νƒ€μž…("AUTO"

"GENERAL"

"REALISTIC"

negative_prompt

λ¬Έμžμ—΄

μ œμ™Έ μš”μ†Œ(μ˜μ–΄ ꢌμž₯)

선택

num_images

number

생성 이미지 수(1~8)

선택

style_reference

객체

μŠ€νƒ€μΌ μ°Έμ‘°(Ideogram 3.0 μƒˆλ‘œμš΄ κΈ°λŠ₯)

선택

μ•„λž˜ 상세

β”” urls

string[]

μ°Έμ‘° 이미지 URL λ°°μ—΄(μ΅œλŒ€ 3개)

선택

β”” style_code

λ¬Έμžμ—΄

μŠ€νƒ€μΌ μ½”λ“œ

선택

β”” random_style

λΆ€μšΈ

랜덀 μŠ€νƒ€μΌ μ‚¬μš©

선택

output_dir

λ¬Έμžμ—΄

이미지 μ €μž₯ 디렉토리(κΈ°λ³Έκ°’: "docs")

선택

base_filename

λ¬Έμžμ—΄

μ €μž₯ 파일 μ΄λ¦„μ˜ 기반(κΈ°λ³Έκ°’: "ideogram-image")

선택

νƒ€μž„μŠ€νƒ¬ν”„γƒ»ID λΆ€μ—¬

blur_mask

λΆ€μšΈ

이미지 κ°€μž₯자리 흐림(true둜 마슀크 ν•©μ„±)

선택

κΈ°λ³Έκ°’: false

πŸ“ μ‚¬μš© 예

const result = await use_mcp_tool({
  server_name: "ideagram-mcp-server",
  tool_name: "generate_image",
  arguments: {
    prompt: "A beautiful sunset over mountains",
    aspect_ratio: "16x9",
    rendering_speed: "QUALITY",
    num_images: 2,
    style_reference: {
      urls: [
        "https://example.com/ref1.jpg",
        "https://example.com/ref2.jpg"
      ],
      random_style: false
    },
    blur_mask: true
  }
});

πŸ§‘β€πŸ’» 개발, λΉŒλ“œ, ν…ŒμŠ€νŠΈ

  • npm run build

  • npm run watch ... 개발 λͺ¨λ“œ(μžλ™ λΉŒλ“œ)

  • npm run lint ... μ½”λ“œ 린트

  • npm test ... ν…ŒμŠ€νŠΈ μ‹€ν–‰


πŸ—‚οΈ 디렉토리 ꡬ성

ideagram-mcp-server/
β”œβ”€β”€ assets/
β”œβ”€β”€ docs/
β”‚   └── ideogram-image_2025-05-18T06-31-45-777Z.png
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ tools/
β”‚   β”œβ”€β”€ types/
β”‚   β”œβ”€β”€ utils/
β”‚   β”œβ”€β”€ ideogram-client.ts
β”‚   β”œβ”€β”€ index.ts
β”‚   β”œβ”€β”€ server.ts
β”‚   └── test.ts
β”œβ”€β”€ .env.example
β”œβ”€β”€ package.json
β”œβ”€β”€ tsconfig.json
β”œβ”€β”€ README.md
└── ...(省η•₯οΌ‰

πŸ“ κΈ°μ—¬

  1. 이 μ €μž₯μ†Œλ₯Ό 포크

  2. μƒˆλ‘œμš΄ 브랜치 생성 ( git checkout -b feature/awesome )

  3. λ³€κ²½ 컀밋 (컀밋 λ©”μ‹œμ§€λŠ” 일본어 + 이λͺ¨ν‹°μ½˜ μΆ”μ²œ!)

  4. ν‘Έμ‹œ & ν’€λ¦­ λ§Œλ“€κΈ°


πŸš€ 배포 및 μΆœμ‹œ

  • GitHub Actionsμ—μ„œ μžλ™ npm 곡개

  • 버전 μ—…λ°μ΄νŠΈ β†’ νƒœκ·Έ push둜 μžλ™ 배포

npm version patch|minor|major
git push --follow-tags

μžμ„Έν•œ λ‚΄μš©μ€ docs/npm-deploy.md λ₯Ό μ°Έμ‘°ν•˜μ‹­μ‹œμ˜€!


πŸ“„ λΌμ΄μ„ΌμŠ€

MIT


Available Tools

1 tool
generate_imageC

Generate an image using Ideogram AI

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesThe prompt to use for generating the image (must be in English)
aspect_ratioNoThe aspect ratio for the generated image (see official docs for all 15 values)
resolutionNoThe resolution for the generated image (see official docs for all 69 values)
seedNoRandom seed. Set for reproducible generation.
magic_promptNoWhether to use magic prompt
rendering_speedNoRendering speed for v3 (TURBO/DEFAULT/QUALITY)
style_codesNoArray of 8-char style codes
style_typeNoThe style type for generation
style_reference_imagesNoA set of images to use as style references (max 10MB, JPEG/PNG/WebP)
negative_promptNoDescription of what to exclude from the image (must be in English)
num_imagesNoNumber of images to generate (1-8)
style_referenceNoStyle reference options for Ideogram 3.0
output_dirNoDirectory to save generated images (default: 'docs').
base_filenameNoBase filename for saved images (default: 'ideogram-image'). Timestamp and image ID will be appended automatically.
blur_maskNoApply a blurred mask to the image edges (using a fixed mask image). If true, the output image will have blurred/feathered edges. (default: false)

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden for behavioral disclosure. The description only states the basic action without mentioning rate limits, authentication needs, output format, error conditions, or cost implications. For a complex image generation tool with 15 parameters, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that states the core purpose without unnecessary elaboration. It's appropriately sized for a tool name that clearly indicates its function, and there's no wasted verbiage or structural issues.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (15 parameters, no output schema, no annotations), the description is inadequate. It doesn't explain what the tool returns, error handling, performance characteristics, or typical use patterns. For an image generation tool with many configuration options, more context is needed to help the agent use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds no parameter information beyond what's in the schema. According to scoring rules, when schema coverage is high (>80%), the baseline is 3 even with no param info in the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Generate an image using Ideogram AI' states the basic action (generate) and resource (image) but lacks specificity. It doesn't mention what kind of images, quality levels, or typical use cases. Without sibling tools, differentiation isn't needed, but the purpose remains vague beyond the basic verb-noun pairing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. The description doesn't mention prerequisites, ideal scenarios, or limitations. Without sibling tools, there's no need for differentiation, but the absence of any usage context leaves the agent with no guidance on appropriate application.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

C2.9/5.0
Disambiguation5/5

With only one tool, there is no possibility of confusion or overlap between tools. The single tool 'generate_image' has a clearly distinct and unambiguous purpose.

Naming Consistency5/5

A single tool inherently has perfect naming consistency, as there are no other tools to compare it against. The name 'generate_image' follows a clear verb_noun pattern.

Tool Count2/5

One tool is too few for a server named 'Ideogram MCP Server', which suggests a broader scope for image generation or AI tasks. A single tool feels thin and limited for such a domain.

Completeness2/5

The tool surface is severely incomplete for an image generation server. It only offers generation with no options for editing, listing, deleting, or managing images, creating significant gaps in functionality.

Maintenance

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

Latest Blog Posts

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/Sunwood-ai-labs/ideagram-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server