Tadas Antanavicius
|
bf2b75c2fd
|
Merge pull request #678 from Dev-Khant/add-mem0
Update README: Add Mem0 MCP to community servers
|
2025-03-13 10:47:35 -07:00 |
|
Tadas Antanavicius
|
61362f3e4a
|
Merge pull request #671 from Simon-Kansara/patch-1
Update README.md add MCP Ableton Live server
|
2025-03-13 10:47:00 -07:00 |
|
Tadas Antanavicius
|
66e6c6aafd
|
Merge pull request #667 from screenshotone/screenshotone-mcp-server
Add the official ScreenshotOne MCP server
|
2025-03-13 10:45:22 -07:00 |
|
Tadas Antanavicius
|
fcc63f8518
|
Merge pull request #652 from cameronfyfe/add-mcp-guardian
Add `mcp-guardian` to resources
|
2025-03-13 10:41:36 -07:00 |
|
Sergey Ryabov
|
b4a29c1e15
|
Fix url
|
2025-03-13 15:23:20 +00:00 |
|
GongRzhe
|
31d6f3e2af
|
Merge branch 'main' into patch-3
|
2025-03-13 23:21:37 +08:00 |
|
Sergey Ryabov
|
a9c360cc12
|
Add official AgentQL MCP server
|
2025-03-13 15:19:23 +00:00 |
|
Hannes Junnila
|
d0a594a6ee
|
Add OpenAPI and GraphQL schema MCPs to the community list
|
2025-03-13 15:55:14 +02:00 |
|
robert-inkeep
|
6f460d29c8
|
Adds Official Inkeep MCP server
|
2025-03-13 09:40:54 -04:00 |
|
dinghuazhou
|
0ab6761364
|
Add VolcEngine TOS MCP Server to Community Servers section
|
2025-03-13 20:50:59 +08:00 |
|
Virat Singh
|
e51753f522
|
Update README.md
Adds the Financial Datasets MCP server to the README. This is an official MCP server from Financial Datasets, Inc.
|
2025-03-13 08:11:58 -04:00 |
|
Agus
|
8875224460
|
Update README.md to include GOAT
|
2025-03-13 12:00:30 +01:00 |
|
Tianzhou
|
4549b5ea70
|
feat: add DBHub - Universal database MCP server
https://github.com/bytebase/dbhub/
Universal database MCP server connecting to MySQL, PostgreSQL, SQLite, DuckDB and etc.
|
2025-03-13 18:59:00 +08:00 |
|
Ashik Nesin
|
e27e051bb9
|
Merge branch 'main' into main
|
2025-03-13 15:46:33 +05:30 |
|
Yilun
|
7fe292c96a
|
Add UnifAI MCP server
Signed-off-by: Yilun <zyl.skysniper@gmail.com>
|
2025-03-13 01:55:45 -07:00 |
|
4kulia
|
2b40445552
|
Add HDM MCP Server to README.md (https://github.com/horizondatawave/hdw-mcp-server)
|
2025-03-13 09:13:10 +01:00 |
|
Pol Alvarez
|
66bdfb1ca6
|
Add fewsats.com community server to README
|
2025-03-13 14:26:20 +08:00 |
|
caorui
|
2ea5d50351
|
# MSSQL MCP Server
## Overview
MSSQL MCP Server, provides database interaction and business intelligence capabilities. This server enables running SQL queries, analyzing business data, and automatically generating business insight memos.
Refer to the official website's SQLite for modifications to adapt to MSSQL
## Components
- `read_query`
- Execute SELECT queries to read data from the database
- `write_query`
- Execute INSERT, UPDATE, or DELETE queries
- `create_table`
- Create new tables in the database
- `list_tables`
- Get a list of all tables in the database
- `describe-table`
- View schema information for a specific table
- `append_insight`
- Add new business insights to the memo resource
## Operating environment
- `Python 3.x`
- `Packages`
- pyodbc>=4.0.39
- pydantic>=2.0.0
- mcp>=0.1.0
- `ODBC Driver 17 for SQL Server`
## Usage
### Install packages
```bash
CD /d ~/mssql-mcp
pip install -r requirements.txt
```
### config
```bash
#with server.py same folder create config.json,add:
{
"database": {
"driver": "ODBC Driver 17 for SQL Server",
"server": "server ip",
"database": "db name",
"username": "username",
"password": "password",
"trusted_connection": false
},
"server": {
"name": "mssql-manager",
"version": "0.1.0",
"host": "0.0.0.0",
"port": 8080
}
}
```
### Claude Desktop 、 Windsurf
```bash
# add to claude_desktop_config.json. Note:use your path
{
"mcpServers": {
"mssql": {
"command": "py",
"args": [
# your path,e.g.:"C:\\mssql-mcp\\src\\server.py"
"~/server.py"
]
}
}
}
```
### Cursor
```bash
# Note:use your path
Type:command
Command:py C:\\mssql-mcp\\src\\server.py
```
### MCP Inspector
```bash
# Note:use your path
npx -y @modelcontextprotocol/inspector py C:\\mssql-mcp\\src\\server.py
```
## License
MIT License
|
2025-03-13 14:16:28 +08:00 |
|
Yu Ishikawa
|
7b4080c839
|
Update README.md
|
2025-03-13 14:06:51 +09:00 |
|
Rajesh Vijay
|
d6434c9ab4
|
Added onenote mcp server to README.md
|
2025-03-12 17:39:20 -07:00 |
|
Shira Ayal
|
2f75213d01
|
fastapi to mcp auto generator under resources in readme
|
2025-03-13 00:51:23 +02:00 |
|
Alex Andru
|
4a8a2b5204
|
Add MCP-Framework to frameworks
|
2025-03-12 23:43:29 +01:00 |
|
Alex Andru
|
081a5b5fc7
|
Add Reddit and Discord communities
Long overdue! Sorry for the delay
|
2025-03-12 23:39:59 +01:00 |
|
Tadas Antanavicius
|
8b448fbd47
|
Merge pull request #645 from abel9851/mariadb-mcp
Add MariaDB MCP server
|
2025-03-12 10:52:58 -07:00 |
|
Tadas Antanavicius
|
57b4df43ac
|
Merge pull request #638 from paulgb/main
add forevervm
|
2025-03-12 10:50:59 -07:00 |
|
Tadas Antanavicius
|
7b9eb7b698
|
Merge pull request #636 from kapilduraphe/okta_mcp_server
Added Okta MCP server
|
2025-03-12 10:47:54 -07:00 |
|
Tadas Antanavicius
|
638fe0d6cb
|
Merge pull request #631 from thearyanag/patch-1
feat: add Solana Agent Kit
|
2025-03-12 10:46:36 -07:00 |
|
Tadas Antanavicius
|
6e070dcb7d
|
Merge pull request #629 from marcklingen/patch-1
feat: add Langfuse prompt management server to readme
|
2025-03-12 10:45:29 -07:00 |
|
Tadas Antanavicius
|
2c88e77b89
|
Merge pull request #622 from aartiles/patch-1
Adding Audiense Insights MCP Sever to the official integrations
|
2025-03-12 10:44:22 -07:00 |
|
Tadas Antanavicius
|
44cecb3dbe
|
Merge pull request #621 from ruixingshi/feature/add-deepseek-thinker-mcp
feat: add a community server, deepseek-thinker-mcp
|
2025-03-12 10:33:54 -07:00 |
|
Tadas Antanavicius
|
635ce45cc9
|
Merge pull request #616 from MFYDev/main
Add MFYDev/Ghost-MCP to the community servers list
|
2025-03-12 10:31:38 -07:00 |
|
Tadas Antanavicius
|
2777dd5350
|
Merge pull request #582 from DappierAI/dappier-mcp
docs: add dappier mcp server
|
2025-03-12 10:24:51 -07:00 |
|
Tadas Antanavicius
|
6b2075f6af
|
Merge pull request #601 from mfukushim/map-traveler
update README.md to add map-traveler-mcp to Community Server list
|
2025-03-12 10:17:01 -07:00 |
|
leonardsellem
|
f8123fe153
|
Add n8n-mcp-server to Community Servers list
|
2025-03-12 17:24:51 +01:00 |
|
QDS
|
c62518931f
|
Add Bankless MCP to README.md
Added the bankless mcp to the mcp list. Official integration by bankless for the bankless onchain api.
|
2025-03-12 17:24:25 +01:00 |
|
shiquda
|
64a654744a
|
feat(fetch): add support for using proxy for requests
|
2025-03-13 00:20:48 +08:00 |
|
Vincent Koc
|
a91cd0a9a8
|
chore(docs): added comet opik MCP
|
2025-03-12 20:59:57 +11:00 |
|
vcart
|
b2b93f4d13
|
Add EVM MCP Server to community servers
|
2025-03-11 23:33:42 -04:00 |
|
vcart
|
ab34024e87
|
Add Template MCP Server to Frameworks section
|
2025-03-11 23:00:06 -04:00 |
|
Jai Radhakrishnan
|
8a3cdf1c6d
|
Merge branch 'main' into main
|
2025-03-11 16:18:40 -07:00 |
|
Amit Arora
|
2325943601
|
Merge branch 'main' into aws-cost-explorer
|
2025-03-11 17:01:12 -04:00 |
|
Pavel Shklovsky
|
f46e1b5080
|
Merge branch 'main' into add_adx_mcp_server
|
2025-03-11 22:44:10 +02:00 |
|
ahujasid
|
72488d9ca0
|
Merge branch 'main' into blender-mcp
|
2025-03-11 22:36:51 +05:30 |
|
stephen37
|
0c0bc87d04
|
Add Official Milvus integration for MCP
|
2025-03-11 15:11:41 +01:00 |
|
David Soria Parra
|
e65ec2d551
|
Merge pull request #728 from jpshack-at-palomar/jps/bug-541
bug(github): Add missing pull request operations to MCP server
|
2025-03-11 10:09:22 +00:00 |
|
GongRzhe
|
f2521b57fc
|
Update README.md
|
2025-03-11 17:04:50 +08:00 |
|
ahujasid
|
8948cca5f5
|
Merge branch 'main' into blender-mcp
|
2025-03-11 12:08:22 +05:30 |
|
Sylvain Cau
|
51967ef64f
|
docs: Add discourse-mcp-server to README.md
|
2025-03-10 17:19:41 -07:00 |
|
Mahesh Murag
|
6908e7f662
|
Merge pull request #769 from kapustor/patch-1
Put ClickHouse MCP server to the right line according to the alphabet…
|
2025-03-10 17:56:57 -04:00 |
|
Patrik Simek
|
c99dc8f493
|
Update README.md
|
2025-03-10 21:51:58 +01:00 |
|