Labsco
stefanbschneider logo

Zoho MCP

from stefanbschneider

Zoho MCP is a robust new service from Zoho that allows you to create your own MCP server. You can create your own MCP server to perform complex actions in a host of Zoho applications or third-party services.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅFreeQuick setup

GitHub Knowledge Base MCP

A simple MCP server built with FastMCP that lets you connect to any public GitHub repo as knowledge base. It has a few simple tools to find and read markdown and Jupyter notebook documents.

Blog post: https://stefanbschneider.github.io/blog/posts/fastmcp/

Avialble toolset:

  • knowledge_base_info
  • list_documents
  • read_document
  • list_documents_with_metadata
  • list_latest_documents
  • search_documents

knowledge_base_info includes:

  • document_file_count: total supported files
  • document_type_counts: counts per extension (for example .md, .markdown, .ipynb)

list_documents_with_metadata is useful to retrieve latest blog posts by setting sort_by="last_modified_utc" and descending=true.

Example: retrieve latest blog posts

Request:

{
	"tool": "list_latest_documents",
	"arguments": {
		"limit": 5,
		"extension_filter": ".md"
	}
}

Response shape:

[
	{
		"path": "blog/2026-04-10-launch-post.md",
		"size_bytes": 3210,
		"last_modified_utc": "2026-04-10T14:11:52Z"
	}
]

Supported file types:

  • .md
  • .markdown
  • .ipynb