shinpr
24de7f7561
Add Intelligent Image Generator to Community Servers
...
Adds mcp-image server that turns casual prompts into professional-quality images with AI enhancement
2025-09-12 10:39:42 +09:00
Blaž Stojanovič
56bc00d615
Add kumo-rfm-mcp to the README.md ( #2674 )
...
Co-authored-by: Matthias Fey <matthias.fey@tu-dortmund.de >
2025-09-11 17:56:42 -07:00
Muhammad Afzaal
fb63620f2c
Add D365FO-Client project to README ( #2671 )
...
Co-authored-by: adam jones <domdomegg+git@gmail.com >
2025-09-11 17:55:54 -07:00
dpetruchik
17c306038b
Add new Linked API MCP server ( #2624 )
...
Co-authored-by: Adam Jones <adamj@anthropic.com >
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-11 17:52:59 -07:00
Adrian Arribas
9e2072a3d6
Add Gemini Bridge MCP server to third-party servers list ( #2629 )
...
Co-authored-by: adam jones <domdomegg+git@gmail.com >
2025-09-11 17:46:02 -07:00
Dmitry Batkovich
a191d5d1cd
Update information on JetBrains MCP server ( #2622 )
...
Co-authored-by: Dmitry Batkovich <dmitry.batkovich@jetbrains.com >
Co-authored-by: adam jones <domdomegg+git@gmail.com >
2025-09-11 17:43:36 -07:00
Scott Lewis
cc8038b786
Add ToolGroups example servers ( #2699 )
...
Signed-off-by: Scott Lewis <scottslewis@gmail.com >
Co-authored-by: Cliff Hall <cliff@futurescale.com >
2025-09-11 17:39:34 -07:00
Andrea Bravaccino
35c7a5eaff
update mcp-documentation-server description ( #2704 )
...
update mcp-documentation-server description
2025-09-11 17:33:59 -07:00
Cliff Hall
c3093739ca
Let Everything's STDIO server use SDK's automatic log level handling ( #2706 )
...
- bump TS SDK to 1.18.0
* In src/everything/stdio.ts
- remove logging related imports
- remove custom log-level handling, now handled automatically by the SDK
* In src/everything/everything.ts
- remove console.log of sessionId
2025-09-11 17:31:49 -07:00
Cliff Hall
8ba0ff5e4c
Merge pull request #2672 from modelcontextprotocol/fix/notification-stream
...
direct long running tool progress notifications to correct stream
2025-09-05 12:51:17 -04:00
evalstate
4c91d59d16
direct long running tool progress notifications to correct stream
2025-09-03 11:03:06 +02:00
Ola Hungerford
ae0be7d7c3
Merge pull request #2670 from Mrbaeksang/main
...
Add Korea Stock Analyzer MCP server
2025-09-02 22:32:53 -07:00
Ola Hungerford
4bc7c2b9c0
Merge pull request #2664 from jirispilka/fix/apify-mcp
...
fix: Update link/description for Apify's MCP server
2025-09-02 22:28:35 -07:00
Ola Hungerford
fd3f5f45fa
Merge pull request #2662 from deepak-scan/patch-2
...
Add the Scanova MCP Server to the list of MCP Servers
2025-09-02 22:26:20 -07:00
Ola Hungerford
4ec2f4fcb1
Merge pull request #2653 from nokia/add-redfish-mcp
...
Add the Redfish MCP Server to the list of MCP Servers
2025-09-02 22:24:29 -07:00
Ola Hungerford
26719c060b
Merge pull request #2652 from heyder/thehive_mcp_server
...
Add TheHive MCP server to MCP servers list
2025-09-02 22:23:18 -07:00
Ola Hungerford
c8c56b745b
Merge pull request #2650 from garylab/main
...
Add Pexels MCP server for Pexels API for searching and retrieving photos, videos, and collections.
2025-09-02 22:20:00 -07:00
Ola Hungerford
0a5ede7b9f
Merge pull request #2648 from st3v3nmw/add-sourcerer
...
Add Sourcerer MCP
2025-09-02 22:19:32 -07:00
Ola Hungerford
99004e8aab
Merge pull request #2647 from thisisbhanuj/patch-2
...
Added Snowflake Cortex Agent MCP Server
2025-09-02 22:18:48 -07:00
Ola Hungerford
754258ded7
Merge pull request #2643 from stefanoamorelli/feat/qonto-mcp-server
...
feat: add Qonto MCP server
2025-09-02 22:15:15 -07:00
Ola Hungerford
6655041ff0
Merge pull request #2642 from BestYifu/feature/pdf-action-inspector
...
Add PDFActionInspector to third-party servers
2025-09-02 22:14:28 -07:00
Ola Hungerford
9f786a81ec
Merge pull request #2649 from Chesars/docs/farewell-vrknetha/mcp-server-firecrawl-now-redirects-to-official
...
docs: farewell vrknetha/mcp-server-firecrawl now 301-redirect to official entry
2025-09-02 22:10:27 -07:00
Ola Hungerford
e322daf123
Merge pull request #2669 from cliffhall/auto-log-level-support-in-everything-server
...
Everything server - fix regression + auto log level handling support
2025-09-02 22:05:12 -07:00
Mrbaeksang
fe9aedae98
Add Korea Stock Analyzer MCP server
2025-09-03 10:03:54 +09:00
cliffhall
97c6408f04
* in .gitignore
...
- add .idea/ for Jetbrains IDEs
* in everything.ts
- remove import of SetLevelRequestSchema
- remove logLevel var
- add sessionId var
- in startNotificationIntervals function
- add optional sid argument
- set sessionId to sid
- define messages to be sent, adding sessionId if present
- remove setRequestHandler call for SetLevelRequestSchema
- replace server.notification calls that sent "notifications/message" objects with calls to server.sendLoggingMessage, passing just the parameters and sessionId.
* In package.json & package-lock.json
- bump TS SDK version to 1.17.5
* In sse.ts, pass transport.sessionId to startNotificationIntervals call
* In stdio.ts
- destructure startNotificationIntervals from createServer call
- implement custom logging request handler and server.sendLoggingMessage implementation, as a
workaround for the fact that the SDK's automatic log level handling currently only tracks requested log level by session id. This will be fixed in a followup PR for the SDK
- call the startNotificationIntervals function after connecting the transport to the server
* In streamableHttp.ts
- destructure startNotificationIntervals from createServer call
- call startNotificationIntervals passing the transport.sessionId after connecting the transport to the server
2025-09-02 17:18:11 -04:00
Jiri Spilka
0f4a1c20d9
fix: Update Apify MCP server link and description
2025-09-02 09:46:26 +02:00
Deepak Tiwari
bad0167995
Updated Scanova mcp URL
2025-09-01 15:21:10 +05:30
Deepak Tiwari
c337da8cf7
Update README.md
...
Adding Scanova MCP
2025-09-01 14:48:08 +05:30
Laszlo Janosi
5eb2c4b7d0
Add the Redfish MCP Server to the list of MCP Servers
2025-09-01 07:48:53 +00:00
Heyder Andrade
7212b20823
Add TheHive MCP server to MCP servers list
2025-08-31 23:21:01 +02:00
Gary Meng
b862313258
Add Pexels Royalty-free Images Search
2025-08-30 21:00:04 +04:00
Gary Meng
467492054d
Correct the serper mcp server
2025-08-30 20:56:29 +04:00
Cesar Garcia
4418225d27
docs: update official Firecrawl MCP server URL
2025-08-30 12:58:47 -03:00
Cesar Garcia
cc11ce9182
docs(Reamde): deprecated entry that 301-redirects to the official server
2025-08-30 12:11:37 -03:00
Stephen Mwangi
095bec75be
Add Sourcerer MCP
2025-08-30 14:04:31 +03:00
hongtao huang
3b48688d95
Merge branch 'main' into feature/pdf-action-inspector
2025-08-30 11:02:30 +08:00
Bhanuj Kashyap
3534b2acc9
Added Snowflake Cortex Agent MCP Server
...
This Snowflake MCP server provides tooling for Snowflake Cortex AI features, bringing these capabilities to the MCP ecosystem. When connected to an MCP Client (e.g. Claude for Desktop, fast-agent, Agentic Orchestration Framework), users can leverage these Cortex AI features.
2025-08-30 12:36:28 +10:00
Ola Hungerford
3631d2263a
Merge pull request #2644 from modelcontextprotocol/adamj/fix-scheduled-release-forks
...
fix: only run scheduled release pipeline on modelcontextprotocol org
2025-08-29 08:06:03 -07:00
Adam Jones
29aba77a93
fix: only run scheduled release pipeline on modelcontextprotocol org
2025-08-29 14:35:23 +01:00
Ola Hungerford
38de94b7ad
fix: update temperature argument type from number to string in everything server docs ( #2610 )
...
Fixes issue #474 - documentation mismatch where temperature was documented as (number) but TypeScript SDK only accepts string arguments via z.record(z.string())
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
Co-authored-by: Ola Hungerford <olaservo@users.noreply.github.com >
2025-08-29 12:16:50 +01:00
Stefano Amorelli
7ec182b89b
feat: add Qonto MCP server
2025-08-29 10:53:06 +03:00
hongtao huang
6675ab7412
Merge branch 'main' into feature/pdf-action-inspector
2025-08-29 13:36:25 +08:00
hongtao_huang
d86d9c3ac9
Add PDFActionInspector to third-party servers
...
Add Foxit's PDFActionInspector MCP server to the official integrations list.
PDFActionInspector provides JavaScript Actions extraction and security
analysis for PDF files, enabling AI-assisted detection of malicious
PDF behaviors and potential security threats.
2025-08-29 13:15:44 +08:00
Ola Hungerford
35c30ddb5f
Merge pull request #2636 from zurferr/patch-2
...
Add Dot (GetDot.ai) integration details to README
2025-08-28 21:28:11 -07:00
Ola Hungerford
b920f3c977
Merge pull request #2640 from kmckiern/add-mandoline-mcp-server
...
feat(readme): add Mandoline MCP server to community servers list
2025-08-28 21:27:43 -07:00
Ola Hungerford
7f66e84d0c
Merge pull request #2639 from avd1729/add-onyx-server
...
Add Onyx MCP Sandbox to community servers list
2025-08-28 21:27:19 -07:00
Ola Hungerford
702bf90208
Merge pull request #2638 from samyakkkk/main
...
doc: add Olostep MCP
2025-08-28 21:26:54 -07:00
Ola Hungerford
ceadee2752
Merge pull request #2635 from PCfVW/add-mcp-arangodb-async-link
...
Add link to mcp-arangodb-async server
2025-08-28 21:26:23 -07:00
Ola Hungerford
30831bc570
Merge pull request #2634 from chihiro-adachi/chore/add-kintone-to-readme
...
Add Kintone MCP Server To README.md
2025-08-28 21:25:41 -07:00
Ola Hungerford
7aef1b638e
Merge pull request #2632 from DerekMelchin/patch-2
...
Add QuantConnect MCP Server to README
2025-08-28 21:25:16 -07:00