Skip to main content
Glama

get_linkedin_publication_post_prompt

Generate a structured prompt for drafting a LinkedIn post to announce a publication, including call to action and hashtag suggestions.

Instructions

[FREE] Generate a prompt to draft a LinkedIn post announcing a publication. Professional but engaging tone. Includes call to action and hashtag suggestions. Target length: 150-200 words.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paper_titleYes
journalYes
key_messageYes
clinical_significanceYes
your_roleYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The main handler function for the get_linkedin_publication_post_prompt tool. Decorated with @mcp.tool(), it takes paper_title, journal, key_message, clinical_significance, and your_role as parameters and returns a prompt string for drafting a LinkedIn publication post.
    def get_linkedin_publication_post_prompt(
        paper_title: str,
        journal: str,
        key_message: str,
        clinical_significance: str,
        your_role: str
    ) -> str:
        """
        [FREE] Generate a prompt to draft a LinkedIn post announcing a publication.
        Professional but engaging tone. Includes call to action and hashtag suggestions.
        Target length: 150-200 words.
        """
        return f"""Write a LinkedIn post announcing the publication of '{paper_title}' in {journal}.
    
    Key message: {key_message}
    Clinical significance: {clinical_significance}
    My role: {your_role}
    
    Tone: professional but engaging.
    Include a call to action.
    Length: 150-200 words.
    Suggest 3-5 relevant hashtags.
    
    Pro tip: Publication announcements on LinkedIn drive profile views and establish
    thought leadership in your therapeutic area."""
  • server.py:974-974 (registration)
    Registration of the tool in the list_all_tools() helper that enumerates all available free-tier tools.
    ("get_linkedin_publication_post_prompt", "Draft a LinkedIn post announcing a publication"),
Behavior3/5

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

With no annotations, the description carries full burden. It discloses tone (professional but engaging), structure (includes CTA, hashtags), and target length (150-200 words). However, it does not specify output format (e.g., a string) or mention that it returns a prompt, not the post itself. The output schema exists but is not visible to the agent through the description alone.

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

Conciseness3/5

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

The description is concise (two short sentences) but sacrifices necessary information about parameters and output. It front-loads the purpose but lacks practical details for the agent. It could be restructured to include param hints without adding length.

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 5 required parameters with no schema descriptions, no annotations, and an output schema that is not described, the tool definition is incomplete. The agent lacks guidance on what to input and what the output looks like. The description only covers high-level purpose and tone.

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

Parameters1/5

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

Schema description coverage is 0%, and the description does not mention or explain any of the 5 required parameters (paper_title, journal, key_message, clinical_significance, your_role). The agent must rely solely on parameter names, which may be ambiguous. This is a critical gap.

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 specifies a verb (generate) and resource (prompt to draft a LinkedIn post for a publication announcement). It distinguishes from sibling tools like get_author_invitation_email_prompt or get_slide_deck_outline_prompt by focusing on a LinkedIn post context.

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 the tool is for generating LinkedIn posts about publications but does not explicitly state when to use it versus alternatives like other prompt tools. No exclusion criteria or context are provided, leaving the agent to infer usage from the name and description.

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

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/pubspro/medwriter-mcp'

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