From db790a0ed53106e228469c518293edff76b0d003 Mon Sep 17 00:00:00 2001 From: joserra Date: Fri, 26 Jun 2026 11:18:26 +0200 Subject: [PATCH 1/2] Add TextMine MCP server --- community/registry/icons/TextMine.svg | 26 +++++++++ partners/servers/textmine-mcp-server.json | 71 +++++++++++++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 community/registry/icons/TextMine.svg create mode 100644 partners/servers/textmine-mcp-server.json diff --git a/community/registry/icons/TextMine.svg b/community/registry/icons/TextMine.svg new file mode 100644 index 00000000..c353c92a --- /dev/null +++ b/community/registry/icons/TextMine.svg @@ -0,0 +1,26 @@ + + diff --git a/partners/servers/textmine-mcp-server.json b/partners/servers/textmine-mcp-server.json new file mode 100644 index 00000000..049f98a8 --- /dev/null +++ b/partners/servers/textmine-mcp-server.json @@ -0,0 +1,71 @@ +{ + "name": "textmine-mcp-server", + "title": "TextMine MCP", + "summary": "Search, read, and automate TextMine Vault documents, records, integrations, and agent tasks through Public API V3.", + "description": "The TextMine MCP server is the hosted Streamable HTTP MCP surface for external agent clients. It exposes TextMine tools backed by Public API V3 so agents can discover and call TextMine capabilities without learning every API endpoint first: searching, reading, and downloading Vault documents and their extracted text and metadata; managing document types, record schemas, and record values for typed extraction; running integrations and folder/file imports; and orchestrating Workbench agent tasks.", + "kind": "mcp", + "license": { + "name": "TextMine Terms and Conditions", + "url": "https://textmine.com/legal-pages/terms-and-conditions" + }, + "externalDocumentation": { + "title": "TextMine MCP Documentation", + "url": "https://docs.textmine.com/integrations/textmine-mcp-server" + }, + "remote": "https://app.textmine.com/mcp", + "remoteType": "streamable-http", + "versionName": "original", + "packages": [], + "icon": "https://cdn.jsdelivr.net/gh/Azure/MCP/community/registry/icons/TextMine.svg", + "useCases": [ + { + "name": "Document search and retrieval", + "description": "List and search Vault documents and fetch their extracted text, tags, metadata, and time-limited download URLs." + }, + { + "name": "Document upload and processing", + "description": "Upload documents to a Vault, wait for processing to complete, and rename or reprocess existing documents." + }, + { + "name": "Structured data extraction", + "description": "Browse and search document types and record schemas, then query records and record values for typed, field-labelled extraction." + }, + { + "name": "Vault question answering", + "description": "Ask natural-language questions across a Vault's documents and receive answers grounded in their content." + }, + { + "name": "Integrations and imports", + "description": "List connected integrations and browse provider folders and files, then import provider files directly into a Vault." + }, + { + "name": "Agent task automation", + "description": "Create, start, monitor, message, approve, reject, and cancel Workbench agent tasks to run end-to-end document workflows." + } + ], + "tags": [], + "categories": "Developer Tools", + "vendor": "Partner", + "visibility": "true", + "securitySchemes": { + "textmineApiKey": { + "type": "apiKey", + "in": "header", + "name": "Authorization", + "description": "Bearer TextMine API key, for example 'Bearer tm_'. Create or request a key through agent self-service signup or TextMine support." + }, + "textmineApiKeyHeader": { + "type": "apiKey", + "in": "header", + "name": "X-TextMine-Api-Key", + "description": "Alternative for platforms that own the Authorization header (e.g. Power Platform custom connectors). Send the key directly as 'tm_'." + } + }, + "supportContactInfo": { + "name": "TextMine Developer Support", + "email": "developers@textmine.com" + }, + "customProperties": { + "x-ms-preview": false + } +} From 60db1dc8cf699d9de18d33a3900578dee1c7e96c Mon Sep 17 00:00:00 2001 From: Charles Brecque Date: Fri, 26 Jun 2026 14:34:44 -0400 Subject: [PATCH 2/2] Use TextMine MCP gateway URL --- partners/servers/textmine-mcp-server.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/partners/servers/textmine-mcp-server.json b/partners/servers/textmine-mcp-server.json index 049f98a8..14f03b40 100644 --- a/partners/servers/textmine-mcp-server.json +++ b/partners/servers/textmine-mcp-server.json @@ -12,7 +12,7 @@ "title": "TextMine MCP Documentation", "url": "https://docs.textmine.com/integrations/textmine-mcp-server" }, - "remote": "https://app.textmine.com/mcp", + "remote": "https://mcp.textmine.com/mcp", "remoteType": "streamable-http", "versionName": "original", "packages": [],