Publisher Content MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Publisher Content MCP Serverfind articles about renewable energy"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Publisher Content MCP Server
A small Model Context Protocol server that exposes a publisher's journalism to LLMs and agent frameworks as a first-class platform — with search, retrieval, source grounding and consistent citation.
I built this as a working demonstration of the primitives behind "LLM connector and retrieval experiences": defined schemas, tool/function calling, retrieval with context, grounding, and clear attribution at the boundary between authoritative content and external AI systems.
Why it exists
As large language models become a primary gateway to information, publishers need to decide how their content is queried, grounded and cited inside AI systems — rather than leaving it to the model's priors. This server treats an AI assistant as a distribution platform and gives it:
Accurate retrieval — search and fetch the right material with context.
Grounding metadata — source, author, section, publish/update dates, and an
authoritylevel (staff-reported vs analysis vs opinion).Consistent citation — a single citation format every agent can follow.
A runtime policy tool —
citation_policy()exposes the rules for representing the content, so agents fetch and follow them at call time.
Related MCP server: Real Time News Data MCP Server
Tools
Tool | Purpose |
| Keyword search across title, summary and topics; returns grounding metadata |
| Full article body with citation and grounding |
| Available topics with article counts, to scope a query |
| The publisher's rules for how AI systems must attribute and characterise content |
Run it
pip install -r requirements.txt
python server.py # serves over stdioOr use the MCP Inspector to explore the tools interactively:
mcp dev server.pyUse with an MCP client (e.g. Claude Desktop)
Add to your client's MCP config:
{
"mcpServers": {
"publisher-content": {
"command": "python",
"args": ["/absolute/path/to/server.py"]
}
}
}Then ask the assistant something like "What does the publisher have on AI and news discovery? Cite your source." — it will call search_articles, get_article, and apply the citation policy.
Design notes
Schemas over prose. Every tool returns a stable, typed shape so downstream agents can rely on it.
Grounding is explicit.
is_authoritativeandauthoritylet an agent distinguish verified reporting from opinion — central to responsible representation of journalism.Policy as a tool. Making citation rules retrievable at runtime is more robust than hoping the model remembers them.
Note on content
articles.json contains synthetic sample content written for this demo. It is not affiliated with, or copied from, any real publication.
Built by Ravin Tambimuttu as a hands-on exploration of MCP connector and retrieval patterns for publisher content.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/ravintambimuttu-eng/The-Mail'
If you have feedback or need assistance with the MCP directory API, please join our Discord server