MCP Servers
Popular Servers
Community MCP servers you can use with Billix
1 min read
Documentation
Explore MCP servers built by the community. These ready-to-use servers add powerful capabilities to Billix.
Database Servers
PostgreSQL MCP
Query PostgreSQL databases directly.
Package: @modelcontextprotocol/server-postgres
Tools: query, list_tables, describe_table
Setup: Provide connection stringSQLite MCP
Work with SQLite databases.
Package: @modelcontextprotocol/server-sqlite
Tools: query, write, list_tables
Setup: Provide database file pathFile System Servers
Filesystem MCP
Access local files and directories.
Package: @modelcontextprotocol/server-filesystem
Tools: read_file, write_file, list_directory
Setup: Define allowed pathsKnowledge & Search
Brave Search MCP
Web search via Brave Search API.
Package: @modelcontextprotocol/server-brave-search
Tools: search, news_search
Setup: Provide Brave API keyMemory MCP
Persistent knowledge storage.
Package: @modelcontextprotocol/server-memory
Tools: store, retrieve, search
Setup: Configure storage locationDevelopment Tools
Git MCP
Git operations and repository access.
Package: @modelcontextprotocol/server-git
Tools: status, log, diff, commit_info
Setup: Provide repository pathGitHub MCP
Extended GitHub access beyond the basic integration.
Package: @modelcontextprotocol/server-github
Tools: search_repos, get_file, list_prs
Setup: Provide GitHub tokenUsing Community Servers
Find a Server
Browse the MCP server registry or community repositories.
Get Connection Info
Note the URL or command, plus any required credentials.
Add to Billix
Go to Settings → MCP Servers → Add Server.
Configure
Enter connection details and authentication.
Self-Hosting Tips
Running Locally
For STDIO servers:
# Install
npm install -g @modelcontextprotocol/server-filesystem
# The server runs when Billix connects
# Configure in Billix with transport: STDIOFor HTTP servers:
# Start server
npm start
# Server runs on http://localhost:3000
# Configure in Billix with that URLSecurity Best Practices
- Run servers on private networks when possible
- Use strong authentication
- Limit file/database access
- Monitor server logs
Building Your Own
Interested in building an MCP server? Check:
- MCP Specification
- SDK Documentation
- Example server implementations
Common Questions
Next Steps
Was this page helpful? Let us know!
Report an issue