Skip to main content
Glama
mrseanchow

Cowsay MCP Server

by mrseanchow

cowsay-mcp

Cowsay MCP Server, providing ASCII art cow capabilities for LLMs. This implementation allows language models to generate fun ASCII art cows with custom messages.

🛠️ Tools

  • cowsay: Generate ASCII art with a cow saying your message

  • cowthink: Generate ASCII art with a cow thinking your message

  • list_cows: List all available cow characters

Related MCP server: artscii

📦 Installation

Installing via Smithery

To install cowsay-mcp for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @mrseanchow/cowsay-mcp --client claude

Manual Installation

npm install -g cowsay-mcp

Using npx

npx -y cowsay-mcp

🚀 Running on Cursor

Add this to your mcp.json file:

{
  "mcpServers": {
    "cowsay-mcp": {
      "command": "npx",
      "args": ["-y", "cowsay-mcp"]
    }
  }
}

🌊 Running on Windsurf

Add this to your ./codeium/windsurf/model_config.json file:

{
  "mcpServers": {
    "cowsay-mcp": {
      "command": "npx",
      "args": ["-y", "cowsay-mcp"]
    }
  }
}

🎨 Available Cow Characters

The server provides a wide variety of cow characters, including but not limited to:

  • default: The classic cow

  • small: A smaller version of the default cow

  • tux: A penguin character

  • moose: A moose character

  • sheep: A sheep character

  • dragon: A dragon character

  • elephant: An elephant character

  • skeleton: A skeleton character

  • stimpy: A Stimpy character

And many more! Use the list_cows tool to see all available characters.

📝 Example Usage

cowsay Tool

{
  "name": "cowsay",
  "parameters": {
    "message": "Hello from LLM!",
    "cow": "tux"
  }
}

cowthink Tool

{
  "name": "cowthink",
  "parameters": {
    "message": "What should I say next?",
    "cow": "moose"
  }
}

list_cows Tool

{
  "name": "list_cows",
  "parameters": {}
}

📄 License

MIT License - see LICENSE file for details.

Available Tools

3 tools
cowsayA

Generate ASCII art of a cow saying something.

ParametersJSON Schema
NameRequiredDescriptionDefault
cowNoThe cow character to use.default
messageYesThe message for the cow to say.Hello World!

TDQS

A3.5/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 the full burden of behavioral disclosure. It states the tool generates ASCII art but lacks details on output format, potential errors, or any constraints like rate limits or permissions. This is a significant gap for a tool with no annotation coverage.

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 front-loads the core purpose ('Generate ASCII art') without any wasted words. It is appropriately sized for the tool's complexity, making it easy to understand quickly.

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

Completeness3/5

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

Given the tool's low complexity, 100% schema coverage, and no output schema, the description is minimally adequate. However, it lacks behavioral details (e.g., output format, error handling) that would be helpful for an agent, especially with no annotations. It meets basic needs but has clear gaps in completeness.

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?

The schema description coverage is 100%, so the schema already documents both parameters ('cow' and 'message') with descriptions and enums. The description adds no additional parameter semantics beyond what the schema provides, making the baseline score of 3 appropriate as the schema handles the heavy lifting.

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 specific action ('Generate ASCII art') and resource ('a cow saying something'), distinguishing it from sibling tools like 'cowthink' (which likely generates thought bubbles) and 'list_cows' (which lists available cow characters). It precisely communicates the tool's function without redundancy.

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 implies usage for creating ASCII art with customizable messages and cow characters, but it does not explicitly state when to use this tool versus alternatives like 'cowthink' or 'list_cows'. No exclusions or prerequisites are mentioned, leaving usage context somewhat open-ended.

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

cowthinkB

Generate ASCII art of a cow thinking something.

ParametersJSON Schema
NameRequiredDescriptionDefault
cowNoThe cow character to use.default
messageYesThe message for the cow to think.What to think about?

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool generates ASCII art but does not reveal any behavioral traits such as output format, error handling, or performance characteristics. This is a significant gap for a tool with no annotation coverage.

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 directly states the tool's purpose without any unnecessary words. It is front-loaded with the core action and resource, making it highly concise and well-structured for quick understanding.

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 lack of annotations and output schema, the description is incomplete. It does not address behavioral aspects like output format or error handling, which are crucial for an AI agent to use the tool effectively. The description alone is insufficient for a tool with no structured data support.

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?

The description does not add meaning beyond what the input schema provides, as schema description coverage is 100%. The schema already documents both parameters ('cow' with enum values and 'message' with default), so the baseline score of 3 is appropriate since the schema handles parameter documentation adequately.

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 specific action ('Generate ASCII art') and resource ('a cow thinking something'), distinguishing it from sibling tools like 'cowsay' (which likely speaks) and 'list_cows' (which lists available cows). It precisely communicates the tool's function without being vague or tautological.

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?

The description provides no guidance on when to use this tool versus alternatives like 'cowsay' or 'list_cows'. It lacks any mention of prerequisites, exclusions, or contextual cues for selection, leaving the agent to infer usage based solely on the tool name and description.

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

list_cowsB

List all available cow characters.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/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 the full burden of behavioral disclosure. It states the action ('List all available cow characters') but doesn't describe what 'available' means, how the list is formatted, if there are pagination or rate limits, or any side effects. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

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, clear sentence that directly states the tool's purpose without any fluff or redundancy. It's front-loaded with the essential information, making it highly efficient and easy to parse, which is ideal for conciseness.

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

Completeness3/5

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

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate as a basic listing function. However, it lacks details on output format, behavioral traits, or differentiation from siblings, which could be helpful for an AI agent. It meets the minimum viable standard but has clear gaps in context.

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

Parameters4/5

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

The tool has 0 parameters, and the schema description coverage is 100%, so there are no parameters to document. The description doesn't need to add parameter semantics, and it appropriately doesn't mention any. A baseline of 4 is applied as per the rules for tools with zero parameters, indicating it meets expectations without unnecessary detail.

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

Purpose4/5

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

The description clearly states the verb ('List') and resource ('all available cow characters'), making the purpose immediately understandable. It doesn't differentiate from sibling tools like 'cowsay' or 'cowthink', which appear to be different operations rather than alternative listing methods, so a 4 is appropriate rather than a 5.

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?

The description provides no guidance on when to use this tool versus its siblings ('cowsay' and 'cowthink'), which likely serve different purposes (e.g., generating cow-based messages). It also lacks context about prerequisites or limitations, offering only basic usage without comparative or exclusionary advice.

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

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: cowsay outputs speech, cowthink outputs thoughts, and list_cows lists available characters. There is no overlap or ambiguity between these functions.

Naming Consistency5/5

All tool names follow a consistent snake_case pattern with clear, descriptive verbs (cowsay, cowthink, list_cows). The naming is uniform and predictable across the set.

Tool Count5/5

With 3 tools, this server is well-scoped for its cowsay domain. Each tool serves a specific, necessary function without bloat, making the count appropriate and efficient.

Completeness5/5

The tool set covers the core cowsay functionality comprehensively: generating speech art, generating thought art, and listing available characters. There are no obvious gaps for this simple domain.

Maintenance

ActivityInactive
ResponsivenessSyncing

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/mrseanchow/cowsay-mcp'

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