#hosted
50 件の結果が見つかりました
sentry-selfhosted-mcp
An MCP server for self-hosted sentry.
Diditchange
Track website changes through natural conversation. DidItChange is a native MCP server that lets you monitor any public URL for changes, things like pricing pages, documentation, job boards, competitor sites. Get AI-powered summaries of what changed, search across tracked pages, and trigger manual checks. Works with ChatGPT, Claude, and any MCP-compatible client. Hosted service with OAuth authentication.
Mockmcp
Hosted MCP endpoint that returns realistic fake data for prototyping agents. Paste one URL into Claude Code, Cursor, or Claude Desktop — 12 pre-built tools covering users, products, orders, events, email, and knowledge base search. No signup, no config, no auth. Built for developers who want to prototype agent workflows before wiring up a real backend.
Focuslog
A background server that logs your desktop activity, calculates your Actions Per Minute (APM), and provides a clean, anonymized timeline of your work on demand. It's designed to be a data source for personal analytics or AI assistants.
MCP-Server
自用的mcp 服务
Strata
Strata is a self hosted AI memory server. Your AI remembers everything across every session, on your own hardware. Key features: . Semantic search (find memories by meaning, not keywords) . Per-agent API keys with granular permissions . 3D constellation viewer with live agent activity . File vault (attach real documents to memories) . CSV audit log (full transparency on every agent action) . Pre-Strata history import (your memory doesn't start at install day) . Global MCP kill switch (emergency brake, only a human can undo) . Automatic deduplication . 10 structured thought types . Backend using PostgreSQL . Runs on a Raspberry Pi Always on, always local, always yours.
Api200
API 200 is an open source API gateway to simplify 3rd-party integrations. Import endpoints, set up caching, retries, and mocks. Access all services via one URL. Monitor logs, track errors, and get alerts on API incidents.
MCP Linker
one click setup, add & install MCP server to Claude/Cursor/Windsurf/Cline/mcphub.nvim neovim/vscode mcp manage,store, marketplace, Tauri GUI
ConvRadar — Conversion Analyst inside Claude
Hosted MCP that turns your GA4 property into a conversation. Ask "where's my biggest funnel drop?" or "did mobile conversion drop last week?" in Claude or ChatGPT — ConvRadar pulls the right slice, runs the diagnostic, and answers with numbers and a recommended action. OAuth 2.1, no per-user URLs.
Fully Capable Pocketbase Mcp Server
# PocketBase MCP Server A Model Context Protocol (MCP) server that provides tools for managing PocketBase instances. This server enables LLMs to interact with PocketBase databases through a standardized protocol. ## Overview This MCP server exposes PocketBase functionality as tools that can be used by any MCP-compatible client (like Claude Desktop, Cursor, or other LLM applications). It provides comprehensive access to PocketBase features including: - Collection management (CRUD operations) - Record management with filtering and pagination - Authentication and user management - Settings and health monitoring - Backup operations ## Installation ```bash npm install npm run build ``` ## Configuration The server can be configured to connect to different PocketBase instances using (in order of precedence): 1. **Local config file** (`.pocketbase-mcp.json` in your project directory): ```json { "url": "http://localhost:8091" } ``` 2. **Environment variable**: - `POCKETBASE_URL`: URL of your PocketBase instance 3. **Default**: `http://127.0.0.1:8090` ### Multi-Project Setup #### Option 1: Project-Specific Configuration (Recommended) Each project can have its own MCP configuration: ```bash # In project directory claude mcp add-json pocketbase '{"command": "node", "args": ["/path/to/pocketbase-mcp-server/dist/mcp-server.js"], "env": {"POCKETBASE_URL": "http://localhost:8091"}}' --scope project ``` #### Option 2: Config File Create a `.pocketbase-mcp.json` in your project root: ```json { "url": "https://api.myproject.com" } ``` #### Option 3: Multiple Named Servers Add different PocketBase instances globally: ```bash claude mcp add-json pb-local '{"command": "node", "args": ["/path/to/pocketbase-mcp-server/dist/mcp-server.js"], "env": {"POCKETBASE_URL": "http://localhost:8090"}}' claude mcp add-json pb-prod '{"command": "node", "args": ["/path/to/pocketbase-mcp-server/dist/mcp-server.js"], "env": {"POCKETBASE_URL": "https://api.myapp.com"}}' ``` ## Usage ### As an MCP Server To use with Claude Desktop or other MCP clients, add this to your MCP settings: ```json { "mcpServers": { "pocketbase": { "command": "node", "args": ["/path/to/pocketbase-mcp-server/dist/mcp-server.js"], "env": { "POCKETBASE_URL": "http://localhost:8090" } } } } ``` ### Available Tools #### Collection Management - **list_collections**: List all collections with pagination and filtering - **get_collection**: Get a specific collection by ID or name - **create_collection**: Create a new collection with schema - **update_collection**: Update collection settings and schema - **delete_collection**: Delete a collection #### Record Management - **list_records**: List records from a collection with filtering, sorting, and pagination - **get_record**: Get a specific record by ID - **create_record**: Create a new record - **update_record**: Update an existing record - **delete_record**: Delete a record #### Authentication - **auth_with_password**: Authenticate using email/username and password - **create_user**: Create a new user in an auth collection #### System - **get_health**: Check PocketBase health status - **get_settings**: Get PocketBase settings (requires admin auth) - **create_backup**: Create a backup (requires admin auth) - **list_backups**: List available backups (requires admin auth) #### Hook Management - **list_hooks**: List JavaScript hook files in the pb_hooks directory - **read_hook**: Read the contents of a hook file - **create_hook**: Create or update a JavaScript hook file - **delete_hook**: Delete a hook file - **create_hook_template**: Generate hook templates for common patterns: - `record-validation`: Field validation for records - `record-auth`: Custom authentication logic - `custom-route`: API endpoint creation - `file-upload`: File upload validation - `scheduled-task`: Cron job setup ## Tool Examples ### List Collections ```json { "tool": "list_collections", "arguments": { "page": 1, "perPage": 10, "filter": "type = 'auth'" } } ``` ### Create a Record ```json { "tool": "create_record", "arguments": { "collection": "posts", "data": { "title": "My First Post", "content": "Hello, world!", "published": true } } } ``` ### Query Records with Filtering ```json { "tool": "list_records", "arguments": { "collection": "posts", "filter": "published = true && created >= '2024-01-01'", "sort": "-created", "expand": "author" } } ``` ### Create a Hook Template ```json { "tool": "create_hook_template", "arguments": { "type": "record-validation", "collection": "posts" } } ``` ### Create a Custom Hook ```json { "tool": "create_hook", "arguments": { "filename": "posts-validation.pb.js", "content": "// Custom validation code here..." } } ``` ## Development ### Running in Development Mode ```bash npm run dev ``` ### Building ```bash npm run build ``` ## Architecture The MCP server follows the Model Context Protocol specification: 1. **MCP Server**: Handles tool registration and execution 2. **PocketBase Client**: Communicates with PocketBase instance 3. **Tool Handlers**: Implement specific PocketBase operations ## Security Considerations - The server requires appropriate authentication for admin operations - Use environment variables to configure sensitive settings - Consider implementing additional access controls based on your use case ## Contributing Contributions are welcome! Please ensure that any new tools follow the existing patterns and include proper error handling. ## License ISC
JIRA MCP Server
MCP server for self-hosted Jira
✨ SiliconFlow FLUX MCP 服务器 ✨
A Python-based MCP server for SiliconFlow FLUX image generation. 一个基于 Python 的 MCP服务器,用于 SiliconFlow FLUX 图像生成。
Nginx UI
Yet another WebUI for Nginx
Konbu
A self-hostable all-in-one planner combining calendar, notes, todos, and bookmarks. Built-in MCP server lets Claude Desktop, Cursor, and any MCP client operate your personal data via natural language. Single Go binary, MIT licensed.
Atlas – Ai Transport Logistics Agent Standard
Open-source MCP server for logistics. Runs inside your security perimeter — connects to TMS, ERP, email, and documents. Gives AI agents deep context about shipments, carriers, rates, and routes without data leaving your infrastructure.
Simtheory
AI workspace platform that provides unified access to multiple frontier AI models, assistants with persistent memory, and integrated tools for web search, document analysis, code creation, and data visualization. Features team collaboration capabilities, screen sharing for context, voice interaction, and MCP integrations for connecting external apps and services. Designed for individuals, teams, enterprises, and educational institutions who want to avoid vendor lock-in while maintaining secure, collaborative AI workflows across different models and tools.
Cursor Chat History Vectorizer & Dockerized Search MCP
API service to search vectorized Cursor IDE chat history using LanceDB and Ollama
Infomesh
Fully decentralized P2P web search engine for LLMs. No API key, no billing, unlimited free search via MCP. Crawls, indexes, and searches the web through a peer-to-peer network. Features offline local search, credit-based incentives, privacy-first design, and 5 MCP tools: search, search_local, fetch_page, crawl_url, network_stats.
n8n - Secure Workflow Automation for Technical Teams
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
Cursor History MCP 📜
API service to search vectorized Cursor IDE chat history using LanceDB and Ollama
Youtube Transcript Remote MCP Server
First remote YouTube transcript MCP server - enables zero-setup transcript extraction on any device including mobile. While multiple local YouTube transcript servers exist, this is the first cloud-hosted solution that works without installation, making YouTube transcripts accessible to mobile Claude users and eliminating setup barriers.
Openops
The batteries-included, No-Code FinOps automation platform, with the AI you trust.
Immich Photo Manager
Manage your self-hosted Immich photo library through conversation — natural language search via CLIP, geographic album curation, duplicate detection with perceptual hashing, library health audits, and interactive HTML galleries. Claude Code plugin with 21 MCP tools, 11 skills, 5 commands.
GoodBarber Public Mcp
Manage your GoodBarber app via natural language across eCommerce, Community, and Membership. Hosted MCP with OAuth — products, orders, promo codes, push broadcasts, customer subscriptions, traffic analytics. Connect from Claude Desktop, Cursor, VS Code, or any MCP-compatible client and pair with the 30 ready-to-use skills at github.com/goodbarber/goodbarber-skills.
SearXNG MCP
SearXNG MCP Server Provides web search capabilities by integrating with self-hosted or external SearXNG instance. Features - Web Search: Perform powerful aggregated searches across multiple engines. - Discovery: Programmatically retrieve available categories and engines. - Stateless HTTP: Compatible with any standard JSON-RPC client. - Flexible Configuration: Supports environment variables and command-line arguments.
MCPBundles
Hosted MCP (streamable HTTP) for a large catalog of custom and official integrations—CRM, billing, data, dev tools, and more. Sign in at MCPBundles, connect OAuth or API keys, enable bundles for your workspace, then use the Hub MCP URL in Cursor, Claude, or other clients. Workspace-scoped credentials; optional mcpbundles CLI on PyPI.
Fastcrw
Web scraping, crawling, and data extraction for AI agents. 5 built-in tools: scrape (clean markdown from any URL), crawl (follow links across entire sites), map (discover all URLs on a domain), extract (structured JSON via schema), and search (web search with optional page scraping). 833ms average latency, single binary, 6 MB RAM. Self-host free or use managed cloud at fastcrw.com with 500 free credits. Firecrawl-compatible API. Works with Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP-compatible client.
ONTHEIA
Your Data. Your AI. Your Rules. Ontheia is a self-hosted, open-source AI agent platform. Run AI agents, automate workflows, and connect AI models to any tool — entirely on your own infrastructure, without sending data to external cloud services.
Carapi.dev
# CarAPI MCP Server Remote MCP server that gives AI agents a single interface to **CarAPI**'s vehicle-data endpoints — VIN decoding, license-plate lookup, stolen-vehicle checks, technical-inspection history, odometer history, market valuation, listings search, and more. Hosted at **https://mcp.carapi.dev/mcp** (Streamable HTTP). Stateless, horizontally scalable, no session storage.
Zephex
MCP gateway for AI code editors with 10 built-in tools: project context, code reading, code search, package check, package audit, architecture analysis, developer knowledge base, task scoping, security header auditing, and structured reasoning.
CalendarMCP
Hosted Google Calendar MCP server. Connect any AI agent to Google Calendar in about two minutes. No self-hosting, no Docker, no credentials.json. 10 tools including batch update, multi-account-one-key, and Google Advanced Protection support. Works with Claude Desktop, Claude Code, Claude.ai, Cursor, OpenClaw, Continue, Cline, Windsurf, and any HTTP-capable MCP client.
Equibles
Self-hosted financial data terminal for AI agents. Scrapes and serves SEC filings (full-text search), 13F institutional holdings, insider and congressional trades, FINRA short data, FRED economic indicators, CFTC futures positioning, CBOE VIX/put-call ratios, and daily stock prices over MCP. Open source (AGPL-3.0): self-host with `docker compose up` and connect to http://localhost:8081/mcp (no API key), or use the hosted endpoint at https://mcp.equibles.com/mcp with a free API key from equibles.com.
Mcp Email
A self-hosted MCP server that gives Claude Code full IMAP and SMTP access. 15 tools cover the boring parts: search across folders, attachment fetch, drafts the agent can revise before send, move/copy/flag/delete, and folder management. Multi-account is built in: Gmail, Fastmail, Proton via Bridge, iCloud, Outlook 365, and any generic IMAP server can run side by side in one .env. Credentials never leave your machine.
Brightbean - Youtube intelligence MCP for AI agents
Youtube intelligence for AI agents - score titles & thumbnails, surface niche content gaps, benchmark channels and videos
HEYM
Self-hosted AI workflow automation platform with visual canvas, agents, RAG, HITL, MCP, and observability in one runtime. Expose your Heym workflows as an MCP server at /api/mcp/sse — callable from Claude Desktop, Cursor, or any MCP client.
Four Leaf
Job search and interview prep MCP. 11 tools spanning job discovery, role intelligence, practice question generation, resume scoring, comp benchmarks, and negotiation strategy. Cross-LLM via the hosted endpoint with OAuth 2.1.