Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ You can also debug the server using the [MCP Inspector](https://github.com/model
# Run in UI mode with stdio transport (can switch to HTTP/SSE in the Web UI as needed)
npx @modelcontextprotocol/inspector uv run modelscope-mcp-server

# Run in CLI mode with HTTP transportt (can do operations across tools, resources, and prompts)
# Run in CLI mode with HTTP transport (can do operations across tools, resources, and prompts)
npx @modelcontextprotocol/inspector --cli http://127.0.0.1:8000/mcp/ --transport http --method tools/list
```

Expand Down
4 changes: 2 additions & 2 deletions src/modelscope_mcp_server/tools/aigc.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ async def generate_image(
model: Annotated[
str | None,
Field(
description="The model's ID fo be used for image generation. "
"If not provided, uses the default model provided in server settings."
description="The model's ID to be used for image generation. "
"If not provided, the default model for the corresponding generation type (text-to-image or image-to-image) is used."
),
] = None,
image_url: Annotated[
Expand Down
Loading