Ola Hungerford
db28e2a75b
Merge pull request #2934 from Astrit11/ca-behaviour-prediction
...
Added behaviour prediction mcp from chainaware ai
2025-11-08 21:10:45 -07:00
Ola Hungerford
65994ca3db
Merge pull request #2959 from UmakanthKaspa/add-git-status-test
...
Add test for git_status function
2025-11-08 08:37:35 -07:00
UmakanthKaspa
2c8bb9d8f7
Merge branch 'main' into add-git-status-test
2025-11-08 20:34:26 +05:30
Ola Hungerford
6205ff7838
Merge pull request #2862 from mhahn2003/add-amplitude-mcp-server
...
Add Amplitude MCP server to README
2025-11-07 20:05:58 -07:00
Ola Hungerford
d66bb65239
Merge pull request #2927 from janwilmake/patch-3
...
Add 'intallthismcp' Resource to readme
2025-11-07 20:05:04 -07:00
Ola Hungerford
22872bd63d
Merge pull request #2963 from batmat/complete-and-fix-cb
...
CloudBees MCP servers corrections
2025-11-07 20:04:26 -07:00
Ola Hungerford
69dee4277b
Merge pull request #2932 from Higangssh/fix/filesystem-docker-build
...
fix(filesystem): exclude test files from build (#2928 )
2025-11-07 20:04:02 -07:00
Ola Hungerford
7e1bae6d5e
Merge pull request #2918 from thechandanbhagat/main
...
Added CV-Forge to the list
2025-11-07 20:02:50 -07:00
Ola Hungerford
18f420db63
Merge pull request #2922 from Pradumnasaraf/add-mcp-server
...
docs: Add Aviationstack MCP
2025-11-07 20:02:14 -07:00
Baptiste Mathus
678747c7d7
Add CloudBees CI
2025-11-07 09:37:00 +01:00
Baptiste Mathus
bf75715a68
Update CloudBees Unify & fix links
2025-11-07 09:36:53 +01:00
Chandan Gupta Bhagat
f9915c4035
Merge branch 'main' into main
2025-11-06 23:07:06 +00:00
UmakanthKaspa
4225ab46e1
Add test for git_status function
...
Adds test coverage for the previously untested git_status function.
The test verifies that the function returns valid git status output
containing branch information.
2025-11-06 16:58:07 +00:00
Ola Hungerford
b686223489
Merge pull request #2868 from shenqingtech/main
...
Add DeepQ Financial Toolkit MCP Server to README
2025-11-04 21:34:11 -07:00
Chandan Gupta Bhagat
d17288af1b
Merge branch 'main' into main
2025-11-03 10:50:17 +00:00
astrit11
15e0b46520
Added behaviour prediction mcp from chainaware ai
2025-10-31 14:50:16 +01:00
Sanghee Son
bd39b09e4c
fix: exclude test files from filesystem build
...
test files were being compiled into dist during build,
causing issues in docker environments. added exclude
pattern to tsconfig to skip __tests__ directory.
fixes #2928
2025-10-31 16:33:22 +09:00
Pradumna Saraf
393611484a
Add AutoML MCP server entry to README
2025-10-31 07:43:27 +05:30
Pradumna Saraf
3b3fbeea7e
Remove duplicate Audius entry from README
...
Removed duplicate entry for Audius MCP server in the README.
2025-10-31 07:41:05 +05:30
Michael Hahn
7c40b78fc9
Update with working Amplitude logo svg
2025-10-29 09:59:16 -07:00
Ola Hungerford
c7c549711b
Merge pull request #2921 from pauloaapereira/main
...
Added PostIdentity MCP to the list
2025-10-29 06:34:10 -07:00
Ola Hungerford
c74bcd8871
Merge branch 'main' into main
2025-10-29 06:32:19 -07:00
Ola Hungerford
b471b5e98d
Merge pull request #2924 from olaservo/update-tests-and-markdown-files
...
Add tests for memory server, fix filesystem tests, and move testing guidelines
2025-10-29 06:31:57 -07:00
Ola Hungerford
f592b6b1d2
Merge pull request #2881 from modelcontextprotocol/adamj/add-programmatic-mcp-prototype
...
Add Programmatic MCP Prototype to resources
2025-10-29 06:31:42 -07:00
Paulo Pereira
6fc141b7fe
Update README.md
2025-10-29 13:13:02 +00:00
Chandan Gupta Bhagat
78c1e36f04
updated as per copilot suggestion
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-29 11:15:35 +00:00
janwilmake
896cfa5375
Add new resource to README
...
This adds installthismcp.com to readme
2025-10-29 08:50:42 +01:00
olaservo
41984686b1
Merge branch 'update-tests-and-markdown-files' of https://github.com/olaservo/servers into update-tests-and-markdown-files
2025-10-28 21:28:42 -07:00
Ola Hungerford
75436edd26
Merge branch 'main' into update-tests-and-markdown-files
2025-10-28 21:27:57 -07:00
olaservo
c3b26fad30
Fix platform-dependent relative path test in filesystem
...
The test was expecting forward slashes to always be converted to backslashes, but normalizePath() only does this on Windows (process.platform === 'win32'). On Linux/Unix, forward slashes are preserved.
Improved the fix by:
1. Removing relative path assertion from the "as is" test since it doesn't match intent
2. Adding a dedicated test that validates platform-specific behavior naturally without mocking
3. Using the actual platform instead of unreliable Object.defineProperty mocking
This approach is more reliable and clearly documents expected behavior per platform.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-28 21:27:13 -07:00
Ola Hungerford
af87fb3af9
Merge pull request #2861 from adamjmurray/patch-2
...
Add Producer Pal to community servers list
2025-10-28 21:11:04 -07:00
olaservo
bbbc0c6381
Fix TypeScript error in filesystem tests by adding missing afterEach import
...
The afterEach function was used in the test file but not imported from vitest, causing a build failure. This was introduced in PR #2851 .
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-28 21:06:25 -07:00
olaservo
f6fff0374e
Merge branch 'main' of https://github.com/modelcontextprotocol/servers into update-tests-and-markdown-files
2025-10-28 21:05:20 -07:00
olaservo
e68a555943
Add Vitest testing framework and implement tests for memory management features
2025-10-28 20:06:34 -07:00
Adam Murray
ee0688f74d
Fix typo
...
Co-authored-by: Ola Hungerford <olahungerford@gmail.com >
2025-10-28 20:06:19 -07:00
Ola Hungerford
067f195e74
Merge pull request #2923 from gomakers-ai/add-mcp-n8n
...
Add mcp-n8n server
2025-10-28 19:37:36 -07:00
Leo
c13963f299
Remove logo image for community server entry
2025-10-28 21:23:20 -05:00
Ola Hungerford
3094fb53f7
Merge pull request #2919 from amekala/add-ads-mcp
...
Add Ads MCP to community servers list
2025-10-28 19:14:26 -07:00
Ola Hungerford
c4537f065a
Merge pull request #2917 from kseylerp/patch-3
...
Update Courier link in README.md
2025-10-28 19:12:33 -07:00
Ola Hungerford
26415981c5
Merge pull request #2916 from nobrainer-tech/add-langflow-mcp-server
...
Add Langflow MCP Server to community servers
2025-10-28 19:12:07 -07:00
Ola Hungerford
621d644674
Merge pull request #2911 from chrisgleissner/add-c64bridge-mcp-server
...
Add C64 Bridge to community servers
2025-10-28 19:11:34 -07:00
Ola Hungerford
a746a921a1
Merge pull request #2903 from thsmale/main
...
Add USA Spending MCP server
2025-10-28 19:09:27 -07:00
Ola Hungerford
26e24db509
Merge pull request #2891 from e1em3ntoDX/patch-2
...
Add DevExpress MCP Server to the README
2025-10-28 19:06:26 -07:00
Ola Hungerford
defc913f87
Merge pull request #2890 from fpankretic/add-new-server
...
Add Infobip server entry
2025-10-28 19:05:50 -07:00
Ola Hungerford
d2eb945c4d
Merge pull request #2851 from olaservo/fix-wsl-path-conversion
...
Resolve filesystem issue where WSL paths are incorrectly converted to Windows format
2025-10-28 18:56:58 -07:00
Ola Hungerford
52490b8c07
Merge pull request #2793 from InsightFactoryAPP/add-roundtable-mcp-server
...
Add Roundtable MCP Server to Community Servers
2025-10-28 18:54:56 -07:00
Ola Hungerford
7fc3d2debd
Merge pull request #2565 from modelcontextprotocol/claude/issue-65-20250817-1645
...
docs(fetch): Add Windows PYTHONIOENCODING configuration
2025-10-28 18:53:24 -07:00
Ola Hungerford
e98c180a53
Merge pull request #2811 from joshylchen/Zettelkasten-Space-official-integrations
...
Zettelkasten space official integrations
2025-10-28 18:50:59 -07:00
Leo
c8cf2ab567
Add mcp-n8n server to third-party servers list
2025-10-28 20:30:36 -05:00
Pradumna Saraf
a4577db4f1
docs: Add Aviationstack MCP
2025-10-28 21:22:03 +05:30