- Home
- MCP servers
- FxKit
FxKit
- typescript
0
GitHub Stars
typescript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"taxfyle-fxkit-mcp": {
"command": "npx",
"args": [
"-y",
"@taxfyle/fxkit-mcp@latest"
]
}
}
}This MCP server provides dynamic access to FxKit documentation and related tooling, enabling you to query, browse, and integrate FxKit concepts directly from your assistant or client. It fetches content on demand, caches results for performance, and exposes a set of resources, interactive tools, and prompts to streamline learning and usage of FxKit types and compiler services.
How to use
You can connect to an MCP client and access FxKit documentation through the server by configuring one or more MCP endpoints. The server exposes a variety of resources such as Option, Result, Validation, and Unit types, compiler services, and code examples. Use the client to search documentation, retrieve code examples, and generate prompts tailored to FxKit patterns.
How to install
Prerequisites: Node.js and npm are required to run MCP servers and client tooling. Ensure you have a supported Node.js version installed.
From Source installs the MCP server locally so you can run and customize it.
# Clone the repository
git clone https://github.com/taxfyle/fxkit-mcp.git
cd fxkit-mcp
# Install dependencies
npm install
# Build the project
npm run build
Additional setup notes
Global installation is supported to run the MCP server as a CLI tool.
npm install -g @taxfyle/fxkit-mcp
Available tools
search_documentation
Query the FxKit documentation resource space to locate sections, types, or examples across all exposed FxKit materials.
get_examples
Retrieve code examples for specific FxKit features or patterns to demonstrate usage in code.
list_packages
List available NuGet-style or package resources relevant to FxKit within the MCP scope to aid discovery.
convert-nullable-to-option
Prompts to convert nullable types into FxKit Option types to handle absence of values safely.
railway-oriented-programming
Prompts to implement railway-oriented patterns using FxKit Result and Validation types for error handling.
validation-multiple-errors
Prompts to accumulate multiple validation errors rather than failing fast, using FxKit Validation.
generate-union-types
Prompts to generate union types with FxKit source generators for richer type modeling.