MCP server dedicated to the generation and management of input files for ORCA quantum chemical calculations.
{
"mcpServers": {
"orca-mcp-server": {
"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.
MCP server dedicated to the generation and management of input files for ORCA quantum chemical calculations.
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 310 days ago. 18 stars.
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.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave 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.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Orca Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for ORCA quantum chemistry software that provides intelligent tools for generating, validating, and optimizing ORCA input files.
The ORCA MCP Server is a comprehensive tool designed to assist quantum chemistry researchers and computational chemists in working with ORCA calculations. It provides intelligent assistance for:
npm install
npm run build
npm test
npm run test:coverage
The server can be used with any MCP-compatible client. Configure your client to connect to this server using stdio transport.
Example configuration for Claude Desktop:
{
"mcpServers": {
"orca-mcp-server": {
"command": "node",
"args": ["path/to/orca-mcp-server/build/index.js"],
"env": {}
}
}
}
generate_input_fileGenerate a complete ORCA input file based on calculation parameters.
Parameters:
calculation_type (string): Type of calculation ("single_point", "optimization", "frequency", etc.)charge (number): Molecular chargemultiplicity (number): Spin multiplicitycoordinates_xyz_or_internal (string, optional): Molecular coordinateskeywords (array, optional): Additional ORCA keywordsaccuracy_level (string, optional): "low", "medium", or "high"blocks (object, optional): Custom parameter blocksExample:
{
"calculation_type": "optimization",
"charge": 0,
"multiplicity": 1,
"coordinates_xyz_or_internal": "C 0.0 0.0 0.0\nH 0.0 0.0 1.0\nH 0.0 1.0 0.0\nH 1.0 0.0 0.0",
"keywords": ["B3LYP", "def2-SVP"],
"accuracy_level": "medium"
}
validate_input_syntaxValidate the syntax of an ORCA input file and detect common errors.
Parameters:
inputContent (string): Complete ORCA input file contentReturns:
suggest_keywordsGet keyword suggestions based on calculation type and current keywords.
Parameters:
calculation_type (string): Intended calculation typecurrent_keywords (array, optional): Already present keywordsReturns:
You can also use the server components directly in your TypeScript