BillixDOCS
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 string

SQLite MCP

Work with SQLite databases.

Package: @modelcontextprotocol/server-sqlite
Tools: query, write, list_tables
Setup: Provide database file path

File System Servers

Filesystem MCP

Access local files and directories.

Package: @modelcontextprotocol/server-filesystem
Tools: read_file, write_file, list_directory
Setup: Define allowed paths

Brave Search MCP

Web search via Brave Search API.

Package: @modelcontextprotocol/server-brave-search
Tools: search, news_search
Setup: Provide Brave API key

Memory MCP

Persistent knowledge storage.

Package: @modelcontextprotocol/server-memory
Tools: store, retrieve, search
Setup: Configure storage location

Development Tools

Git MCP

Git operations and repository access.

Package: @modelcontextprotocol/server-git
Tools: status, log, diff, commit_info
Setup: Provide repository path

GitHub MCP

Extended GitHub access beyond the basic integration.

Package: @modelcontextprotocol/server-github
Tools: search_repos, get_file, list_prs
Setup: Provide GitHub token

Using Community Servers

Find a Server

Browse the MCP server registry or community repositories.

Install (if STDIO)

For STDIO servers:

npm install -g @org/mcp-server

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: STDIO

For HTTP servers:

# Start server
npm start
# Server runs on http://localhost:3000

# Configure in Billix with that URL

Security 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:

Common Questions

Next Steps

Was this page helpful? Let us know!

Report an issue

On this page