Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables LLMs to verify the novelty and validity of invented battery materials, with support for searching and validating against a materials database.

README.md

Material Project MCP Server

A Model Context Protocol server that provides materials validation capabilities. This server enables LLMs to verify invented materials are novel and valid or not. We currently support cathode battery materials.

<div align="center"> <img src="./assets/image.png" alt="Image" width="50%"> </div>

[!CAUTION] This server can access local/internal IP addresses and may represent a security risk. Exercise caution when using this MCP server to ensure this does not expose any sensitive data.

Available Tools

search_material

Searches and returns relevant battery materials from the database.

Parameters:

  • formula (string, required): Formula query for battery materials (e.g., "LiCoO2")
  • n (integer, optional): Number of results to return (default: 5, min: 1, max: 100)

---

verify_input_material

Validates whether a material exists in the database.

Parameters:

  • original_material (string, required): Material formula to validate (e.g., "LiFePO4")

---

battery_material_validation

Parses and validates battery materials from a query, comparing them against a reference material.

Parameters:

  • original_material (string, required): Reference battery material (e.g., "LiCoO2")
  • query (string, required): Comma-separated list of proposed materials (e.g., "Li2B4O7, Li1.06Ti2O4")

Installation

This MCP server requires API key from materials project, you can get api key and use it with env variable MP_API_KEY

export MP_API_KEY=

Using uv (recommended)

When using uv no specific installation is needed. We will use uvx to directly run battery-mcp.

Using PIP

Alternatively you can install battery-mcp via pip:

pip install battery-mcp

After installation, you can run it as a script using:

python -m battery_mcp

Running with streamable-http

You can also deploy mcp as http server with streamable-http transport protocol

python -m battery_mcp --transport http --http-host 0.0.0.0 --http-port 8080

or using uvx `` uvx battery-mcp --transport http --http-host 0.0.0.0 --http-port 8080 ``

Configuration

Configure for Claude.app

Add to your Claude settings:

<details> <summary>Using uvx</summary>

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["battery-mcp"]
    }
  }
}

</details>

<details> <summary>Using pip installation</summary>

{
  "mcpServers": {
    "fetch": {
      "command": "python",
      "args": ["-m", "battery-mcp"]
    }
  }
}

</details>

License

battery-mcp is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Databases servers.