Memory MCP Server
Persistent memory using a knowledge graph
{
"mcpServers": {
"txtextcontrol-mcpdocumentserver": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 1 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationNo known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Hash-verified file editing MCP server with token efficiency hook. 11 tools for AI coding agents.
MCP Security Weekly
Get CVE alerts and security updates for TXTextControl.MCPDocumentServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A lightweight MCP server for document workflows using TX Text Control .NET Server.
This project exposes document/session tools over MCP HTTP transport and stores working documents in InternalUnicodeFormat.
tx, docx, pdf, html, md)start, length)paragraphIndex)start, length)src/TxTextControl.McpServer/Program.cs - app bootstrap and MCP registrationsrc/TxTextControl.McpServer/Tools/DocumentTools.cs - session/document lifecycle toolssrc/TxTextControl.McpServer/Tools/ContentTools.cs - content/query toolssrc/TxTextControl.McpServer/Services/Engines/ServerTextControlDocumentEngine.cs - document operationssrc/TxTextControl.McpServer/Services/Engines/ServerTextControlDocumentEngine.Content.cs - content operationsGET /POST /mcpTransport is configured as stateless HTTP.
create_document()load_from_base64(request, sessionId?)get_as_base64(request)get_session(sessionId)delete_session(sessionId)format_text(sessionId, request)get_paragraphs(sessionId, start?, end?)search_text(sessionId, text?, matchCase?, wholeWord?)search_text_ranges(sessionId, text?, matchCase?, wholeWord?)get_text(sessionId)create_documentload_from_base64format_text, search_text, get_text, etc.get_as_base64delete_sessiondotnet build
dotnet run --project src/TxTextControl.McpServer
Create a new document session:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "create_document",
"arguments": {}
}
}
Use the returned sessionId in subsequent tool calls.
format_text(sessionId, request) accepts:
start (int, optional)length (int, optional)paragraphIndex (int, optional)bold (bool)italic (bool)underline (bool)color_hex (string, optional, e.g. #FF0000)font_name (string, optional)font_size (float, optional, points)Use either
start+lengthorparagraphIndex.
code, message, isError).See repository license terms and TX Text Control licensing terms.