Skip to main content
Glama

Start Blog Draft Generation

blog_start_draft

Start background blog draft generation from keywords, code, memos, or Notion pages, and receive a task ID to track progress.

Instructions

블로그 초안 생성을 시작합니다 (백그라운드 실행).

입력 유형 (input_type)

  • keyword: 키워드/주제로 글 생성

  • code: 코드 스니펫을 설명하는 글 생성

  • memo: 메모/노트를 완성된 글로 확장

  • git_push: git 변경사항으로 개발일지 생성

  • notion: Notion 페이지 URL을 입력하면 내용을 자동으로 가져와서 블로그 글 생성 (content에 Notion URL 입력, notion_api_key 필요)

글 스타일 (style)

  • tutorial: 단계별 튜토리얼 (기본값)

  • til: Today I Learned 형식

  • deep-dive: 심층 기술 분석

  • troubleshooting: 문제 해결 과정

모델 선택 (model)

  • gemini-1.5-flash: 빠른 응답, 일반 용도 (기본값)

  • gemini-1.5-flash-8b: 더 빠른 응답, 간단한 작업

  • gemini-1.5-pro: 고품질, 복잡한 작업

  • gemini-2.0-flash: 최신 모델

상세 지침 (instructions / instructions_file)

skill.md 스타일로 상세한 작성 지침을 제공할 수 있습니다:

  • 글의 톤과 문체

  • 반드시 포함할 섹션

  • 타겟 독자층

  • 예시 스타일 참조

  • 금지 표현

  • 코드 스타일 가이드 등을 상세히 기술하면 모델이 지침을 따릅니다.

instructions_file로 마크다운 파일 경로를 지정하면 파일에서 지침을 읽어옵니다. 둘 다 제공하면 파일 내용 + 파라미터 내용이 병합됩니다.

Args:

  • input_type: 입력 유형

  • content: 블로그 글 생성에 사용할 입력 내용

  • style: 글 스타일 (기본: tutorial)

  • language: 출력 언어 ko/en (기본: ko)

  • model: Gemini 모델 (기본: gemini-1.5-flash)

  • instructions: 상세 작성 지침 (선택)

  • instructions_file: 상세 작성 지침 마크다운 파일 경로 (선택)

  • custom_prompt: 간단한 추가 요청 (선택)

  • gemini_api_key: Gemini API 키 (없으면 GEMINI_API_KEY 환경변수 사용)

  • notion_api_key: Notion API 키 (input_type이 notion일 때 필요, 없으면 NOTION_API_KEY 환경변수 사용)

  • web_search: 웹 검색 활용 여부 (기본: false). true로 설정하면 최신 정보, 통계, 참고 자료를 웹에서 검색하여 포함

Returns:

  • task_id: 작업 추적용 ID

  • status: "pending"

  • message: 안내 메시지

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNo사용할 Gemini 모델: gemini-1.5-flash(기본), gemini-1.5-flash-8b, gemini-1.5-pro, gemini-2.0-flashgemini-1.5-flash
styleNo블로그 글 스타일tutorial
contentYes블로그 글 생성에 사용할 입력 내용
languageNo출력 언어ko
input_typeYes입력 유형: keyword, code, memo, git_push, notion
web_searchNo웹 검색을 활용하여 최신 정보와 참고 자료를 포함 (기본: false)
instructionsNo상세 작성 지침 (skill.md 스타일). 글의 톤, 구조, 포함할 내용, 제외할 내용, 타겟 독자, 예시 스타일 등을 상세히 기술
custom_promptNo간단한 추가 요청 사항 (instructions보다 짧은 요청에 사용)
gemini_api_keyNoGemini API 키 (없으면 GEMINI_API_KEY 환경변수 사용)
notion_api_keyNoNotion API 키 (input_type이 notion일 때 필요, 없으면 NOTION_API_KEY 환경변수 사용)
instructions_fileNo상세 작성 지침이 담긴 마크다운 파일 경로. instructions와 함께 사용하면 파일 내용 + 파라미터 내용이 병합됨

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNo사용된 AI 모델
statusYes작업 상태
messageYes안내 메시지
task_idYes작업 추적용 고유 ID
Behavior5/5

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

Beyond the annotations (readOnlyHint false, openWorldHint true), the description reveals that generation runs in the background, returns a task_id with status 'pending', and uses external APIs (Gemini, Notion). It also explains instructions_file merging behavior and web_search capability, providing rich behavioral context.

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

Conciseness4/5

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

The description is long but well-structured with clear sections for input_type, style, model, and instructions. It front-loads the primary purpose and provides necessary details for all 11 parameters without redundancy, though it could be slightly tighter.

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

Completeness5/5

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

For a complex tool with 11 parameters, background execution, external API dependencies, and an output schema, the description covers input types, styles, models, instructions, API keys, web_search, and return values. It also addresses prerequisites and file merging behavior, making it highly complete.

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

Parameters5/5

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

The description explains each input_type variant (keyword, code, memo, git_push, notion) with concrete use cases, elaborates on style options, and gives model selection guidance (e.g., flash for speed, pro for quality). This goes well beyond the schema's generic enum descriptions.

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

Purpose5/5

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

The description clearly states the action: '블로그 초안 생성을 시작합니다' (starts blog draft generation) and mentions background execution. It distinguishes itself from sibling tools by focusing on initiating draft creation, and the title aligns with the description.

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

Usage Guidelines3/5

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

The description provides detailed guidance on how to configure input_type, style, model, and instructions, and notes when notion_api_key is needed. However, it does not explicitly mention when to use this tool versus alternatives like blog_start_draft_pro, or state exclusions/conditions for not using it.

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

Install Server

Other Tools

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/jiwon11/blog-generator-mcp'

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