# 科学计算工具
## 基本信息
- Slug: `myalone-math_genie_calc`
- Source: modelscope
- Publisher: myalone/math_genie_calc
- Categories: developer-tools / entertainment-and-media
- Hosted: Yes
- License: Unknown
- Source URL: https://www.modelscope.cn/mcp/servers/myalone/math_genie_calc
## 简介
math_genie_calc是一款专注于科学计算的Python应用，提供从基础运算到复杂三角函数的多种计算功能，适合学生、科研人员等使用。
## 安装提示

```bash
### STREAMABLE HTTP ```json { "mcpServers": { "科学计算工具": { "headers": { "XBY-APIKEY": "<YOUR_XBY_APIKEY>" }, "type": "streamable_http", "url": "https://mcp.xiaobenyang.com/1777419068744707/mcp" } } }
```

## MCP Server 详情

# 科学计算工具 math_genie_calc

math_genie_calc是一款专注于科学计算的Python应用，提供从基础运算到复杂三角函数的多种计算功能，适合学生、科研人员等使用。
null## 工具列表 Tool List

本MCP服务封装下列工具，可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具，可让模型通过标准化接口调用以下功能。

| 工具 Tool   | 描述 Description         |
|-------|--------------------|
| add | 两个数相加 |
| subtract | 两个数相减 |
| multiply | 两个数相乘 |
| divide | 两个数相除 |
| sine | 计算正弦函数 |
| cos | 计算余弦函数 |
| tangent | 计算正切函数 |
| cotangent | 计算余切函数 |
| secant | 计算正割函数 |
| cosecant | 计算余割函数 |
| natural_log | 计算自然对数(底数为e) |
| common_log | 计算常用对数(底数为10) |
| custom_log | 根据给定的底数计算对数 |
| math_sqrt | 使用Python内置的数学模块进行平方根计算 |
| operator_sqrt | 使用指数运算符来计算平方根 |
| complex_sqrt | 计算复数平方根 |
| exponentiation | 计算幂运算，支持负整数和小数 |
| arcsin | 计算反正弦函数 |
| arccos | 计算反余弦函数 |
| arctan | 计算反正切函数 |
| factorial_math | 求阶乘 |


## 检查服务 ## Inspector

工具在线测试： [https://mcp.xiaobenyang.com/inspector/1777419068744707](https://mcp.xiaobenyang.com/inspector/1777419068744707)

Online Tool test [https://mcp.xiaobenyang.com/inspector/1777419068744707](https://mcp.xiaobenyang.com/inspector/1777419068744707)

## 服务配置 MCP Server Config


> #### 如何获取 XBY-APIKEY ？ How to get XBY-APIKEY ?
> 访问小笨羊科技网站 [https://xiaobenyang.com](https://xiaobenyang.com)，注册用户即可获得APIKEY
> Visit XiaoBenYang website [https://xiaobenyang.com](https://xiaobenyang.com), register and get the APIKEY.

### SSE
```json
{
  "mcpServers": {
    "科学计算工具": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777419068744707/sse"
    }
  }
}
```
### STREAMABLE HTTP
```json
{
  "mcpServers": {
    "科学计算工具": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777419068744707/mcp"
    }
  }
}
```
### STDIO
```json
{
    "mcpServers": {
        "科学计算工具": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777419068744707",
          },
          "transport": "stdio"
        }
      }
}

```

