M

Medium

Search Medium articles.

·No reviews yet
Repo
Share:

About

Auto-generated

Medium is a Model Context Protocol server in the Search & Web category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

web_search
Search the web and return top results
fetch_url
Fetch and return the contents of a URL

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Medium.

What is the primary function of the Medium MCP?
The Medium MCP allows users to search for articles published on the Medium platform. It integrates Medium's content directly into an MCP client for streamlined access.
How do I authenticate with the Medium MCP?
Authentication for the Medium MCP uses an API key. You will need to obtain a valid API key from Medium and configure it within your MCP client settings.
Can I integrate the Medium MCP with Cline?
Yes, the Medium MCP can be integrated with Cline. Since it uses standard I/O for transport, configuration typically involves specifying the executable path and API key within Cline's settings.
What are the common uses of this MCP?
Typical use cases include searching for specific articles by keywords, authors, or topics. It can be used for research, content discovery, or staying updated on particular subjects.
Does the Medium MCP have any known limitations?
A realistic limitation is that it might not provide access to paywalled content without appropriate Medium account subscriptions. Its capabilities are also restricted to what Medium's public API allows.
Is there a cost associated with using Medium MCP?
The MCP itself is open source and community-provided. Any costs would depend on the underlying Medium service, such as premium features or API usage fees if applicable, as well as your specific deployment.

Install Medium

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "medium": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-medium"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "medium": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-medium"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "medium": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-medium"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.