Mol-MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mol-MCPgenerate 3D coordinates for ethanol (CCO)"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mol-MCP: Computational Chemistry Interfaces for LLMs
This project is a work in progress!
MolMCP is a modular set of interfaces for chemistry workflows. It provides a flexible architecture for building, configuring, and running agents and tools for chemical operatations.
Features
Modular agent and tool system
Extensible via configuration and plugins
Designed for quantum chemistry and molecular computation
Related MCP server: ChemMCP
Project Structure
src/
molmcp/ # Main package
agents/ # Agent servers
tools/ # Tool servers
tests/ # Test suite
pyproject.toml # Project metadata and dependencies
README.md # Project documentationUsage
Tools
uvx --from git+https://github.com/lukasmki/mol-mcp mol-mcp serve --helpChat TUI
To use the built-in interactive agent with mol-mcp tools,
uv run mol-mcp goCurrently, the interactive agent is setup to use the Anthropic API. If you want to use another, take a look at the src/molmcp/agents/interactive.py script for an example of using fast-agent.
Installation
Install uv
# macOS
brew install uv
# Linux/WSL2
curl -LsSf https://astral.sh/uv/install.sh | shThe calc and geometry servers depend on tblite and require a Fortran compiler to complete installation.
# macOS
brew install gfortran
# Linux/WSL2
sudo apt install gfortranIn your project directory, install with uv
uv add git+https://github.com/lukasmki/mol-mcpor
uv pip install git+https://github.com/lukasmki/mol-mcpYou can also run it as a uv tool outside of a project!
uvx --from git+https://github.com/lukasmki/mol-mcp mol-mcp serve --helpor install it to use it anywhere
uv tool install --from git+https://github.com/lukasmki/mol-mcp
mol-mcp serve --helpEasy Install with uvx: MCP-JSON Supporting Clients
Add the server into your MCP config:
{
"mcpServers": {
"MolMCP": {
"command": "uvx",
"args": [
"-from",
"git+https://github.com/lukasmki/mol-mcp",
"mol-mcp",
"serve",
"smiles",
"geometry",
]
}
}
}On Windows with WSL2,
{
"mcpServers": {
"MolMCP": {
"command": "wsl",
"args": [
"--shell_type",
"login",
"uvx",
"-from",
"git+https://github.com/lukasmki/mol-mcp",
"mol-mcp",
"serve",
"smiles",
"geometry",
]
}
}
}Development Install
Clone the repository.
{
"mcpServers": {
"MolMCP": {
"command": "uv",
"args": [
"run",
"--project",
"/path/to/mol-mcp",
"mol-mcp",
"serve",
"smiles",
"geometry",
]
}
}
}On Windows with WSL2,
{
"mcpServers": {
"MolMCP": {
"command": "wsl",
"args": [
"--shell_type",
"login",
"uv",
"run",
"--project",
"/path/to/mol-mcp",
"mol-mcp"
"serve",
"smiles",
"geometry",
]
}
}
}Contributing
Contributions are welcome! Please open issues or submit pull requests for bug fixes, new features, or improvements.
License
This project is licensed under the MIT License.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceAn MCP server for quantum chemistry that enables LLMs to perform electronic structure analysis, parse calculation outputs, and generate 3D orbital visualizations. It integrates tools like PySCF, cclib, and py3Dmol to facilitate molecular structure manipulation and bonding analysis through natural language.Last updatedBSD 3-Clause

ChemMCPofficial
Alicense-qualityCmaintenanceChemMCP is an easy-to-use and extensible chemistry toolkit for LLMs and AI assistants, enabling molecular analysis, property prediction, and reaction synthesis tasks without domain-specific training.Last updated70Apache 2.0- Alicense-qualityDmaintenanceAn MCP server for chemistry-focused tools, enabling LLM agents to perform molecule parsing, format conversion, property lookup, and other chemistry operations with explainable responses.Last updatedApache 2.0
- Alicense-qualityBmaintenanceEnables natural language interaction with computational chemistry tools including molecule building, electronic structure calculations, geometry optimization, vibrational spectroscopy, and molecular dynamics, powered by RDKit, PySCF, and ASE.Last updatedMIT
Related MCP Connectors
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lukasmki/mol-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server