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

catalystneuro's avatar

CatalystNeuro

58
followers
0
following
199
repos

More MCP servers built with Python

apollo-io-mcp-server

MCP server that exposes the Apollo.io API functionalities as tools

By Edward Choh
mcp-openvision

MCP Server using OpenRouter models to get descriptions for images

By Nazruden2
DeepView MCP

Enables IDEs like Cursor and Windsurf to analyze large codebases using Gemini's extensive context window.

By ai-1st