法国个人所得税计算服务
可用工具 (11 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
get_tax_info_from_web 2 个参数 需填 1 项
必填参数:tax_topic
get_tax_brackets 1 个参数
该工具无需必填参数,直接调用即可
get_form_details 2 个参数 需填 1 项
必填参数:form_number
get_cached_tax_info 2 个参数 需填 1 项
必填参数:tax_topic
calculate_income_tax 3 个参数 需填 1 项
必填参数:net_taxable_income
get_tax_procedure 1 个参数 需填 1 项
必填参数:procedure_name
get_tax_deadlines 1 个参数
该工具无需必填参数,直接调用即可
health_check
该工具无需必填参数,直接调用即可
get_tax_article 1 个参数 需填 1 项
必填参数:article_id
search_tax_law 1 个参数 需填 1 项
必填参数:query
generate_tax_report 4 个参数 需填 2 项
必填参数:tax_data、topic_name
服务介绍
法国个人所得税计算服务 french-tax-mcp
一个提供法国个人所得税计算的MCP服务器,支持基于净应税收入和家庭构成的计算,并动态获取最新税档信息。
null## 工具列表 Tool List
本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。
| 工具 Tool | 描述 Description |
|---|---|
| get_tax_info_from_web | Get tax information from official French government websites like impots.gouv.fr, service-public.fr, or legifrance.gouv.fr |
| get_tax_brackets | Get income tax brackets (tranches d'imposition) for a specific year |
| get_form_details | Get detailed information about a specific tax form including fields and instructions |
| get_cached_tax_info | Get cached tax information when web scraping fails |
| calculate_income_tax | Calculate French income tax based on net taxable income and household composition |
| get_tax_procedure | Get information about a tax procedure from service-public.fr |
| get_tax_deadlines | Get tax deadlines from service-public.fr |
| health_check | Simple health check to verify the server is responsive |
| get_tax_article | Get information about a tax law article from legifrance.gouv.fr |
| search_tax_law | Search for tax law articles on legifrance.gouv.fr |
| generate_tax_report | Generate a detailed report about a specific tax topic |
检查服务 ## Inspector
工具在线测试: https://mcp.xiaobenyang.com/inspector/1777419065008131
Online Tool test https://mcp.xiaobenyang.com/inspector/1777419065008131
服务配置 MCP Server Config
如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?
访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY
Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.
SSE
{
"mcpServers": {
"法国个人所得税计算服务": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "sse",
"url": "https://mcp.xiaobenyang.com/1777419065008131/sse"
}
}
}
STREAMABLE HTTP
{
"mcpServers": {
"法国个人所得税计算服务": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "streamable_http",
"url": "https://mcp.xiaobenyang.com/1777419065008131/mcp"
}
}
}
STDIO
{
"mcpServers": {
"法国个人所得税计算服务": {
"command": "npx",
"args": [
"-y",
"xiaobenyang-mcp"
],
"env": {
"XBY_APIKEY": "<YOUR_XBY_APIKEY>",
"mcpId": "1777419065008131",
},
"transport": "stdio"
}
}
}