Skip to content

Commit 51ddaf8

Browse files
committed
Add Excel MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 14015a9 commit 51ddaf8

1 file changed

Lines changed: 69 additions & 0 deletions

File tree

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "harismusa.excel-mcp-uvx",
4+
"name": "Excel (uvx)",
5+
"alias": "excel",
6+
"description": "Create, read, and modify Excel workbooks without Microsoft Excel installed. Supports formulas, formatting, charts, pivot tables, Excel tables, and data validation.",
7+
"logo": "https://avatars.githubusercontent.com/u/79357181?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"productivity",
11+
"file-system"
12+
],
13+
"tags": [
14+
"excel",
15+
"spreadsheet",
16+
"xlsx",
17+
"openpyxl",
18+
"office",
19+
"files"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "uvx",
24+
"args": [
25+
"excel-mcp-server",
26+
"stdio"
27+
],
28+
"env": {
29+
"EXCEL_FILES_PATH": "${input:EXCEL_FILES_PATH}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "EXCEL_FILES_PATH",
35+
"label": "Excel Files Directory",
36+
"description": "Working directory where the server reads and writes Excel files. Optional for the stdio transport; if omitted, files are resolved relative to the server's working directory.",
37+
"type": "directory_path",
38+
"required": false,
39+
"secret": false,
40+
"placeholder": "C:\\Users\\me\\Documents\\excel_files"
41+
}
42+
]
43+
}
44+
},
45+
"auth": {
46+
"type": "none",
47+
"instructions": "No authentication required. Optionally set a working directory for your Excel files."
48+
},
49+
"contributor": {
50+
"name": "haris-musa",
51+
"github": "haris-musa",
52+
"url": "https://github.com/haris-musa/excel-mcp-server"
53+
},
54+
"links": {
55+
"repository": "https://github.com/haris-musa/excel-mcp-server",
56+
"homepage": "https://github.com/haris-musa/excel-mcp-server",
57+
"documentation": "https://github.com/haris-musa/excel-mcp-server#readme"
58+
},
59+
"platforms": [
60+
"all"
61+
],
62+
"capabilities": {
63+
"tools": true,
64+
"resources": false,
65+
"prompts": false,
66+
"read_only_mode": false
67+
},
68+
"changelog_url": "https://github.com/haris-musa/excel-mcp-server/releases"
69+
}

0 commit comments

Comments
 (0)