TinaCMS MCP Server (C#)
@calumjs
About TinaCMS MCP Server (C#)
A Model Context Protocol (MCP) Server built with C# to manage TinaCMS file-based content via MCP tools.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"TinaMCP": {
"command": "npx",
"args": [
"@modelcontextprotocol/inspector",
"dotnet",
"bin/Debug/net8.0/TinaMcpServer.dll"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is TinaCMS MCP Server (C#)?
The TinaCMS MCP Server (C#) is a standalone server that implements the Model Context Protocol (MCP) using the official C# SDK. It enables AI models or other MCP clients to list, read, create, update, and delete content files within a local TinaCMS project repository.
How to use TinaCMS MCP Server (C#)?
Clone the source, set the RootPath in appsettings.json to the absolute path of your TinaCMS project, restore dependencies with dotnet restore, and build with dotnet build. Run the server through an MCP client (e.g., MCP Inspector) by executing npx @modelcontextprotocol/inspector dotnet bin/Debug/net8.0/TinaMcpServer.dll. The server communicates via standard input/output (Stdio transport).
Key features of TinaCMS MCP Server (C#)
- Connects to a local TinaCMS project directory.
- Uses standard MCP Stdio transport.
- Provides tools for listing collections and documents.
- Supports creating, reading, updating, deleting documents.
- Offers move, copy, and rename operations.
- Reads and updates YAML frontmatter (metadata).
- Reads TinaCMS generated schema (
.tina/schema.json). - Includes basic path validation and security checks.
Use cases of TinaCMS MCP Server (C#)
- AI assistant listing all content collections in a TinaCMS site.
- Automated tool reading a document’s full content or frontmatter.
- Creating a new blog post or page within a collection.
- Updating or deleting existing documents programmatically.
- Moving or copying documents between locations in the content tree.
FAQ from TinaCMS MCP Server (C#)
What runtime does the server require?
It requires the .NET 8 SDK (or later) to build and run.
How do I point the server to my TinaCMS project?
Edit appsettings.json and set the TinaProject.RootPath value to the full, absolute path of your TinaCMS project’s root directory (the one containing the .tina folder).
What transport protocol does the server use?
It uses the MCP Stdio transport – standard input/output for communication with an MCP client.
How can I test the server’s tools?
Run the official MCP Inspector: npx @modelcontextprotocol/inspector dotnet bin/Debug/net8.0/TinaMcpServer.dll (after building), then open the provided URL in a browser to list and invoke tools.
Does the server have security or validation measures?
Yes, it includes basic path validation and security checks to prevent operations outside the project root.
More Other MCP servers
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
Codelf
unbugA search tool helps dev to solve the naming things problem.
Awesome Mlops
visengerA curated list of references for MLOps
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Comments