Felt MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Felt MCPlist my maps"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Felt MCP
An MCP server for interacting with Felt maps programmatically.
Prerequisites
Python 3.14+
Related MCP server: MCP Google Map Server
Configuration
Set your Felt API token as an environment variable:
export FELT_API_TOKEN=felt_pat_...Running locally
uv sync
uv run python -m felt_mcp.mainThe server uses stdio transport by default, which is the standard for MCP servers launched as subprocesses by an MCP client.
Running with Docker
docker build -t felt-mcp .
docker run -e FELT_API_TOKEN felt-mcpMCP client configuration
Add this to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"felt": {
"command": "uv",
"args": ["run", "--directory", "/path/to/felt-mcp", "python", "-m", "felt_mcp.main"],
"env": {
"FELT_API_TOKEN": "felt_pat_..."
}
}
}
}Or with Docker:
{
"mcpServers": {
"felt": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "FELT_API_TOKEN", "felt-mcp"],
"env": {
"FELT_API_TOKEN": "felt_pat_..."
}
}
}
}Available tools
list_maps
Lists all maps accessible to the authenticated Felt user. Returns maps from all projects with their id, title, URL, project, and access level.
get_map_details
Get details for a specific Felt map, including its layers, elements, and settings.
Parameter | Type | Required | Description |
| string | Yes | The ID of the map to retrieve |
get_map_layers
List all layers on a specific Felt map.
Parameter | Type | Required | Description |
| string | Yes | The ID of the map whose layers to list |
create_new_map
Create a new Felt map with an optional title and initial viewport.
Parameter | Type | Required | Description |
| string | No | Title for the new map |
| float | No | Initial latitude |
| float | No | Initial longitude |
| int | No | Initial zoom level |
Development
uv sync # install all dependencies including dev
just lint # format, lint, and type check
just test # run test suite
just test-failed # re-run previously failed testsLicense
See LICENSE.md.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kthy/felt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server