MCP.so
登录
M

Mcp Server To Control Openrefine

@FiquemSabendo

关于 Mcp Server To Control Openrefine

暂无概览

基本信息

分类

其他

传输方式

stdio

发布者

FiquemSabendo

提交者

Srihari Thalla

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "openrefine": {
      "command": "uv",
      "args": [
        "--directory",
        "path/to/your/openrefine_mcp",
        "run",
        "openrefine_mcp/openrefine_server.py"
      ],
      "env": {
        "OPENREFINE_URL": "http://localhost:3333"
      }
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Mcp Server To Control Openrefine?

A Model Context Protocol (MCP) server that provides a typed, discoverable interface to OpenRefine’s HTTP API. It lets any MCP-capable client, such as Claude Desktop, orchestrate data-cleaning pipelines safely and reproducibly.

How to use Mcp Server To Control Openrefine?

Install Python 3.13+, uv, and ensure an OpenRefine instance is running (default: http://localhost:3333). Clone the repository, run uv sync, then configure your MCP client (e.g., Claude Desktop) by editing its configuration file to point to the server script and set the OPENREFINE_URL environment variable.

Key features of Mcp Server To Control Openrefine

  • Creates projects from dataset URLs
  • Applies editing operations to existing projects
  • Exports project data as CSV
  • Deletes projects
  • Provides project model information via a resource URI

Use cases of Mcp Server To Control Openrefine

  • Automating data cleaning steps in a reproducible pipeline
  • Integrating OpenRefine with AI assistants for conversational data wrangling
  • Applying batch operations across multiple OpenRefine projects

FAQ from Mcp Server To Control Openrefine

What is the purpose of Mcp Server To Control Openrefine?

It exposes OpenRefine's HTTP API as MCP tools and resources, enabling AI agents and other MCP clients to interact with OpenRefine programmatically.

What are the prerequisites for running the server?

Python 3.13 or higher, the uv package manager, and a running OpenRefine instance (default URL http://localhost:3333).

How do I set it up with Claude Desktop?

Create or edit the Claude Desktop configuration file to add an MCP server entry that runs uv run openrefine_mcp/openrefine_server.py from the project directory, setting the OPENREFINE_URL environment variable.

Which OpenRefine API endpoints are implemented?

The server implements create-project-from-upload, get-models, apply-operations, export-rows, and delete-project. Endpoints like set-project-metadata, set-project-tags, get-all-project-metadata, preview-expression, and get-processes are not implemented.

Are all OpenRefine features available through this server?

No. The server implements a subset of the OpenRefine API. The README explicitly lists several endpoints as not implemented (marked with ❌).

评论

其他 分类下的更多 MCP 服务器