home / mcp / infomate mcp server
MCP server that fetches and summarizes tech news from infomate.club/vas3k
Configuration
View docs{
"mcpServers": {
"agudulin-infomate-mcp": {
"url": "https://infomate.online/mcp",
"headers": {
"YOUR_ENV": "PRODUCTION"
}
}
}
}You can run this MCP server to fetch the latest Infomate news and expose it to MCP clients. It connects to the Infomate data source and serves summaries and updates through a simple remote MCP endpoint, enabling you to query or pull the latest topics and headlines on demand.
Use an MCP client to connect to the server endpoint and request the latest Infomate news. The MCP server exposes a remote endpoint that you can reach to fetch current summaries and trending topics. You can also run the local development server to test the integration before going to production.
Prerequisites: ensure you have a recent Node.js or Bun runtime available on your system. The examples use Bun for the development workflow, but you can adapt to your preferred runtime if needed.
# Clone the MCP server repository
git clone [email protected]:agudulin/infomate-mcp.git
cd infomate-mcp
# Install dependencies (bun is used in the source flow)
bun install
# Start the local development server
bun run devAfter starting the local server, you can connect your MCP client to the local MCP instance using the provided remote configuration. The development flow shows how to point MCP clients to the local endpoint for testing.
This MCP server fetches Infomate news and provides a summarized feed. When testing locally, you can configure a remote MCP URL pointing to the running local instance to verify end-to-end behavior.
If you want to run a remote fetch setup, you can use the command pattern shown to register a remote MCP source that pulls data from a public Infomate MCP endpoint.
Fetches data from a specified MCP endpoint and serves it through the MCP protocol.