MCP Server
Active
Apache-2.0
Oracle Forms MCP Server
io.github.aoreshkov/oracle-forms-mcp
What is the Oracle Forms MCP server?
Serves Oracle Forms module content (.fmb/.mmb/.pll/.olb) from a directory to MCP clients.
How to install Oracle Forms
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
OFMCP_CONVERTED_DIRSame as --converted-dir, for clients that set environment variables rather than arguments. The flag wins when both are given.
OFMCP_CONVERT_COMMANDSame as --convert-command — the whole command line, not just an executable — for clients that set environment variables rather than arguments. The flag wins when both are given.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"oracle-forms-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/aoreshkov/oracle-forms-mcp:0.7.0",
"--forms-dir",
"/forms",
"--converted-dir",
"--convert-command"
],
"env": {
"OFMCP_CONVERTED_DIR": "<YOUR_OFMCP_CONVERTED_DIR>",
"OFMCP_CONVERT_COMMAND": "<YOUR_OFMCP_CONVERT_COMMAND>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"oracle-forms-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/aoreshkov/oracle-forms-mcp:0.7.0",
"--forms-dir",
"/forms",
"--converted-dir",
"--convert-command"
],
"env": {
"OFMCP_CONVERTED_DIR": "<YOUR_OFMCP_CONVERTED_DIR>",
"OFMCP_CONVERT_COMMAND": "<YOUR_OFMCP_CONVERT_COMMAND>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"oracle-forms-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/aoreshkov/oracle-forms-mcp:0.7.0",
"--forms-dir",
"/forms",
"--converted-dir",
"--convert-command"
],
"env": {
"OFMCP_CONVERTED_DIR": "<YOUR_OFMCP_CONVERTED_DIR>",
"OFMCP_CONVERT_COMMAND": "<YOUR_OFMCP_CONVERT_COMMAND>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"oracle-forms-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/aoreshkov/oracle-forms-mcp:0.7.0",
"--forms-dir",
"/forms",
"--converted-dir",
"--convert-command"
],
"env": {
"OFMCP_CONVERTED_DIR": "<YOUR_OFMCP_CONVERTED_DIR>",
"OFMCP_CONVERT_COMMAND": "<YOUR_OFMCP_CONVERT_COMMAND>"
}
}
}
}Claude Code
claude mcp add oracle-forms-mcp --env OFMCP_CONVERTED_DIR=<YOUR_OFMCP_CONVERTED_DIR> --env OFMCP_CONVERT_COMMAND=<YOUR_OFMCP_CONVERT_COMMAND> -- docker run -i --rm ghcr.io/aoreshkov/oracle-forms-mcp:0.7.0 --forms-dir /forms --converted-dir --convert-commandRelated MCP servers
Kotlin Library Sources
Active
Exposes the public API, KDoc and sources of Maven-published Kotlin/Java libraries to MCP clients
8
View repository →Kotlin
Apache-2.0