Flexible Key-Value Extraction Server

Local

API Integration

Integrate this MCP server into your applications.

Get your API Key

You'll need to login and generate a Smithery API key to connect to this server.

API access is not available until this server is deployed.

Configuration Schema

Full JSON Schema for server configuration:

json
{
  "type": "object",
  "required": [
    "openaiApiKey"
  ],
  "properties": {
    "logEnabled": {
      "type": "boolean",
      "description": "Enable or disable logging"
    },
    "logFilePath": {
      "type": "string",
      "description": "Absolute path to log file when logging is enabled"
    },
    "openaiApiKey": {
      "type": "string",
      "description": "OpenAI API key for accessing the LLM model"
    }
  }
}