P
mcp
...
Created 2/6/2025bycatalystneuro
Language:
Python
Stars:
1
Forks:
0
MCP servers
CatalystNeuro maintained Model Context Protocol (MCP) servers.
Available servers
- Semantic search
- ...
Usage with cline
To install a server:
cd servers/
python -m venv .venv && .venv/bin/pip install -e .
Then configure the server in your cline_mcp_settings.json
:
{
"mcpServers": {
"/.venv/bin/python",
"args": [
"/path_to/servers//src/main.py"
],
"env": {
"ENV_VAR_0": "VALUE0",
"ENV_VAR_1": "VALUE1",
},
"disabled": false,
"autoApprove": []
}
}
Each server has its own configuration, so you need to check the server's documentation for the required environment variables.
Development
To quickly run and test a server, you can use:
# export the required environment variables
export OPENAI_API_KEY="your-openai-api-key"
cd servers/
mcp dev src/main.py
# or for development
mcp dev src/main.py --with-editable .
Last updated: 2/8/2025
Publisher info
More MCP servers built with Python
MCP Server for Bing Webmaster Tools
An MCP (Model Context Protocol) server that provides access to Bing Webmaster Tools functionality
By isiahw1
usgs-water-mcp
This MCP server provides access to real-time water data from the USGS Water Services API. It allows you to fetch instantaneous water measurements including stream flow, gage height, temperature, and other water quality parameters from thousands of monitoring stations across the United States.
By pgiffy